forked from thesoftwarejedi/MMM-YNAB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MMM-YNAB.js
38 lines (34 loc) · 1.21 KB
/
MMM-YNAB.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
Module.register("MMM-YNAB", {
result: [],
defaults: {
token: "",
categories: [ "Household", "Pets", "Grocery", "Lunch", "Kids Clothes", "Restaurants", "Spontaneous Fun" ]
},
start: function () {
this.sendSocketNotification('YNAB_SET_CONFIG', this.config);
},
getDom: function () {
var wrapper = document.createElement("div");
wrapper.classList = ["xsmall"];
wrapper.innerHTML = "Loading YNAB";
if (this.result.items && this.result.items.length > 0) {
for (let i of this.result.items) {
wrapper.innerHTML = this.result.items.map(a => "<span class='ynab-name'>" + a.name + "</span><span class='ynab-balance'>$" + (a.balance/1000).toFixed(2) + "</span>").join('');
}
}
return wrapper;
},
socketNotificationReceived: function (notification, payload) {
console.log("notification: " + notification);
console.log("payload: " + JSON.stringify(payload));
if (notification == "YNAB_UPDATE") {
this.result = payload;
this.updateDom(0);
}
},
getStyles: function() {
return [
this.file('MMM-YNAB.css')
]
}
});