var ledsCustomCfgInitialized = false; function get_hue_lights(){ $.ajax({ type: "GET", url: 'http://'+$("#ip").val()+'/api/'+$("#user").val()+'/lights', processData: false, contentType: 'application/json', success: function(r) { for(var lightid in r){ //console.log(r[lightid].name); $('#hue_lights').append('ID: '+lightid+' Name: '+r[lightid].name+'
'); } } }); } $(document).ready(function() { // ------------------------------------------------------------------ $(hyperion).on("cmd-ledcolors-ledstream-update",function(event){ if ($("#leddevices").length == 0) { requestLedColorsStop(); } else { ledColors = (event.response.result.leds); for(var idx=0; idx'+ledDevices[idx]+''; } $("#leddevices").html(ledDevicesHtml); $("#leddevices").val(server.info.ledDevices.active); $("#leddevices").trigger("change"); }); // ------------------------------------------------------------------ $(hyperion).on("cmd-config-getconfig",function(event){ parsedConfJSON = event.response.result; leds = parsedConfJSON.leds; $("#ledconfig").text(JSON.stringify(leds, null, "\t")); canvas_height = $('#leds_canvas').innerHeight(); canvas_width = $('#leds_canvas').innerWidth(); leds_html = ""; for(var idx=0; idx'+led.index+''; } $('#leds_canvas').html(leds_html); $('#led_0').css("border","2px dotted red"); }); // ------------------------------------------------------------------ $('#leds_toggle_num').off().on("click", function() { $('.led_num').toggle(); toggleClass('#leds_toggle_num', "btn-danger", "btn-success"); }); // ------------------------------------------------------------------ $('#leds_toggle').off().on("click", function() { $('.led').toggle(); toggleClass('#leds_toggle', "btn-success", "btn-danger"); }); // ------------------------------------------------------------------ $('#leds_toggle_live').off().on("click", function() { setClassByBool('#leds_toggle_live',ledStreamActive,"btn-success","btn-danger"); if ( ledStreamActive ) { requestLedColorsStop(); } else { requestLedColorsStart(); } }); // ------------------------------------------------------------------ $("#leds_custom_check").off().on("click", function() { e = isJsonString($("#ledconfig").val()); if (e.length == 0) showInfoDialog("success", "Validation success", "Your config is valid!"); else showInfoDialog("error", "Validation failed!", e); }); // ------------------------------------------------------------------ $("#leds_custom_save").off().on("click", function() { }); // ------------------------------------------------------------- $('#leds_cfg_nav a[data-toggle="tab"]').off().on('shown.bs.tab', function (e) { var target = $(e.target).attr("href") // activated tab if (target == "#menu_gencfg" && !ledsCustomCfgInitialized) { ledsCustomCfgInitialized = true; } }); // ------------------------------------------------------------------ var conf_editor = null; $("#leddevices").off().on("change", function(event) { generalOptions = parsedConfSchemaJSON.properties.device; specificOptions = parsedConfSchemaJSON.properties.alldevices[$(this).val()]; //$('#ledDeviceOptions').html(JSON.stringify(generalOptions)+"
"+JSON.stringify(specificOptions)); conf_editor = createJsonEditor('editor_container', { generalOptions : generalOptions, specificOptions : specificOptions, }); values_general = {}; values_specific = {}; isCurrentDevice = (server.info.ledDevices.active == $(this).val()); for(var key in parsedConfJSON.device){ if (key != "type" && key in generalOptions.properties) values_general[key] = parsedConfJSON.device[key]; }; conf_editor.getEditor("root.generalOptions").setValue( values_general ); if (isCurrentDevice) { specificOptions_val = conf_editor.getEditor("root.specificOptions").getValue() for(var key in specificOptions_val){ values_specific[key] = (key in parsedConfJSON.device) ? parsedConfJSON.device[key] : specificOptions_val[key]; }; conf_editor.getEditor("root.specificOptions").setValue( values_specific ); }; $('#editor_container .well').css("background-color","white"); $('#editor_container .well').css("border","none"); $('#editor_container .well').css("box-shadow","none"); if ($(this).val() == "philipshue") { $("#huebridge").show(); $("#ip").attr('value', values_specific.output); $("#user").attr('value', values_specific.username); if($("#ip").val() != '' && $("#user").val() != '') { get_hue_lights(); } } else { $("#huebridge").hide(); } }); // ------------------------------------------------------------------ $("#btn_submit_controller").off().on("click", function(event) { if (conf_editor==null) return; ledDevice = $("#leddevices").val(); result = {device:{}}; general = conf_editor.getEditor("root.generalOptions").getValue(); specific = conf_editor.getEditor("root.specificOptions").getValue(); for(var key in general){ result.device[key] = general[key]; } for(var key in specific){ result.device[key] = specific[key]; } result.device.type=ledDevice; requestWriteConfig(result) }); // ------------------------------------------------------------------ requestServerConfig(); });