This commit is contained in:
Rushil Umaretiya 2020-05-25 02:26:44 -04:00
parent 46fa9725e1
commit 1ae11745ad
2 changed files with 25 additions and 4 deletions

View File

@ -4,9 +4,28 @@ Module.register("MMM-MinimalCOVID19", {
getDom: function() {
var element = document.createElement("div")
element.className = "myContent"
element.innerHTML = "Hello, World!"
element.innerHTML = "Hello, World! " + this.config.foo
var subElement = document.createElement("p")
subElement.id = "COUNT"
element.appendChild(subElement)
return element
},
notificationReceived: function() {},
socketNotificationReceived: function() {},
notificationReceived: function(notification, payload, sender) {
switch (notification) {
case "DOM_OBJECTS_CREATED":
var timer = setInterval(()=>{
this.sendSocketNotification("DO_YOUR_JOB", this.count)
this.count++
}, 1000)
break
}
},
socketNotificationReceived: function(notification, payload) {
switch(notification) {
case "I_DID":
var elem = document.getElementById("COUNT")
elem.innerHTML = "Count:" + payload
break
}
},
})

View File

@ -1,6 +1,8 @@
var NodeHelper = require("node_helper")
module.exports = NodeHelper.create({
start: function() {},
start: function() {
this.countDown = 10000000
},
socketNotificationReceived: function(notification, payload) {},
})