-
Notifications
You must be signed in to change notification settings - Fork 2
/
sensatechart.full-test.js
316 lines (251 loc) · 7.06 KB
/
sensatechart.full-test.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
var liveUpdateChartMap = [];
var runningLiveUpdateScheduler = false;
var sensorMap = {};
var canvasSensorMap = {};
var charts = {};
var initChartJS = false;
var apiLocation = "https://test-api.sensate.io/v1/";
loadScript("https://www.chartjs.org/dist/2.9.3/Chart.bundle.min.js",
function(){
Chart.defaults.lineSensate = Chart.defaults.line; // the name of the new chart type is "pieWithExtraStuff"
Chart.controllers.lineSensate = Chart.controllers.line.extend({ // creating the controller for our "pieWithExtraStuff" chart by extending from the default pie chart controller
draw: function(ease) { // override the draw method to add the extra stuff
Chart.controllers.pie.prototype.draw.call(this, ease); // call the parent draw method (inheritance in javascript, whatcha gonna do?)
var ctx = this.chart.ctx; // get the context
if (this.labelIconImage) {
ctx.drawImage(this.labelIconImage, this.chart.width-186, 0, 186, 30);
}
},
initialize: function(chart, datasetIndex) { // override initialize too to preload the image, the image doesn't need to be outside as it is only used by this chart
Chart.controllers.pie.prototype.initialize.call(this, chart, datasetIndex);
var image = new Image();
image.onload = () => { // when the image loads
this.labelIconImage = image; // save it as a property so it can be accessed from the draw method
chart.render(); // and force re-render to include it
};
image.src = "https://www.sensate.io/res/chart/pbs.png";
}
});
initChartJS = true;
}
);
async function initChart(canvasName, accessToken, listKey, liveUpdate, min, max)
{
console.log("initChart(canvasName, accessToken, listKey, liveUpdate, min, max)");
while(!initChartJS)
{
await sleep(100);
}
var sensors=[];
var i=0;
var chartMap
if(liveUpdate)
{
liveUpdateChartMap.push({
canvas: canvasName,
accessToken: accessToken,
listKey: listKey
});
}
loadJSON(apiLocation+"data/list?accessToken="+accessToken+"&listKey="+listKey,
function(data) {
Object.keys(data).forEach(function(key) {
var sensorData=[];
var value = data[key];
var short_name =value.shortName;
var name =value.name;
var sessor_type =value.sensorType;
var data_unit =value.dataUnit;
var graphcolor = "#"+value.graphColor;
var unitShort = value.dataUnitShort;
for(var j=0;j<value.data.length;j++)
{
var date = new Date(value.data[j].dateTime);
sensorData[j]=
{
x: date,
y: value.data[j].value,
};
}
sensors[i]=
{
label: name,
data: sensorData,
fill: false,
lineTension: 0,
borderColor: graphcolor,
backgroundColor: graphcolor,
unit: unitShort
};
sensorMap[canvasName+key] = i;
i++;
});
drawChart(canvasName, sensors, min, max, liveUpdate);
},
function(xhr) { console.error(xhr); }
);
}
function drawChart(canvasName, sensors, min, max, liveUpdate)
{
var canvas = document.getElementById(canvasName);
var ctx = canvas.getContext('2d');
var scaleTicks;
canvasSensorMap[canvasName] = sensors;
if(min!=null && max!=null)
{
scaleTicks = {
max: max,
min: min
};
}
else
scaleTicks = {};
var config =
{
type: 'lineSensate',
tension: 0,
data:
{
datasets: sensors
},
options:
{
bezierCurve : true,
responsive: true,
title:
{
display: false,
text: 'Sensate Sensor Chart'
},
tooltips:
{
mode: 'label',
enabled: true,
intersect: false,
position: 'nearest',
callbacks:
{
label: function (t, d)
{
for(var j=0;j<sensors.length;j++)
{
if (t.datasetIndex === j )
{
var name=sensors[j].label;
var dataunit =sensors[j].unit;
return " "+name+': '+t.yLabel + dataunit
}
}
}
}
},
hover:
{
mode: 'nearest',
intersect: true
},
scales:
{
xAxes: [{
type: 'time',
distribution: 'linear',
time: {
tooltipFormat: 'll HH:mm:ss',
displayFormats: {
'millisecond': 'HH:mm:SS:sss',
'second': 'HH:mm:SS',
'minute': 'HH:mm',
'hour': 'HH',
'day': 'MMM DD',
'week': 'MMM DD',
'month': 'MMM',
'quarter': 'MMM DD',
'year': 'DD.MM.YYYY HH:mm:ss',
}
}
}],
yAxes:
[{
display: true,
scaleLabel:
{
display: true,
labelString: 'Wert'
},
ticks: scaleTicks
}]
}
}
};
var chart = new Chart(ctx, config);
charts[canvasName] = chart;
if(!runningLiveUpdateScheduler && liveUpdate)
{
runningLiveUpdateScheduler = true;
setInterval(updateChart, 30000);
}
}
function updateChart()
{
console.log(liveUpdateChartMap);
Object.keys(liveUpdateChartMap).forEach(function(key)
{
var accessToken = liveUpdateChartMap[key].accessToken;
var listKey = liveUpdateChartMap[key].listKey;
var canvas = liveUpdateChartMap[key].canvas;
loadJSON(apiLocation+"data/live/list?accessToken="+accessToken+"&listKey="+listKey,
function(data) {
Object.keys(data).forEach(function(key) {
var lastSensorData = data[key].lastData;
var dataObject = {
x: lastSensorData.dateTime,
y: lastSensorData.value,
};
canvasSensorMap[canvas][sensorMap[canvas+key]].data.push(dataObject);
charts[canvas].update();
});
},
function(xhr) { console.error(xhr); }
);
});
}
function loadJSON(path, success, error)
{
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function()
{
if (xhr.readyState === XMLHttpRequest.DONE) {
if (xhr.status === 200) {
if (success)
success(JSON.parse(xhr.responseText));
} else {
if (error)
error(xhr);
}
}
};
xhr.open("GET", path, true);
xhr.send();
}
function loadScript(url, callback){
var script = document.createElement("script")
script.type = "text/javascript";
if (script.readyState){ //IE
script.onreadystatechange = function(){
if (script.readyState == "loaded" ||
script.readyState == "complete"){
script.onreadystatechange = null;
callback();
}
};
} else { //Others
script.onload = function(){
callback();
};
}
script.src = url;
document.getElementsByTagName("head")[0].appendChild(script);
}
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}