forked from eckonator/MMM-Oelpreise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MMM-Oelpreise.js
356 lines (307 loc) · 14 KB
/
MMM-Oelpreise.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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/* global Module */
/* MagicMirror²
* Module: MMM-Oelpreise
*
* By Markus Eckert https://github.com/eckonator/
* MIT Licensed.
*/
Module.register("MMM-Oelpreise", {
jsonData: [],
days: [],
euros: [],
currentPrice: null, // Variable für den aktuellen Preis
previousPrice: null, // Variable für den Preis des Vortages
priceLastMonth: null, // Preis vom gleichen Tag des Vormonats
priceLastYear: null, // Preis vom gleichen Tag des Vorjahres
apiUrl: '',
defaults: {
amount: '3000', // amount in liter
updateInterval: 86400000, // 1 day in milliseconds
width: 1200, // width in pixel
height: 800, // height in pixel
showOverlay: true, // Zeigt das Overlay an, wenn true
overlayBlink: false, // Standardwert für das Blinken auf false setzen
overlayUnvisibleDuration: 3000, // Dauer, für die das Overlay ausgeblendet wird (in ms)
overlayInterval: 15000, // Dauer wie lang das Overlay angezeigt wird (in ms)
fadeDuration: 500, // Dauer des Fade-In/Out-Effekts (in ms)
showPreviousDay: true, // Anzeige des Preises vom Vortag
showLastMonth: true, // Anzeige des Preises vom Vormonat
showLastYear: true, // Anzeige des Preises vom Vorjahr
showMaxMin: true // Anzeige der Max- und Minpreise
},
getScripts: function() {
return ["modules/" + this.name + "/node_modules/chart.js/dist/chart.min.js"];
},
start: function() {
this.getJson();
this.scheduleUpdate();
this.config = Object.assign({}, this.defaults, this.config);
Log.info("Starting module: " + this.name);
},
scheduleUpdate: function () {
var self = this;
setInterval(function () {
self.getJson();
}, this.config.updateInterval);
},
// Request node_helper to get json from url
getJson: function () {
this.apiUrl = 'https://www.heizoel24.de/api/site/1/prices/history?amount=' + this.config.amount + '&productId=1&rangeType=6';
this.sendSocketNotification("MMM-Oelpreise_GET_JSON", this.apiUrl);
},
socketNotificationReceived: function (notification, payload) {
if (notification === "MMM-Oelpreise_JSON_RESULT") {
this.jsonData = payload.data;
if (this.jsonData.length > 0) {
this.currentPrice = this.jsonData[this.jsonData.length - 1].Price;
if (this.jsonData.length > 1) {
this.previousPrice = this.jsonData[this.jsonData.length - 2].Price;
}
let today = new Date(this.jsonData[this.jsonData.length - 1].DateTime);
let lastMonthDate = new Date(today.getFullYear(), today.getMonth() - 1, today.getDate());
let lastYearDate = new Date(today.getFullYear() - 1, today.getMonth(), today.getDate());
this.priceLastMonth = this.getPriceForDate(lastMonthDate);
this.priceLastYear = this.getPriceForDate(lastYearDate);
}
this.updateDom();
}
},
getPriceForDate: function(date) {
for (let i = this.jsonData.length - 1; i >= 0; i--) {
let dataDate = new Date(this.jsonData[i].DateTime);
if (dataDate.getFullYear() === date.getFullYear() && dataDate.getMonth() === date.getMonth() && dataDate.getDate() === date.getDate()) {
return this.jsonData[i].Price;
}
}
return null;
},
getMaxMinForLastYear: function() {
let today = new Date(this.jsonData[this.jsonData.length - 1].DateTime);
let lastYearDate = new Date(today.getFullYear() - 1, today.getMonth(), today.getDate());
let filteredData = this.jsonData.filter((data) => {
let dataDate = new Date(data.DateTime);
return dataDate >= lastYearDate && dataDate <= today;
});
if (filteredData.length > 0) {
let prices = filteredData.map(data => data.Price);
let maxPrice = Math.max(...prices);
let minPrice = Math.min(...prices);
return { max: maxPrice, min: minPrice };
}
return { max: null, min: null };
},
getDom: function() {
var self = this;
// Create wrapper element
const wrapperEl = document.createElement("div");
wrapperEl.setAttribute("style", "position: relative; display: inline-block; color: white;");
// Create overlay element for the information only if showOverlay is true
const overlayEl = document.createElement("div");
if (this.config.showOverlay) {
overlayEl.setAttribute("style", `
position: absolute;
top: 0px;
right: 0px;
color: white;
background: rgba(0, 0, 0, 0.0);
padding: 2px;
margin: 0;
border-radius: 5px;
opacity: 0;
transition: opacity ${this.config.fadeDuration}ms ease-in-out;
`);
// Current Price
const currentPriceEl = document.createElement("div");
// Formatierung des Preises mit unterschiedlichen Farben und Schriftgrößen
currentPriceEl.innerHTML = `
<span style="color: grey; font-size: 20px;">Heute:</span>
<span style="color: white; font-size: 24px;">
${this.currentPrice !== null ? this.currentPrice.toFixed(2) : 'Warte auf Daten...'}
</span>
<span style="color: grey; font-size: 20px;"> €</span>
`;
currentPriceEl.setAttribute("style", "margin-bottom: 0px");
overlayEl.appendChild(currentPriceEl);
// Funktion zum Einfügen des Pfeils basierend auf der Änderung
function getArrow(previousPrice, currentPrice) {
return previousPrice < currentPrice ? '↓' : '↑'; // Pfeil nach unten wenn der vorherige Preis niedriger war als der Aktuelle
}
// "Änderung"-Textzeile
const changeLabelEl = document.createElement("div");
changeLabelEl.innerHTML = "Änderung zum";
changeLabelEl.setAttribute("style", "font-size: 16px; margin-top: 0px; color: grey;");
overlayEl.appendChild(changeLabelEl);
// Änderung zum Vortag
if (this.config.showPreviousDay) {
const dayChangeEl = document.createElement("div");
if (this.previousPrice !== null) {
let percentageChangeDay = ((this.currentPrice - this.previousPrice) / this.previousPrice) * 100;
let arrowDay = getArrow(percentageChangeDay); // Pfeil basierend auf der Änderung
dayChangeEl.innerHTML = `Vortag: ${percentageChangeDay.toFixed(1)}% (${this.previousPrice.toFixed(2)} €) ` + arrowDay;
dayChangeEl.setAttribute("style", "font-size: 16px; margin-bottom: 0px; color: " + (percentageChangeDay > 0 ? "red" : "green") + ";");
} else {
dayChangeEl.innerHTML = 'Warte auf Daten...';
dayChangeEl.setAttribute("style", "font-size: 16px; margin-bottom: 0px;");
}
overlayEl.appendChild(dayChangeEl);
}
// Änderung zum Vormonat
if (this.config.showLastMonth) {
const changeLastMonthEl = document.createElement("div");
if (this.priceLastMonth !== null) {
let percentageChangeLastMonth = ((this.currentPrice - this.priceLastMonth) / this.priceLastMonth) * 100;
let arrowMonth = getArrow(this.priceLastMonth, this.currentPrice);
changeLastMonthEl.innerHTML = "Vormonat: " + percentageChangeLastMonth.toFixed(1) + '% (' + this.priceLastMonth.toFixed(2) + ' €) ' + arrowMonth;
changeLastMonthEl.setAttribute("style", "font-size: 16px; margin-bottom: 0px; color: " + (percentageChangeLastMonth > 0 ? "red" : "green") + ";");
} else {
changeLastMonthEl.innerHTML = 'Warte auf Daten...';
changeLastMonthEl.setAttribute("style", "font-size: 16px; margin-bottom: 0px;");
}
overlayEl.appendChild(changeLastMonthEl);
}
// Änderung zum Vorjahr
if (this.config.showLastYear) {
const changeLastYearEl = document.createElement("div");
if (this.priceLastYear !== null) {
let percentageChangeLastYear = ((this.currentPrice - this.priceLastYear) / this.priceLastYear) * 100;
let arrowYear = getArrow(this.priceLastYear, this.currentPrice);
changeLastYearEl.innerHTML = "Vorjahr: " + percentageChangeLastYear.toFixed(1) + '% (' + this.priceLastYear.toFixed(2) + ' €) ' + arrowYear;
changeLastYearEl.setAttribute("style", "font-size: 16px; margin-bottom: 0px; color: " + (percentageChangeLastYear > 0 ? "red" : "green") + ";");
} else {
changeLastYearEl.innerHTML = 'Warte auf Daten...';
changeLastYearEl.setAttribute("style", "font-size: 16px; margin-bottom: 0px;");
}
overlayEl.appendChild(changeLastYearEl);
}
// Maxima und Minima des letzten Jahres abrufen
if (this.config.showMaxMin) {
let maxMin = this.getMaxMinForLastYear(); // Aufruf der Funktion zur Berechnung von Maxima und Minima
// Änderung zu Maximalpreis des letzten Jahres
const maxPriceEl = document.createElement("div");
if (maxMin.max !== null) {
let percentageChangeMax = ((this.currentPrice - maxMin.max) / maxMin.max) * 100;
let arrowMax = getArrow(maxMin.max, this.currentPrice);
maxPriceEl.innerHTML = "Max. (letztes Jahr): " + percentageChangeMax.toFixed(1) + '% (' + maxMin.max.toFixed(2) + ' €) ' + arrowMax;
maxPriceEl.setAttribute("style", "font-size: 16px; margin-bottom: 0px; color: " + (percentageChangeMax > 0 ? "red" : "green") + ";");
} else {
maxPriceEl.innerHTML = 'Warte auf Daten...';
maxPriceEl.setAttribute("style", "font-size: 16px; margin-bottom: 0px;");
}
overlayEl.appendChild(maxPriceEl);
// Änderung zu Minimalpreis des letzten Jahres
const minPriceEl = document.createElement("div");
if (maxMin.min !== null) {
let percentageChangeMin = ((this.currentPrice - maxMin.min) / maxMin.min) * 100;
let arrowMin = getArrow(maxMin.min, this.currentPrice);
minPriceEl.innerHTML = "Min. (letztes Jahr): " + percentageChangeMin.toFixed(1) + '% (' + maxMin.min.toFixed(2) + ' €) ' + arrowMin;
minPriceEl.setAttribute("style", "font-size: 16px; margin-bottom: 0px; color: " + (percentageChangeMin > 0 ? "red" : "green") + ";");
} else {
minPriceEl.innerHTML = 'Warte auf Daten...';
minPriceEl.setAttribute("style", "font-size: 16px; margin-bottom: 0px;");
}
overlayEl.appendChild(minPriceEl);
}
}
// Append overlay to wrapper only if showOverlay is true
if (this.config.showOverlay) {
wrapperEl.appendChild(overlayEl);
}
// Chart Data
self.euros = [];
self.days = [];
var allData = this.jsonData;
// Sortiere die Daten nach Datum (aufsteigend)
allData.sort(function(a, b) {
return new Date(a['DateTime']) - new Date(b['DateTime']);
});
// Befülle die Arrays mit den Daten
for (var i = 0; i < allData.length; i++) {
var obj = allData[i];
var date = new Date(obj['DateTime']);
var month = date.getMonth() + 1;
var day = date.getDate();
month = (month < 10 ? "0" : "") + month;
day = (day < 10 ? "0" : "") + day;
self.days.push(day + "." + month);
self.euros.push(obj['Price']);
}
// Chart-Konfiguration
var chartConfig = {
type: 'line',
data: {
labels: self.days,
datasets: [{
label: 'Euro / 100l',
data: self.euros,
fill: true,
backgroundColor: 'rgb(255, 255, 255, .3)',
borderColor: 'rgb(255, 255, 255)',
borderWidth: 3, // Setze die Linienbreite Chart
pointRadius: 0 // Punkte ausblenden
}]
},
options: {
responsive: true,
plugins: {
legend: {
display: false,
}
},
scales: {
x: {
ticks: {
color: "white"
},
grid: {
display: false // Gitterlinien für die x-Achse ausblenden
}
},
y: {
ticks: {
color: "white",
callback: function(value, index, ticks) {
return value + '€';
}
},
grid: {
display: false // Gitterlinien für die y-Achse ausblenden
}
}
}
}
};
// Create chart canvas
const chartEl = document.createElement("canvas");
var myChart = new Chart(chartEl.getContext("2d"), chartConfig);
chartEl.width = this.config.width;
chartEl.height = this.config.height;
chartEl.setAttribute("style", "display: block;");
// Append chart
wrapperEl.appendChild(chartEl);
// Timer für das Overlay-Element
var overlayVisible = false; // Startwert auf false setzen
var overlayTimer; // Variable für den Overlay-Timer
// Überprüfen, ob das Blinken aktiviert ist
if (this.config.overlayBlink) {
// Mache das Overlay sichtbar
overlayEl.style.opacity = '1';
overlayVisible = true;
// Timer für die Sichtbarkeit
overlayTimer = setInterval(function() {
if (overlayVisible) {
overlayEl.style.opacity = '0'; // Mache das Overlay unsichtbar
overlayVisible = false; // Setze den Status auf unsichtbar
// Timer für die nächste Sichtbarkeit
setTimeout(function() {
overlayEl.style.opacity = '1'; // Mache das Overlay sichtbar
overlayVisible = true; // Setze den Status auf sichtbar
}, self.config.overlayUnvisibleDuration); // Warte die Dauer, bevor es wieder sichtbar wird
}
}, self.config.overlayUnvisibleDuration + self.config.overlayInterval); // Gesamtzeit für einen Blinkzyklus
} else {
// Wenn das Blinken nicht aktiviert ist, stelle sicher, dass das Overlay dauerhaft angezeigt wird
overlayEl.style.opacity = '1'; // Immer sichtbar
}
return wrapperEl;
}
});