-
Notifications
You must be signed in to change notification settings - Fork 0
/
swipe_node_helper.js
47 lines (40 loc) · 1.31 KB
/
swipe_node_helper.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
/* Magic Mirror
* Node Helper: MMM-TouchSwipe
*
* By Buzz Kc
* MIT Licensed.
*/
var NodeHelper = require("node_helper");
module.exports = NodeHelper.create({
// Override socketNotificationReceived method.
/* socketNotificationReceived(notification, payload)
* This method is called when a socket notification arrives.
*
* argument notification string - The identifier of the noitication.
* argument payload mixed - The payload of the notification.
*/
socketNotificationReceived: function(notification, payload) {
if (notification === "MMM-TouchSwipe-NOTIFICATION_TEST") {
console.log("Working notification system. Notification:", notification, "payload: ", payload);
// Send notification
this.sendNotificationTest(this.anotherFunction()); //Is possible send objects :)
}
},
// Example function send notification test
sendNotificationTest: function(payload) {
this.sendSocketNotification("MMM-TouchSwipe-NOTIFICATION_TEST", payload);
},
// this you can create extra routes for your module
extraRoutes: function() {
var self = this;
this.expressApp.get("/MMM-TouchSwipe/extra_route", function(req, res) {
// call another function
values = self.anotherFunction();
res.send(values);
});
},
// Test another function
anotherFunction: function() {
return {date: new Date()};
}
});