home *** CD-ROM | disk | FTP | other *** search
/ Freelog 112 / FreelogNo112-NovembreDecembre2012.iso / Systeme / UpdateFreezer / UpdateFreezer_1.6.102.exe / UI / MainUI.js < prev   
Text File  |  2012-08-06  |  10KB  |  335 lines

  1. /************************************************************************ 
  2.   Copyright 2011-2012, IceJS Team. All rights reserved.
  3.   Redistribution and use in source and binary forms, with or without
  4.   modification, are permitted provided that the following conditions are
  5.   met:
  6.   
  7.       * Redistributions of source code must retain the above copyright
  8.         notice, this list of conditions and the following disclaimer.
  9.       * Redistributions in binary form must reproduce the above
  10.         copyright notice, this list of conditions and the following
  11.         disclaimer in the documentation and/or other materials provided
  12.         with the distribution.
  13.       * Neither the name of Update Freezer Team nor the names of its
  14.         contributors may be used to endorse or promote products derived
  15.         from this software without specific prior written permission.
  16.   
  17.   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18.   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19.   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  20.   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  21.   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22.   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  23.   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24.   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25.   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26.   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  27.   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28.  ***********************************************************************/ 
  29.  
  30. //#region User Mode
  31. function parseScenarioInfo(dai)
  32. {
  33.     try
  34.     {
  35.         dai = JSON.parse(dai);
  36.     }
  37.     catch(e)
  38.     {
  39.         alert("JSON.parse failed: " + e.message);
  40.         return {};
  41.     }
  42.     return dai;
  43. }
  44.  
  45. function appendScenario(dai)
  46. {
  47.     appendRowToTable(parseScenarioInfo(dai));
  48.     log.debug("Scenario added: " + dai.name);
  49. }
  50.  
  51. function makeId(base, suffix)
  52. {
  53.     return base.replace(".", "") + suffix;
  54. }
  55.  
  56. function appendScenarioRow(name)
  57. {
  58.     var table = document.getElementById("scenarioTable");
  59.     var row = table.insertRow(table.rows.length);
  60.  
  61.     var nameCell = row.insertCell(0);
  62.     nameCell.className = "scenarioTable";
  63.     nameCell.style.textAlign = 'center';
  64.     //nameCell.style.paddingLeft = "90px";
  65.     nameCell.id = makeId(name, "ColumnScenario");
  66.     
  67.     var statusCell = row.insertCell(1);
  68.     statusCell.className = "scenarioTable";
  69.     statusCell.style.textAlign = 'center';
  70.     statusCell.id = makeId(name, "ColumnStatus");
  71. }
  72.  
  73. function appendRowToTable(scen)
  74. {
  75.     var table = document.getElementById("scenarioTable");
  76.     var row = table.insertRow(table.rows.length);
  77.     
  78.     // scenario name cell
  79.     var nameCell = document.getElementById(makeId(scen.name, "ColumnScenario"));
  80.     //var img = document.createElement("img");
  81.     //img.src = "../" + scen.icon;
  82.     //img.align = "absmiddle";
  83.     var linkNode = document.createElement("a");
  84.     linkNode.href = scen.link;
  85.     linkNode.style.color = "#555555";
  86.     var textNode = document.createElement("b");
  87.     textNode.innerText = scen.displayName;
  88.     textNode.title = S("UI.ScenarioTooltip");
  89.     linkNode.appendChild(textNode);
  90.     //nameCell.appendChild(img);
  91.     //nameCell.appendChild(document.createTextNode("  "));
  92.     nameCell.appendChild(linkNode);
  93.  
  94.     // status cell
  95.     var statusCell = document.getElementById(makeId(scen.name, "ColumnStatus"));
  96.     if (scen.actions && scen.actions.length)
  97.     {
  98.         var markup = '<fieldset data-role="controlgroup" data-type="horizontal" data-mini="true">';
  99.         var buttonGroupWidth = 140;
  100.         if (scen.actions.length > 2)
  101.         {
  102.             buttonGroupWidth = 87 * scen.actions.length;
  103.         }
  104.         markup += '<div style="width: ' + buttonGroupWidth + 'px; margin: 5 0 0 0;">';
  105.     
  106.         for(var i = 0; i < scen.actions.length; i++)
  107.         {
  108.             var ai = scen.actions[i];
  109.             
  110.             var choice = '<input type="radio" name="' + scen.name + '" id="' + makeId(scen.name, ai.action) + '" value="' + ai.action + '" ' + (ai.active ? 'checked="checked"' : '') + 'onclick="document.body.skipChangeEvent=false;"/>';
  111.             var label = '<label for="' + makeId(scen.name, ai.action) + '">' + S("UI." + ai.buttonName) + '</label>';
  112.  
  113.             markup += choice;
  114.             markup += label;
  115.         }
  116.         
  117.         markup += '</div>';
  118.         markup += '</fieldset>';
  119.  
  120.         var statusId = '#' + makeId(scen.name, "ColumnStatus");
  121.         $(statusId).append($(markup));
  122.         $(statusId).trigger('create');
  123.         
  124.         // attach event handlers
  125.         for(var i = 0; i < scen.actions.length; i++)
  126.         {
  127.             var ai = scen.actions[i];
  128.             eval("var handler = function(e){if(!document.body.skipChangeEvent) {buttonClick('" + scen.name + "', '" + ai.action + "');}}");
  129.             $('#' + makeId(scen.name, ai.action)).bind("change", handler);            
  130.         }
  131.     }
  132.     else
  133.     {
  134.       statusCell.innerHTML = scen.status;
  135.     }
  136. }
  137.  
  138. function appendFeedbackRowToTable()
  139. {
  140.     var table = document.getElementById("scenarioTable");
  141.     var row = table.insertRow(table.rows.length);
  142.     
  143.     var cell = row.insertCell(0);
  144.     cell.className = "scenarioTable";
  145.     cell.style.textAlign = 'center';
  146.     cell.colSpan = 2;
  147.  
  148.     var link = document.createElement("a");
  149.     link.id = "feedbackLinkButton";
  150.     
  151.     cell.appendChild(link);        
  152.     
  153.     var markup = '<a href="http://www.updatefreezer.org/index.php?id=15" data-mini="true" data-inline="true" data-role="button" data-theme="e" title="' + S("UI.SendFeedbackTooltip") + '">' + S("UI.SendFeedbackLink") + '</a>';
  154.     
  155.     $("#feedbackLinkButton").append($(markup));
  156.     $("#feedbackLinkButton").trigger('create');
  157. }
  158.  
  159. function makeStatusString(statusObj)
  160. {
  161.     var statusText = "";
  162.     for(var i = 0; i < statusObj.length; i++)
  163.     {
  164.         var s = statusObj[i];
  165.         statusText += s.msg + "<br>";        
  166.         log.debug(s.msg);
  167.     }
  168.     return statusText;
  169. }
  170.  
  171. function setScenarioInfo(scen)
  172. {
  173.     scen = parseScenarioInfo(scen);
  174.     
  175.     if (scen.actions && scen.actions.length)
  176.     {
  177.          document.body.skipChangeEvent = true;
  178.         for(var i = 0; i < scen.actions.length; i++)
  179.         {
  180.             var ai = scen.actions[i];
  181.             if (ai.active)
  182.             {
  183.                 $('#' + makeId(scen.name, ai.action)).attr("checked", ai.active).checkboxradio("refresh");
  184.                 break;
  185.             }
  186.           }
  187.     }
  188. }
  189.  
  190. function clearButtonStatus(scen)
  191. {
  192.     scen = parseScenarioInfo(scen);
  193.     
  194.     if (scen.actions && scen.actions.length)
  195.     {
  196.          document.body.skipChangeEvent = true;
  197.         for(var i = 0; i < scen.actions.length; i++)
  198.         {
  199.             var ai = scen.actions[i];
  200.             $('#' + makeId(scen.name, ai.action)).attr("checked", false).checkboxradio("refresh");
  201.           }
  202.     }
  203. }
  204.  
  205. function appendTopButtons()
  206. {
  207.     var markup = '<fieldset data-mini="true">';
  208.     markup += '<a href="uicmd://disableall" data-mini="true" data-inline="true" data-role="button" data-icon="minus" title="' + S("UI.DisableAllButtonTooltip") + '">' + S("UI.DisableAllButton") + '</a>';
  209.     markup += '<a href="uicmd://restoreall" data-mini="true" data-inline="true" data-role="button" data-icon="back" title="' + S("UI.RestoreAllButtonTooltip") + '">' + S("UI.RestoreAllButton") + '</a>';
  210.     markup += '<a href="uicmd://close" data-mini="true" data-inline="true" data-role="button" data-icon="delete" title="' + S("UI.CloseButtonTooltip") + '">' + S("UI.CloseButton") + '</a>';
  211.     markup += '</fieldset>';
  212.     
  213.     $("#topButtons").append($(markup));
  214.     $("#topButtons").trigger('create');
  215. }
  216.  
  217. function appendBottomButtons()
  218. {
  219.     var panel = document.getElementById("bottomButtons");
  220.  
  221.     if (panel)
  222.     {
  223.         var link = document.createElement("a");
  224.         link.href = "uicmd://openlog";
  225.         link.innerHTML = S("UI.OpenLogLink");
  226.         link.title = S("UI.OpenLogTooltip");
  227.         panel.appendChild(link);
  228.         panel.appendChild(document.createTextNode(" | "));
  229.     
  230.         var link = document.createElement("a");
  231.         link.href = "uicmd://license";
  232.         link.innerHTML = S("UI.LicenseLink");
  233.         link.title = S("UI.LicenseLinkTooltip");
  234.         panel.appendChild(link);    
  235.         panel.appendChild(document.createTextNode(" | "));
  236.  
  237.         var link = document.createElement("a");
  238.         link.href = "uicmd://remove";
  239.         link.innerHTML = S("UI.UninstallLink");
  240.         link.title = S("UI.UninstallLinkTooltip");
  241.         var bold = document.createElement("b");
  242.         bold.appendChild(link);
  243.         panel.appendChild(bold);
  244.     }
  245. }
  246.  
  247. //#endregion
  248.  
  249. function buttonClick(name, action)
  250. {
  251.     log.debug("Running: " + name + "/" + action);
  252.     document.pendingActionButtonId = name + ".Action";
  253.     window.location.href = "uicmd://execute?{name:'"+ name +"',action:'" + action + "'}";
  254. }
  255.  
  256. //#region Locale
  257. function setElementText(name, id)
  258. {
  259.     var el = document.getElementById(name);
  260.     if (el)
  261.     {
  262.         while(el.hasChildNodes()) el.removeChild(el.firstChild);
  263.         el.innerHTML = S(id);
  264.     }
  265. }
  266.  
  267. function setElementTitle(name, id)
  268. {
  269.     var el = document.getElementById(name);
  270.     if (el)
  271.     {
  272.         el.title = S(id);
  273.     }
  274. }
  275.  
  276. function setInfoPanelContents(htmlText)
  277. {
  278.     var el = document.getElementById('infoPanelContents');
  279.     if (el)
  280.     {
  281.         infoPanelContents.innerHTML = htmlText;
  282.     }
  283. }
  284.  
  285. function setInfoPanelHeader(id)
  286. {
  287.     setElementText("infoPanelHeader", id);
  288. }
  289.  
  290. function setLocale()
  291. {
  292.     if (Util && Util.Locale)
  293.     {
  294.         setElementText("UpdaterColumn", "UI.UpdaterColumn");
  295.         setElementText("ActionColumn", "UI.ActionColumn");
  296.         setElementTitle("pageLabel", "UI.UpdateFreezerTooltip");
  297.     }
  298. }
  299.  
  300. function S(str)
  301. {
  302.     if (Util.Locale.Strings[str] != undefined)
  303.     {
  304.         return Util.Locale.Strings[str];
  305.     }
  306.     return "No such string loaded: " + str;
  307. }
  308.  
  309. function SF(str, args)
  310. {
  311.     return S(str).format(args);
  312. }
  313.  
  314. String.prototype.format = function (args) {
  315.     var str = this;
  316.     return str.replace(String.prototype.format.regex, function(item) {
  317.         var intVal = parseInt(item.substring(1, item.length - 1));
  318.         var replace;
  319.         if (intVal >= 0) {
  320.             replace = args[intVal];
  321.         } else if (intVal === -1) {
  322.             replace = "{";
  323.         } else if (intVal === -2) {
  324.             replace = "}";
  325.         } else {
  326.             replace = "";
  327.         }
  328.         return replace;
  329.     });
  330. };
  331.  
  332. String.prototype.format.regex = new RegExp("{-?[0-9]+}", "g");
  333.  
  334. //#endregion
  335.