-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
219 lines (172 loc) · 6.42 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
const txt_input = document.getElementById('txt_input');
function bas_heat_on() {
fetch('/api/bas_heat_on')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error fetching data:', error));
}
function bas_heat_off() {
fetch('/api/bas_heat_off')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error fetching data:', error));
}
function bas_gas_on() {
fetch('/api/bas_gas_on')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error fetching data:', error));
}
function bas_gas_off() {
fetch('/api/bas_gas_off')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error fetching data:', error));
}
function fetch_state() {
fetch("/api/state")
.then(response => response.json())
.then(data => {
document.getElementById("toggleTimerButton").classList.toggle("on", data.auto_timer);
document.getElementById("toggleGasButton").classList.toggle("on", data.auto_gas);
});
}
function fetch_seconds() {
fetch('/api/get_timer_seconds')
.then(response => response.json())
.then(data => {
txt_input.value = data.seconds;
colorButtons();
})
.catch(error => console.error('Error fetching timer seconds:', error));
}
function updateTime() {
const seconds = txt_input.value;
fetch('/api/set_timer_seconds', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ seconds: parseInt(seconds) })
})
.then(response => response.json())
.then(data => {
console.log('Server updated:', data);
fetch_seconds();
})
.catch(error => console.error('Error:', error));
}
txt_input.addEventListener("keydown", function(event) {
if (event.key === "Enter") {
event.preventDefault();
updateTime();
}
});
function setTime(btn) {
const seconds = parseInt(btn.textContent) * 60;
txt_input.value = seconds;
updateTime(seconds);
}
document.addEventListener("DOMContentLoaded", function() {
fetch_seconds();
fetch_state();
});
function colorButtons() {
document.querySelectorAll('.btn_time').forEach(btn => {
btn.classList.remove('on');
if (parseInt(btn.textContent) * 60 == parseInt(txt_input.value)) {
btn.classList.add('on');
}
});
}
function toggleAutoTimer() {
fetch('/api/toggle_auto_timer', { method: 'POST' })
.then(response => response.json())
.then(data => {
const button = document.getElementById('toggleTimerButton');
button.classList.toggle('on', data.auto_timer);
});
}
function toggleAutoGas() {
fetch('/api/toggle_auto_gas', { method: 'POST' })
.then(response => response.json())
.then(data => {
const button = document.getElementById('toggleGasButton');
button.classList.toggle('on', data.auto_gas);
});
}
let TEMP_MIN = 45;
let TEMP_MAX = 60;
// Helper function to interpolate colors
function getColor(temp) {
TEMP_MIN = Math.min(TEMP_MIN, temp);
TEMP_MAX = Math.max(TEMP_MAX, temp);
// Prevent division by zero if all temps are the same
if (TEMP_MIN === TEMP_MAX) {
TEMP_MIN -= 1;
TEMP_MAX += 1;
}
const normalizedTemp = (temp - TEMP_MIN) / (TEMP_MAX - TEMP_MIN);
const r = Math.min(255, Math.max(0, normalizedTemp * 255));
const b = Math.min(255, Math.max(0, 255 - normalizedTemp * 255));
return `rgb(${r}, 0, ${b})`;
}
function drawTemperatureGradient(temp_min, temp_max) {
const canvas = document.getElementById("canv");
const ctx = canvas.getContext("2d");
const gradient = ctx.createLinearGradient(0, 0, 0, canvas.height);
gradient.addColorStop(0, getColor(temp_max)); // Top (max temp)
gradient.addColorStop(1, getColor(temp_min)); // Bottom (min temp)
ctx.fillStyle = gradient;
ctx.fillRect(0, 0, canvas.width, canvas.height);
}
let ws;
let reconnectInterval = 3000; // Initial reconnect interval (1s)
const term = document.getElementById("term");
let reconnectTimeout = null;
function connectWebSocket() {
ws = new WebSocket("ws://" + document.domain + ":8001/ws");
ws.onopen = function() {
term.style.backgroundColor = "#000000";
};
ws.onmessage = function(event) {
const json = JSON.parse(event.data);
term.innerHTML = json.term;
drawTemperatureGradient(json.Tmin, json.Tmax);
};
ws.onerror = function() {
term.style.backgroundColor = "#600000";
if (!reconnectTimeout) { reconnectTimeout = setTimeout(connectWebSocket, reconnectInterval); }
};
ws.onclose = function() {
term.style.backgroundColor = "#400000";
if (!reconnectTimeout) { reconnectTimeout = setTimeout(connectWebSocket, reconnectInterval); }
};
}
// Start WebSocket connection
connectWebSocket();
function zoomOutOnMobile() {
if (/Mobi|Android/i.test(navigator.userAgent)) {
let metaTag = document.querySelector("meta[name=viewport]");
if (!metaTag) {
metaTag = document.createElement("meta");
metaTag.name = "viewport";
document.head.appendChild(metaTag);
}
// Get the main element's dimensions
const main = document.getElementById("main");
const mainWidth = main.offsetWidth;
const mainHeight = main.offsetHeight;
// Get the viewport's width and height
const viewportWidth = window.innerWidth;
const viewportHeight = window.innerHeight;
// Set the scale factor to make sure the main div fits
// Calculate how much we need to zoom out
const scaleFactorWidth = viewportWidth / mainWidth;
const scaleFactorHeight = viewportHeight / mainHeight;
// Set a more limited scale factor to zoom out less aggressively
const scaleFactor = Math.min(scaleFactorWidth, scaleFactorHeight, 0.45); // Try 50% zoom-out max
// Set the viewport meta tag with the calculated scale factor
metaTag.content = `width=device-width, initial-scale=${scaleFactor}, maximum-scale=1.0, minimum-scale=0.06, user-scalable=yes`;
}
}
// Run on page load
window.addEventListener("load", zoomOutOnMobile);