forked from cheelio/power-usage-card
-
Notifications
You must be signed in to change notification settings - Fork 6
/
power-usage-card-regex.js
101 lines (90 loc) · 3.45 KB
/
power-usage-card-regex.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
100
101
import "https://unpkg.com/chart.js@2.7.1/dist/Chart.bundle.min.js?module";
import "https://cdn.jsdelivr.net/npm/chartjs-plugin-colorschemes";
class PowerUsageCardRE extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: 'open' });
}
setConfig(config) {
if (!config.filter) {
throw new Error('You need to define a filter (regular expression!)');
}
const root = this.shadowRoot;
if (root.lastChild) root.removeChild(root.lastChild);
const card = document.createElement('ha-card');
const content = document.createElement('div');
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');
const style = document.createElement('style');
card.id ='ha-card';
content.id = 'content';
canvas.id = 'cnv';
content.style.height = '480px';
canvas.height=480;
card.appendChild(content);
card.appendChild(style);
content.appendChild(canvas);
root.appendChild(card);
this._config = config;
}
set hass(hass) {
const root = this.shadowRoot;
const config = this._config;
const card = root.getElementById("ha-card");
const content = root.getElementById("content");
const canvas = root.getElementById("cnv");
const ctx = canvas.getContext('2d');
// have to enumerate hass.states. Sigh. I want python list comprhension here!
var entlist = [];
for(var i in hass.states) {
if(hass.states[i].entity_id.match(config.filter) && typeof(hass.states[i].state) !== "undefined" && hass.states[i].state.match(/^[0-9\.]+$/))
entlist.push(i);
}
const hassEntities = entlist.map(y => hass.states[y]);
var entityNames = hassEntities.map(x => x.attributes.friendly_name);
var entityData = hassEntities.map(x => x.state);
card.header = config.title ? config.title : 'Power usage graph';
if (config.total_power_usage){
const totalEntity = hass.states[config.total_power_usage]
const total = (totalEntity.attributes.unit_of_measurement == 'kW') ? totalEntity.state * 1000 : totalEntity.state;
const measured = hassEntities.map(x => Number(x.state)).reduce(( accumulator, currentValue ) => accumulator + currentValue, 0);
entityData.push(total - measured)
entityNames.push(config.unknownText ? config.unknownText : 'Unknown');
}
const emptyIndexes = entityData.reduce((arr, e, i) => ((e == 0) && arr.push(i), arr), [])
entityData = entityData.filter((element, index, array) => !emptyIndexes.includes(index));
entityNames = entityNames.filter((element, index, array) => !emptyIndexes.includes(index));
const doughnutChart = new Chart(ctx, {
type: 'doughnut',
data: {
labels: [],
datasets: [{
data: [],
borderWidth: 1,
borderColor:'#00c0ef',
label: 'liveCount',
}]
},
options: {
responsive: true,
maintainAspectRatio: true,
animation: { duration: 0 },
legend: {
position: 'bottom',
display: true
},
hover: { mode: 'index' },
plugins: {colorschemes: { scheme: 'brewer.Paired12' } }
}
});
var getData = function() {
doughnutChart.data = { datasets: [{ data: entityData }], labels: entityNames };
doughnutChart.update();
};
getData();
}
getCardSize() {
return 3;
}
}
customElements.define('power-usage-card-regex', PowerUsageCardRE);