2017-01-17 21:53:35 +01:00
|
|
|
function reload()
|
|
|
|
{
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
function storageComp()
|
|
|
|
{
|
|
|
|
if (typeof(Storage) !== "undefined")
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getStorage(item)
|
|
|
|
{
|
|
|
|
return localStorage.getItem(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setStorage(item, value)
|
|
|
|
{
|
|
|
|
localStorage.setItem(item, value);
|
|
|
|
return true;
|
|
|
|
}
|
2016-09-03 15:54:33 +02:00
|
|
|
|
2016-12-18 19:00:14 +01:00
|
|
|
function debugMessage(msg)
|
|
|
|
{
|
|
|
|
if (debugMessagesActive)
|
|
|
|
{
|
|
|
|
console.log(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-04 16:27:48 +02:00
|
|
|
function bindNavToContent(containerId, fileName, loadNow)
|
2016-09-03 15:54:33 +02:00
|
|
|
{
|
2016-09-14 13:51:28 +02:00
|
|
|
$("#page-content").off();
|
2016-09-03 15:54:33 +02:00
|
|
|
$(containerId).on("click", function() {
|
2016-09-14 13:51:28 +02:00
|
|
|
$("#page-content").load("/content/"+fileName+".html");
|
2016-09-04 16:27:48 +02:00
|
|
|
});
|
2016-09-03 15:54:33 +02:00
|
|
|
if (loadNow)
|
|
|
|
{
|
2016-09-15 20:42:58 +02:00
|
|
|
$(containerId).trigger("click");
|
2016-09-03 15:54:33 +02:00
|
|
|
}
|
|
|
|
}
|
2016-09-05 17:26:29 +02:00
|
|
|
|
2016-09-06 10:14:54 +02:00
|
|
|
function loadContentTo(containerId, fileName)
|
|
|
|
{
|
|
|
|
$(containerId).load("/content/"+fileName+".html");
|
|
|
|
}
|
|
|
|
|
2016-09-05 17:26:29 +02:00
|
|
|
function toggleClass(obj,class1,class2)
|
|
|
|
{
|
|
|
|
if ( $(obj).hasClass(class1))
|
|
|
|
{
|
|
|
|
$(obj).removeClass(class1);
|
|
|
|
$(obj).addClass(class2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$(obj).removeClass(class2);
|
|
|
|
$(obj).addClass(class1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function setClassByBool(obj,enable,class1,class2)
|
|
|
|
{
|
|
|
|
if (enable)
|
|
|
|
{
|
|
|
|
$(obj).removeClass(class1);
|
|
|
|
$(obj).addClass(class2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$(obj).removeClass(class2);
|
|
|
|
$(obj).addClass(class1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
function showInfoDialog(type,header,message)
|
|
|
|
{
|
2016-10-27 23:42:24 +02:00
|
|
|
if (type=="success"){
|
2017-01-17 21:53:35 +01:00
|
|
|
$('#id_body').html('<i style="margin-bottom:20px" class="fa fa-check modal-icon-check">');
|
|
|
|
if(header == "")
|
|
|
|
$('#id_body').append('<h4 style="font-weight:bold;text-transform:uppercase;">'+$.i18n('infoDialog_general_success_title')+'</h4>');
|
|
|
|
$('#id_footer').html('<button type="button" class="btn btn-success" data-dismiss="modal">'+$.i18n('general_btn_ok')+'</button>');
|
2016-10-27 23:42:24 +02:00
|
|
|
}
|
|
|
|
else if (type=="warning"){
|
2017-01-17 21:53:35 +01:00
|
|
|
$('#id_body').html('<i style="margin-bottom:20px" class="fa fa-warning modal-icon-warning">');
|
|
|
|
if(header == "")
|
|
|
|
$('#id_body').append('<h4 style="font-weight:bold;text-transform:uppercase;">'+$.i18n('infoDialog_general_warning_title')+'</h4>');
|
|
|
|
$('#id_footer').html('<button type="button" class="btn btn-warning" data-dismiss="modal">'+$.i18n('general_btn_ok')+'</button>');
|
2016-10-27 23:42:24 +02:00
|
|
|
}
|
|
|
|
else if (type=="error"){
|
2017-01-17 21:53:35 +01:00
|
|
|
$('#id_body').html('<i style="margin-bottom:20px" class="fa fa-warning modal-icon-error">');
|
|
|
|
if(header == "")
|
|
|
|
$('#id_body').append('<h4 style="font-weight:bold;text-transform:uppercase;">'+$.i18n('infoDialog_general_error_title')+'</h4>');
|
|
|
|
$('#id_footer').html('<button type="button" class="btn btn-danger" data-dismiss="modal">'+$.i18n('general_btn_ok')+'</button>');
|
2016-10-27 23:42:24 +02:00
|
|
|
}
|
2016-12-08 23:39:41 +01:00
|
|
|
else if (type == "select"){
|
2017-01-17 21:53:35 +01:00
|
|
|
$('#id_body').html('<img style="margin-bottom:20px" src="img/hyperion/hyperionlogo.png" alt="Redefine ambient light!">');
|
|
|
|
$('#id_footer').html('<button type="button" id="id_btn_saveset" class="btn btn-success" data-dismiss="modal"><i class="fa fa-fw fa-save"></i>'+$.i18n('general_btn_saveandreload')+'</button>');
|
|
|
|
$('#id_footer').append('<button type="button" class="btn btn-danger" data-dismiss="modal"><i class="fa fa-fw fa-close"></i>'+$.i18n('general_btn_cancel')+'</button>');
|
2016-12-08 23:39:41 +01:00
|
|
|
}
|
2016-12-21 18:24:03 +01:00
|
|
|
else if (type == "uilock"){
|
2017-01-17 21:53:35 +01:00
|
|
|
$('#id_body').html('<img src="img/hyperion/hyperionlogo.png" alt="Redefine ambient light!">');
|
|
|
|
$('#id_footer').html('<b>'+$.i18n('InfoDialog_nowrite_foottext')+'</b>');
|
|
|
|
}
|
|
|
|
else if (type == "import"){
|
|
|
|
$('#id_body').html('<i style="margin-bottom:20px" class="fa fa-warning modal-icon-warning">');
|
|
|
|
$('#id_footer').html('<button type="button" id="id_btn_import" class="btn btn-warning" data-dismiss="modal"><i class="fa fa-fw fa-save"></i>'+$.i18n('general_btn_saverestart')+'</button>');
|
|
|
|
$('#id_footer').append('<button type="button" class="btn btn-danger" data-dismiss="modal"><i class="fa fa-fw fa-close"></i>'+$.i18n('general_btn_cancel')+'</button>');
|
2016-12-21 18:24:03 +01:00
|
|
|
}
|
2016-10-27 23:42:24 +02:00
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
$('#id_body').append('<h4 style="font-weight:bold;text-transform:uppercase;">'+header+'</h4>');
|
|
|
|
$('#id_body').append(message);
|
|
|
|
|
|
|
|
if(type == "select")
|
|
|
|
$('#id_body').append('<select id="id_select" class="form-control" style="margin-top:10px;width:auto;"></select>');
|
|
|
|
|
2016-12-08 23:39:41 +01:00
|
|
|
$("#modal_dialog").modal({
|
|
|
|
backdrop : "static",
|
|
|
|
keyboard: false,
|
|
|
|
show: true
|
|
|
|
});
|
2016-09-06 10:14:54 +02:00
|
|
|
}
|
|
|
|
|
2016-10-09 10:23:04 +02:00
|
|
|
function isJsonString(str)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2016-09-06 10:14:54 +02:00
|
|
|
JSON.parse(str);
|
2016-10-09 10:23:04 +02:00
|
|
|
}
|
|
|
|
catch (e)
|
|
|
|
{
|
2016-09-06 10:14:54 +02:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
2016-10-09 10:23:04 +02:00
|
|
|
|
2016-12-21 18:24:03 +01:00
|
|
|
function createJsonEditor(container,schema,setconfig,usePanel)
|
2016-10-09 10:23:04 +02:00
|
|
|
{
|
|
|
|
$('#'+container).off();
|
|
|
|
$('#'+container).html("");
|
2016-12-21 18:24:03 +01:00
|
|
|
|
2016-10-10 23:15:50 +02:00
|
|
|
var editor = new JSONEditor(document.getElementById(container),
|
2016-10-09 10:23:04 +02:00
|
|
|
{
|
|
|
|
theme: 'bootstrap3',
|
|
|
|
iconlib: "fontawesome4",
|
|
|
|
disable_collapse: 'true',
|
|
|
|
form_name_root: 'sa',
|
|
|
|
disable_edit_json: 'true',
|
|
|
|
disable_properties: 'true',
|
2016-10-30 17:54:38 +01:00
|
|
|
disable_array_reorder: 'true',
|
2016-10-09 10:23:04 +02:00
|
|
|
no_additional_properties: 'true',
|
2017-01-17 21:53:35 +01:00
|
|
|
disable_array_delete_all_rows: 'true',
|
|
|
|
disable_array_delete_last_row: 'true',
|
|
|
|
access: storedAccess,
|
2016-10-10 23:15:50 +02:00
|
|
|
schema: {
|
|
|
|
title:'',
|
|
|
|
properties: schema
|
|
|
|
}
|
2016-10-09 10:23:04 +02:00
|
|
|
});
|
2016-12-21 18:24:03 +01:00
|
|
|
|
|
|
|
if(usePanel)
|
|
|
|
{
|
|
|
|
$('#'+container+' .well').first().removeClass('well well-sm');
|
|
|
|
$('#'+container+' h3').remove();
|
|
|
|
$('#'+container+' .well').first().removeClass('well well-sm');
|
|
|
|
}
|
2016-10-10 23:15:50 +02:00
|
|
|
|
|
|
|
if (setconfig)
|
|
|
|
{
|
|
|
|
for(var key in editor.root.editors)
|
|
|
|
{
|
|
|
|
editor.getEditor("root."+key).setValue( parsedConfJSON[key] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return editor;
|
2016-10-09 10:23:04 +02:00
|
|
|
}
|
2016-11-30 17:32:12 +01:00
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
// Creates a table with thead and tbody ids
|
|
|
|
// @param string hid : a id for thead
|
|
|
|
// @param string bid : a id for tbody
|
|
|
|
// @param string cont : a container id to html() the table
|
|
|
|
function createTable(hid, bid, cont)
|
|
|
|
{
|
|
|
|
var table = document.createElement('table');
|
|
|
|
var thead = document.createElement('thead');
|
|
|
|
var tbody = document.createElement('tbody');
|
2016-12-21 18:24:03 +01:00
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
table.className = "table";
|
|
|
|
table.style.marginBottom = "0px";
|
|
|
|
thead.setAttribute("id", hid);
|
|
|
|
tbody.setAttribute("id", bid);
|
|
|
|
|
|
|
|
table.appendChild(thead);
|
|
|
|
table.appendChild(tbody);
|
|
|
|
|
|
|
|
$('#'+cont).html(table);
|
|
|
|
}
|
2016-12-21 18:24:03 +01:00
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
// Creates a table row <tr>
|
|
|
|
// @param array list :innerHTML content for <td>/<th>
|
|
|
|
// @param bool head :if null or false it's body
|
|
|
|
// @param bool align :if null or false no alignment
|
|
|
|
//
|
|
|
|
// @return : <tr> with <td> or <th> as child(s)
|
|
|
|
function createTableRow(list, head, align)
|
|
|
|
{
|
|
|
|
var row = document.createElement('tr');
|
|
|
|
|
|
|
|
for(var i = 0; i < list.length; i++)
|
|
|
|
{
|
|
|
|
if(head === true)
|
|
|
|
var el = document.createElement('th');
|
|
|
|
else
|
|
|
|
var el = document.createElement('td');
|
|
|
|
|
|
|
|
if(align)
|
|
|
|
el.style.verticalAlign = "middle";
|
|
|
|
|
|
|
|
el.innerHTML = list[i];
|
|
|
|
row.appendChild(el);
|
|
|
|
}
|
|
|
|
return row;
|
|
|
|
}
|
2016-12-21 18:24:03 +01:00
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
function createRow(id)
|
|
|
|
{
|
|
|
|
var el = document.createElement('div');
|
|
|
|
el.className = "row";
|
|
|
|
el.setAttribute('id', id);
|
|
|
|
return el;
|
2016-12-21 18:24:03 +01:00
|
|
|
}
|
2017-01-17 21:53:35 +01:00
|
|
|
|
|
|
|
function createOptPanel(phicon, phead, bodyid, footerid)
|
|
|
|
{
|
|
|
|
phead = '<i class="fa '+phicon+' fa-fw"></i>'+phead;
|
|
|
|
pfooter = document.createElement('button');
|
|
|
|
pfooter.className = "btn btn-success";
|
|
|
|
pfooter.setAttribute("id", footerid);
|
|
|
|
pfooter.innerHTML = '<i class="fa fa-fw fa-save"></i>'+$.i18n('general_button_savesettings');
|
2016-12-21 18:24:03 +01:00
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
return createPanel(phead, "", pfooter, "panel-default", bodyid);
|
|
|
|
}
|
|
|
|
|
2016-12-21 18:24:03 +01:00
|
|
|
function createHelpTable(list, phead){
|
|
|
|
var table = document.createElement('table');
|
|
|
|
var thead = document.createElement('thead');
|
|
|
|
var tbody = document.createElement('tbody');
|
2017-01-17 21:53:35 +01:00
|
|
|
//console.log(sortProperties(list));
|
|
|
|
|
|
|
|
phead = '<i class="fa fa-fw fa-info-circle"></i>'+phead+' '+$.i18n("conf_helptable_expl");
|
2016-12-21 18:24:03 +01:00
|
|
|
|
|
|
|
table.className = 'table table-hover borderless';
|
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
thead.appendChild(createTableRow([$.i18n('conf_helptable_option'), $.i18n('conf_helptable_expl')], true, false));
|
|
|
|
for (key in list)
|
|
|
|
{
|
|
|
|
if(list[key].access != 'system')
|
|
|
|
{
|
|
|
|
var text = list[key].title.replace('title', 'expl');
|
|
|
|
tbody.appendChild(createTableRow([$.i18n(list[key].title), $.i18n(text)], false, false));
|
|
|
|
|
|
|
|
if(list[key].items && list[key].items.properties)
|
|
|
|
{
|
|
|
|
var ilist = list[key].items.properties;
|
|
|
|
for (ikey in ilist)
|
|
|
|
{
|
|
|
|
|
|
|
|
var itext = ilist[ikey].title.replace('title', 'expl');
|
|
|
|
tbody.appendChild(createTableRow([$.i18n(ilist[ikey].title), $.i18n(itext)], false, false));
|
|
|
|
}
|
|
|
|
}
|
2017-01-04 10:55:10 +01:00
|
|
|
}
|
2016-12-21 18:24:03 +01:00
|
|
|
}
|
|
|
|
table.appendChild(thead);
|
|
|
|
table.appendChild(tbody);
|
|
|
|
|
|
|
|
return createPanel(phead, table);
|
|
|
|
}
|
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
function createPanel(head, body, footer, type, bodyid){
|
|
|
|
var cont = document.createElement('div');
|
2016-12-21 18:24:03 +01:00
|
|
|
var p = document.createElement('div');
|
|
|
|
var phead = document.createElement('div');
|
|
|
|
var pbody = document.createElement('div');
|
|
|
|
var pfooter = document.createElement('div');
|
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
cont.className = "col-lg-6";
|
|
|
|
|
2016-12-21 18:24:03 +01:00
|
|
|
if(typeof type == 'undefined')
|
|
|
|
type = 'panel-default';
|
|
|
|
|
|
|
|
p.className = 'panel '+type;
|
|
|
|
phead.className = 'panel-heading';
|
|
|
|
pbody.className = 'panel-body';
|
|
|
|
pfooter.className = 'panel-footer';
|
|
|
|
|
|
|
|
phead.innerHTML = head;
|
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
if(typeof bodyid != 'undefined')
|
|
|
|
{
|
|
|
|
pfooter.style.textAlign = 'right';
|
|
|
|
pbody.setAttribute("id", bodyid)
|
|
|
|
}
|
|
|
|
|
|
|
|
if(typeof body != 'undefined' && body != "")
|
2016-12-21 18:24:03 +01:00
|
|
|
pbody.appendChild(body);
|
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
if(typeof footer != 'undefined')
|
|
|
|
pfooter.appendChild(footer);
|
2016-12-21 18:24:03 +01:00
|
|
|
|
|
|
|
p.appendChild(phead);
|
|
|
|
p.appendChild(pbody);
|
|
|
|
|
|
|
|
if(typeof footer != 'undefined')
|
2017-01-17 21:53:35 +01:00
|
|
|
{
|
|
|
|
pfooter.style.textAlign = "right";
|
2016-12-21 18:24:03 +01:00
|
|
|
p.appendChild(pfooter);
|
2017-01-17 21:53:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cont.appendChild(p);
|
2016-12-21 18:24:03 +01:00
|
|
|
|
2017-01-17 21:53:35 +01:00
|
|
|
return cont;
|
2016-12-21 18:24:03 +01:00
|
|
|
}
|
|
|
|
|
2016-12-05 11:10:44 +01:00
|
|
|
function createSelGroup(group)
|
|
|
|
{
|
2016-11-30 17:32:12 +01:00
|
|
|
var el = document.createElement('optgroup');
|
|
|
|
el.setAttribute('label', group);
|
2016-12-05 11:10:44 +01:00
|
|
|
return el;
|
2016-11-30 17:32:12 +01:00
|
|
|
}
|
|
|
|
|
2016-12-08 23:39:41 +01:00
|
|
|
function createSelOpt(opt, title)
|
2016-12-05 11:10:44 +01:00
|
|
|
{
|
2016-11-30 17:32:12 +01:00
|
|
|
var el = document.createElement('option');
|
|
|
|
el.setAttribute('value', opt);
|
2016-12-08 23:39:41 +01:00
|
|
|
if (typeof title == 'undefined')
|
|
|
|
el.innerHTML = opt;
|
|
|
|
else
|
|
|
|
el.innerHTML = title;
|
2016-12-05 11:10:44 +01:00
|
|
|
return el;
|
2016-11-30 17:32:12 +01:00
|
|
|
}
|
|
|
|
|
2016-12-05 11:10:44 +01:00
|
|
|
function createSel(array, group)
|
|
|
|
{
|
|
|
|
if (array.length != "0")
|
|
|
|
{
|
|
|
|
var el = createSelGroup(group);
|
|
|
|
for(var i=0; i<array.length; i++)
|
|
|
|
{
|
2016-11-30 17:32:12 +01:00
|
|
|
var opt = createSelOpt(array[i])
|
|
|
|
el.appendChild(opt);
|
|
|
|
}
|
2016-12-05 11:10:44 +01:00
|
|
|
return el;
|
2016-11-30 17:32:12 +01:00
|
|
|
}
|
|
|
|
}
|
2016-12-04 19:32:23 +01:00
|
|
|
|
2016-12-05 11:10:44 +01:00
|
|
|
function performTranslation()
|
|
|
|
{
|
2016-12-21 18:24:03 +01:00
|
|
|
$('[data-i18n]').i18n();
|
2016-12-04 19:32:23 +01:00
|
|
|
}
|
2016-12-05 11:10:44 +01:00
|
|
|
|
|
|
|
function encode_utf8(s)
|
|
|
|
{
|
|
|
|
return unescape(encodeURIComponent(s));
|
|
|
|
}
|