blob: 4591ccd52040cf537c4ddc0eeb44f8260cc9f3e4 (
plain)
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
|
'use strict';
'require ui';
'require rpc';
'require poll';
'require baseclass';
var callBatteryStatus = rpc.declare({
object: 'luci.battstatus',
method: 'getBatteryStatus',
expect: { '': {} }
});
var devices = {};
return baseclass.extend({
__init__: function() {
this.updateIndicator();
poll.add(L.bind(this.updateIndicator, this), 5);
},
updateIndicator: function() {
return callBatteryStatus().then(L.bind(function(devs) {
for (var dev in devs) {
var info = devs[dev];
if (info.valid) {
info.status = (info.charging ? _('Charging') : _('Not Charging')) + ": " + info.percentage + "%";
info.state = "active";
if (info.percentage <= 20)
info.color = "Red";
else if (info.percentage <= 30)
info.color = "GoldenRod";
} else {
info.status = info.message;
info.state = "inactive";
}
info.name = "battery-" + dev.replace(" ", "-");
ui.showIndicator(info.name, info.status, null, info.state);
if (typeof info.color != 'undefined') {
info.element = document.querySelector('[data-indicator="${info.name}"]');
info.element.innerHTML = '<span style="color:${info.color}">${info.status}</span>';
}
devices[dev] = info;
}
for (var dev in devices) {
if (!devs.hasOwnProperty(dev)) {
ui.hideIndicator('battery-%s'.format(dev));
delete devices[dev];
}
}
}, this));
}
});
|