From 540dbe927e6c784fd53752f89d0a83917ec28ce8 Mon Sep 17 00:00:00 2001 From: Gehad elrobey Date: Mon, 20 Oct 2014 03:56:06 +0200 Subject: HTML: Fix the Javascript library to support multi units. -make the dive profile dynamic to check user selected units from the settings file. -some of the code needs to be refactored and copied to a more appropriate location. Signed-off-by: Gehad elrobey Signed-off-by: Dirk Hohndel --- theme/list_lib.js | 115 ++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 103 insertions(+), 12 deletions(-) (limited to 'theme/list_lib.js') diff --git a/theme/list_lib.js b/theme/list_lib.js index c547b099c..b2dc13b8c 100644 --- a/theme/list_lib.js +++ b/theme/list_lib.js @@ -814,7 +814,7 @@ function lastNonZero() */ function get_weight_HTML(weight) { - return '' + gram_to_km(weight.weight) + ' kg ' + '' + weight.description + ''; + return '' + weight.weight + '' + weight.description + ''; } /** @@ -843,12 +843,12 @@ function get_cylinder_HTML(cylinder) var cEPressure = cylinder.EPressure; if (cSPressure === "--") { - cSPressure = Math.round(mbar_to_bar(items[dive_id].samples[0][2])).toFixed(1) + " bar"; + cSPressure = Math.round(put_pressure_unit(items[dive_id].samples[0][2])).toFixed(1) + " " + pressure_unit; } if (cEPressure === "--") { var nonZeroCEPressure = lastNonZero(); - cEPressure = Math.round(mbar_to_bar(nonZeroCEPressure)).toFixed(1) + " bar"; + cEPressure = Math.round(put_pressure_unit(nonZeroCEPressure)).toFixed(1) + " " + pressure_unit; } return '' + cylinder.Type + '' + cylinder.Size + '' + cylinder.WPressure + '' + '' + cSPressure + '' + cEPressure + '' + cylinder.O2 + ''; @@ -969,8 +969,8 @@ function put_divecomputer_details(dc) */ function get_status_HTML(dive) { - return '

' + translate.Dive_Status + '

SAC: ' + ml_to_litre(dive.sac) + - ' l/min' + '     OTU: ' + dive.otu + + return '

' + translate.Dive_Status + '

SAC: ' + put_volume_unit(dive.sac).toFixed(2) + ' ' + volume_unit + + '/min' + '     OTU: ' + dive.otu + '     CNS: ' + dive.cns + '
'; }; @@ -1016,16 +1016,31 @@ function mkelvin_to_C(mkelvin) return (mkelvin - ZERO_C_IN_MKELVIN) / 1000.0; } +function mkelvin_to_F(mkelvin) +{ + return mkelvin * 9 / 5000.0 - 459.670; +} + function mbar_to_bar(mbar) { return mbar / 1000; } +function mbar_to_psi(mbar) +{ + return (mbar * 0.0145037738); +} + function mm_to_meter(mm) { return mm / (1000); } +function mm_to_feet(mm) +{ + return mm * 0.00328084; +} + function gram_to_km(gram) { return (gram / 1000).toFixed(1); @@ -1036,6 +1051,11 @@ function ml_to_litre(ml) return ml / (1000); } +function ml_to_cuft(ml) +{ + return ml / 28316.8466; +} + function format_two_digit(n) { return n > 9 ? "" + n : "0" + n; @@ -1054,6 +1074,11 @@ function float_to_deg(flt){ return deg + "° " + min + "' " + sec + "\""; } +var depth_unit = "m"; +var temperature_unit = "C"; +var pressure_unit = "bar"; +var volume_unit = "l"; + /** *Main canvas draw function *this calls the axis and grid initialization functions. @@ -1069,25 +1094,25 @@ function canvas_draw() for (var i = 0; i < items[dive_id].samples.length; i++) { depthData.push([ items[dive_id].samples[i][0] / 60, - -1 * mm_to_meter(items[dive_id].samples[i][1]) + -1 * put_depth_unit(items[dive_id].samples[i][1]) ]); if (items[dive_id].samples[i][2] !== 0) { pressureData.push([ items[dive_id].samples[i][0] / 60, - mbar_to_bar(items[dive_id].samples[i][2]) + put_pressure_unit(items[dive_id].samples[i][2]) ]); } if (items[dive_id].samples[i][3] !== 0) { temperatureData.push([ items[dive_id].samples[i][0] / 60, - mkelvin_to_C(items[dive_id].samples[i][3]) + put_temperature_unit(items[dive_id].samples[i][3]) ]); last = items[dive_id].samples[i][3]; } else { if (last !== 0) { temperatureData.push([ items[dive_id].samples[i][0] / 60, - mkelvin_to_C(last) + put_temperature_unit(last) ]); } } @@ -1174,7 +1199,7 @@ function canvas_draw() max : 0, tickRenderer : $.jqplot.CanvasAxisTickRenderer, tickOptions : { - formatter: function(format, value) { return -1 * value + "m"; }, + formatter: function(format, value) { return -1 * value + " " + depth_unit;}, formatString : '%.2fm' }, pad : 2.05 @@ -1183,7 +1208,7 @@ function canvas_draw() min : 0, tickRenderer : $.jqplot.CanvasAxisTickRenderer, tickOptions : { - formatString : '%ibar' + formatString : '%i '+pressure_unit }, pad : 3.05 }, @@ -1195,7 +1220,7 @@ function canvas_draw() showMark: false, showLabel: false, shadow: false, - formatString : '%i C' + formatString : '%i ' + temperature_unit } } } @@ -1310,3 +1335,69 @@ function translate_page() document.getElementById("bk_to_ls_lbl").innerHTML = translate.Back_to_List; document.getElementById("bk_to_ls_lbl2").innerHTML = translate.Back_to_List; } + +function set_units() +{ + if (settings.unit_system == "Imperial") { + depth_unit = "ft"; + temperature_unit = "F"; + pressure_unit = "psi"; + volume_unit = "cuft"; + } else if (settings.unit_system == "Meteric") { + depth_unit = "m"; + temperature_unit = "C"; + pressure_unit = "bar"; + volume_unit = "l"; + } else if (settings.unit_system == "Personalize") { + depth_unit = settings.units.depth == "METER"?"m":"ft"; + pressure_unit = settings.units.pressure == "BAR"?"bar":"psi"; + temperature_unit = settings.units.temperature == "CELSIUS"?"C":"F"; + volume_unit = settings.units.volume == "CUFT"?"cuft":"l"; + } + // meteric by default +} + +function put_volume_unit(ml) +{ + if (settings.unit_system == "Imperial") + return ml_to_cuft(ml); + else if (settings.unit_system == "Personalize" && settings.units.volume == "CUFT") + return ml_to_cuft(ml); + return ml_to_litre(ml); +} + +function put_weight_unit(grams) +{ + if (settings.unit_system == "Imperial") + return grams_to_lbs(ml); + else if (settings.unit_system == "Personalize" && settings.units.weight == "LBS") + return grams_to_lbs(ml); + return grams_to_kgs(ml); +} + +function put_temperature_unit(mkelvin) +{ + if (settings.unit_system == "Imperial") + return mkelvin_to_F(mkelvin); + else if (settings.unit_system == "Personalize" && settings.units.temperature == "FAHRENHEIT") + return mkelvin_to_F(mkelvin); + return mkelvin_to_C(mkelvin); +} + +function put_depth_unit(mm) +{ + if (settings.unit_system == "Imperial") + return mm_to_feet(mm).toFixed(1); + else if (settings.unit_system == "Personalize" && settings.units.depth == "FEET") + return mm_to_feet(mm).toFixed(1); + return mm_to_meter(mm); +} + +function put_pressure_unit(mbar) +{ + if (settings.unit_system == "Imperial") + return mbar_to_psi(mbar); + else if (settings.unit_system == "Personalize" && settings.units.pressure == "PSI") + return mbar_to_psi(mbar); + return mbar_to_bar(mbar); +} -- cgit v1.2.3-70-g09d2