-
Notifications
You must be signed in to change notification settings - Fork 3
/
MMM-UKMOWeatherWarnings.js
141 lines (117 loc) · 3.15 KB
/
MMM-UKMOWeatherWarnings.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
/* Magic Mirror
* Module: MMM-UKMOWeatherWarnings
*
* By Malcolm Oakes https://github.com/maloakes
*
* MIT Licensed.
*
* Gets Weather warnings from the UK Met Office feed.
* These can be dispayed in tabular format.
* Optionally Notify waring data for use by other modules.
*/
Module.register("MMM-UKMOWeatherWarnings", {
defaults: {
updateInterval: 900000, //15 mins
retryDelay: 5000,
tableClass: "small",
apiBase: null,
region: null,
colored: true,
broadcastCurrent: true,
broadcastForecast: true,
broadcastListSize: 5, // size of the forecast warnings list to broadcast
useTestData: false,
testUrl: null,
backgroundMode: false,
delta: 0, //minutes
},
requiresVersion: "2.1.0", // Required version of MagicMirror
start: function() {
var self = this;
var dataRequest = null;
var dataNotification = null;
var warningsData = null;
//Flag for check if module is loaded
this.loaded = false;
//Do this once first
self.sendSocketNotification("MMM-UKMOWeatherWarnings-WARNINGS-REQ", this.getUrl());
// Schedule update timer.
setInterval(function() {
self.sendSocketNotification("MMM-UKMOWeatherWarnings-WARNINGS-REQ", self.getUrl());
self.updateDom();
}, this.config.updateInterval);
},
/*
* build the URL string
*/
getUrl: function() {
return this.config.useTestData ? this.config.testUrl : this.config.apiBase + this.config.region
},
/* scheduleUpdate()
* Schedule next update.
*
* argument delay number - Milliseconds before next update.
* If empty, this.config.updateInterval is used.
*/
scheduleUpdate: function(delay) {
var nextLoad = this.config.updateInterval;
if (typeof delay !== "undefined" && delay >= 0) {
nextLoad = delay;
}
nextLoad = nextLoad ;
var self = this;
setTimeout(function() {
self.sendSocketNotification("\"MMM-UKMOWeatherWarnings-WARNINGS-REQ", null);
}, nextLoad);
},
getScripts: function() {
return [
"warningsobject.js",
"warningitemobject.js",
];
},
getStyles: function () {
return [
"font-awesome.css",
"MMM-UKMOWeatherWarnings.css",
];
},
getTemplate: function () {
return "MMM-UKMOWeatherWarnings.njk"
},
getTemplateData: function () {
return {
config: this.config,
warnings: this.warningsData
}
},
// Load translations files
getTranslations: function() {
return {
en: "translations/en.json",
es: "translations/es.json"
};
},
// socketNotificationReceived from helper
socketNotificationReceived: function (notification, payload) {
if(notification === "MMM-UKMOWeatherWarnings-WARNINGS-RESULT") {
// set dataNotification
this.warningsData = new WarningsObject(payload);
this.broadcastWarnings()
this.updateDom();
}
},
/*
* broadcast notifications to other modules if required
*/
broadcastWarnings: function() {
if (this.config.broadcastCurrent) {
var resCurr = this.warningsData.getMaxCurrentWarn(this.config.delta)
this.sendNotification("WEATHER-WARNING-CURRENT", resCurr)
}
if (this.config.broadcastForecast) {
var resFcList = this.warningsData.getMaxWarnFcList(this.config.broadcastListSize)
this.sendNotification("WEATHER-WARNING-FORECAST", resFcList)
}
},
});