-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
209 lines (191 loc) · 6.63 KB
/
script.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
var ws;
var reconnectInterval = 5000; // 5 秒重连
var temperatureData = [];
var humidityData = [];
var thiData = [];
var timeData = [];
var chart;
var hasError = false;
var isReconnecting = false;
function connect(url) {
// 连接服务端
if (ws && ws.readyState !== WebSocket.CLOSED) {
ws.close();
}
ws = new WebSocket(url);
ws.onopen = function () {
console.log('Connected to the WebSocket server.');
// 重置错误状态
hasError = false;
document.getElementById('errorBanner').style.display = 'none';
};
ws.onmessage = function (event) {
try {
var message = JSON.parse(event.data);
console.log('Received message:', message);
if ('button' in message) {
var btnMessage = message.button === "OFF" ? "❌ Off" : "✔️ On";
document.getElementById('buttonStatus').textContent = btnMessage;
}
if ('temperature' in message && 'humidity' in message) {
var temp = message.temperature;
var humidity = message.humidity;
var comfort = temp + (0.55 * (1 - (humidity / 100)) * (temp - 14.5));
var feeling;
// THI指数可视化
if (comfort < 20) {
feeling = "Very Comfort"
} else if (comfort >= 20 && comfort < 25) {
feeling = "Comfort"
} else if (comfort >= 25 && comfort < 30) {
feeling = "Uncomfort"
} else {
feeling = "Very Uncomfort"
}
document.getElementById('temperature').textContent = temp + '°C';
document.getElementById('humidity').textContent = humidity + '%';
document.getElementById('thi').textContent = parseFloat(comfort).toFixed(1) + " / " + feeling;
temperatureData.push(temp);
humidityData.push(humidity);
thiData.push(comfort);
timeData.push(formatTime(new Date()));
updateChart();
// 重置错误状态
hasError = false;
document.getElementById('errorBanner').style.display = 'none';
}
} catch (e) {
console.error('Failed to parse message as JSON:', e);
// 设置错误状态
hasError = true;
document.getElementById('errorBanner').style.display = 'block';
}
};
ws.onerror = function (error) {
console.error('WebSocket Error:', error);
// 设置错误状态
hasError = true;
document.getElementById('errorBanner').style.display = 'block';
};
ws.onclose = function (event) {
console.log('Disconnected from the WebSocket server. Code:', event.code, 'Reason:', event.reason);
// 如果连接时出错,显示错误横幅
if (hasError) {
document.getElementById('errorBanner').style.display = 'block';
}
if (!isReconnecting) {
isReconnecting = true;
setTimeout(connect, reconnectInterval); // 尝试重新连接
}
};
}
function formatTime(date) {
return date.toTimeString().slice(0, 8);
}
function updateChart() {
chart.data.labels = timeData;
chart.data.datasets[0].data = temperatureData;
chart.data.datasets[1].data = humidityData;
chart.data.datasets[2].data = thiData
chart.update();
}
document.addEventListener('DOMContentLoaded', function () {
const ctx = document.getElementById('myChart').getContext('2d');
chart = new Chart(ctx, {
type: 'line',
data: {
labels: [],
datasets: [
{
label: 'Temperature (°C)',
data: [],
borderColor: 'rgba(75, 192, 192, 1)',
backgroundColor: 'rgba(75, 192, 192, 0.2)',
fill: false,
pointStyle: false,
pointRadius: 4,
pointHoverRadius: 6
},
{
label: 'Humidity (%)',
data: [],
borderColor: 'rgba(153, 102, 255, 1)',
backgroundColor: 'rgba(153, 102, 255, 0.2)',
fill: false,
pointStyle: false,
pointRadius: 4,
pointHoverRadius: 6
},
{
label: 'THI',
data: [],
borderColor: 'rgba(63, 105, 252, 1)',
backgroundColor: 'rgba(63, 105, 252, 0.2)',
fill: false,
pointStyle: false,
pointRadius: 4,
pointHoverRadius: 6
}
],
tension: 0.3
},
options: {
scales: {
x: {
title: {
display: true,
text: 'Time (HH:mm:ss)',
font: {
size: 12
}
},
ticks: {
font: {
size: 10,
color: '#6c757d'
}
}
},
y: {
title: {
display: true,
text: 'Value',
font: {
size: 12
}
},
ticks: {
font: {
size: 10,
color: '#6c757d'
}
}
}
},
plugins: {
legend: {
labels: {
font: {
size: 12
},
color: '#6c757d'
}
}
},
responsive: true,
maintainAspectRatio: false
}
});
// 初始连接, 使用本地回环
connect('ws://127.0.0.1');
// 添加提交按钮的点击事件监听器
document.getElementById('wsSubmit').addEventListener('click', function () {
var wsUrl = document.getElementById('wsUrlInput').value.trim();
if (wsUrl) {
if (!wsUrl.startsWith('ws://') && !wsUrl.startsWith('wss://')) {
wsUrl = 'ws://' + wsUrl;
}
connect(wsUrl);
}
});
});