-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMMM-cryptocoin.js
executable file
·99 lines (88 loc) · 2.45 KB
/
MMM-cryptocoin.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
/* Magic Mirror
* Module: MMM-cryptocoin
*
* By Christian Handorf ([email protected])
* MIT Licensed.
*
* Based on MMM-bitcoin module by valmassoi.
*/
Module.register("MMM-cryptocoin", {
result: {},
defaults: {
transCurrency: 'EUR',
updateInterval: 60000,
fadeSpeed: 3000,
coins: [
{
label: 'Ether',
coin: 'ETH',
output: '%x €',
},
{
label: 'Bitcoin',
coin: 'BTC',
output: '%x €',
},
],
},
start: function() {
this.getTickers();
this.scheduleUpdate();
},
getDom: function() {
var wrapper = document.createElement("ticker");
wrapper.className = 'medium bright';
var data = this.result;
var output = '<table width="95%">';
for (var key in data) {
if (data.hasOwnProperty(key)) {
for (var c in this.config.coins) {
var coinEntry = this.config.coins[c];
if (coinEntry.coin == key) {
var str = '<tr><td width="50%">' + coinEntry.label + '</td><td align="right">' + coinEntry.output + '</td></tr>';
var val = data[key][this.config.transCurrency];
str = str.replace("%x", val.toFixed(2));
output += str;
break;
}
}
}
}
output += '</table>';
var outputElement = document.createElement("span");
outputElement.innerHTML = output;
wrapper.appendChild(outputElement);
return wrapper;
},
scheduleUpdate: function(delay) {
var nextLoad = this.config.updateInterval;
if (nextLoad < 10000) {
nextLoad = 10000;
}
if (typeof delay !== "undefined" && delay >= 0) {
nextLoad = delay;
}
var self = this;
setInterval(function() {
self.getTickers();
}, nextLoad);
},
getTickers: function () {
var coinAdd = "";
for (var c in this.config.coins) {
var coinEntry = this.config.coins[c];
if (coinEntry.coin.length < 1) {continue;}
if (coinAdd.length > 0) {coinAdd += ",";}
coinAdd += coinEntry.coin.trim();
}
var url = 'https://min-api.cryptocompare.com/data/pricemulti?fsyms=' + coinAdd + '&tsyms=' + this.config.transCurrency;
this.sendSocketNotification('GET_TICKERS', url);
},
socketNotificationReceived: function(notification, payload) {
if (notification === "TICKERS_RESULT") {
var self = this;
this.result = payload;
this.updateDom(self.config.fadeSpeed);
}
},
});