Update HA, add vacuum, grid cards, fixes
此提交包含在:
@@ -0,0 +1,69 @@
|
||||
class ColorLite extends HTMLElement {
|
||||
set hass(hass) {
|
||||
if (!this.content) {
|
||||
const card = document.createElement('ha-card');
|
||||
this.content = document.createElement('div');
|
||||
card.appendChild(this.content);
|
||||
card.style.background = 'none';
|
||||
this.appendChild(card);
|
||||
}
|
||||
|
||||
const entityId = this.config.entity;
|
||||
const state = hass.states[entityId];
|
||||
|
||||
|
||||
// if the light is on
|
||||
if(state){
|
||||
if(state.state == 'on'){
|
||||
|
||||
const imageURLId = this.config.image;
|
||||
var ImURL = imageURLId;
|
||||
const imageURLCId = this.config.color_image;
|
||||
var rgbval = state.attributes.rgb_color;
|
||||
var hsval = state.attributes.hs_color;
|
||||
var hsar = "";
|
||||
var min_bright = (this.config.min_brightness * 2.5);
|
||||
var bright = state.attributes.brightness;
|
||||
if (hsval) {
|
||||
if (rgbval != "255,255,255") {
|
||||
var hsar = ' hue-rotate(' + hsval[0] + 'deg)';
|
||||
if (imageURLCId) {
|
||||
ImURL = imageURLCId;
|
||||
}
|
||||
}
|
||||
}
|
||||
var bbritef = bright;
|
||||
if (min_bright > bright) {
|
||||
bbritef = min_bright;
|
||||
}
|
||||
var bbrite = (bbritef / 205);
|
||||
|
||||
this.content.innerHTML = `
|
||||
<!-- Custom Lite Card for x${rgbval}x -->
|
||||
<img src="${ImURL}" style="filter: opacity(${bbrite})${hsar}!important;" width="100%" height="100%">
|
||||
`;
|
||||
|
||||
} else {
|
||||
this.content.innerHTML = `
|
||||
<!-- Custom Lite Card for ${entityId} is turned off -->
|
||||
`;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
setConfig(config) {
|
||||
if (!config.entity) {
|
||||
throw new Error('You need to define an entity');
|
||||
}
|
||||
this.config = config;
|
||||
}
|
||||
|
||||
// The height of your card. Home Assistant uses this to automatically
|
||||
// distribute all cards over the available columns.
|
||||
getCardSize() {
|
||||
return 3;
|
||||
}
|
||||
}
|
||||
|
||||
customElements.define('color-lite-card', ColorLite);
|
||||
新增問題並參考
封鎖使用者