Heat switch is only visible id auto heat is off

This commit is contained in:
Thomas Klaehn 2022-03-30 15:27:58 +02:00
parent 140eb62927
commit 11fdbc753d
2 changed files with 23 additions and 14 deletions

View File

@ -94,13 +94,18 @@ var parse_config = function (event) {
var config = JSON.parse(event)
var output = "einschalten"
var visibility = 'hidden'
var visibility_heat = 'visible'
if(config.heat && config.heat.id == '1') {
if(config.heat.autostate) {
output = "ausschalten"
visibility = "visible"
visibility_heat = "hidden"
document.getElementById("on_temperature").innerHTML = config.heat.on_temperature;
document.getElementById("off_temperature").innerHTML = config.heat.off_temperature;
}
document.getElementById("heat_switch_label").style.visibility = visibility_heat
document.getElementById("heat_switch").style.visibility = visibility_heat
document.getElementById("heat_auto_switch").value = output;
document.getElementById("config_temperatures").style.visibility = visibility
}

View File

@ -20,20 +20,24 @@
<div>
<img src="{{url_for('static', filename='greenhouse_temperature.png')}}"/>
</div>
<table class="center">
<tr>
<td class="table_left">Heizung</td>
<td class="input">
<input id="heat_switch" type="submit" value="" onclick="on_switch_heat()"></input>
</td>
</tr>
<tr>
<td class="table_left">Frostwächter</td>
<td class="input">
<input id="heat_auto_switch" type="submit" value="" onclick="on_switch_heat_autostate()"></input>
</td>
</tr>
</table>
<div>
<table class="center">
<tr>
<td class="table_left" id="heat_switch_label" style="visibility: hidden;">Heizung </td>
<td class="input">
<input id="heat_switch" style="visibility: hidden;" type="submit" value="" onclick="on_switch_heat()"></input>
</td>
</tr>
</table>
<table class="center">
<tr>
<td class="table_left">Frostwächter</td>
<td class="input">
<input id="heat_auto_switch" type="submit" value="" onclick="on_switch_heat_autostate()"></input>
</td>
</tr>
</table>
</div>
<div id="config_temperatures" style="visibility:hidden;">
<table class="center">
<tr>