Add attributes. Fix #48. Fix #38

This commit is contained in:
2019-08-05 15:09:24 +02:00
parent 9b36cf25bb
commit a4edb45a14
4 changed files with 187 additions and 33 deletions

View File

@@ -2,25 +2,53 @@ import {Controller} from "./controller.js";
export class CoverController extends Controller {
get attribute() {
return this._config.attribute || "position";
}
get _value() {
return this.stateObj.state === "open"
? this.stateObj.attributes.current_position
: 0;
switch (this.attribute) {
case "position":
return this.stateObj.state === "open"
? this.stateObj.attributes.current_position
: 0;
case "tilt":
return this.stateObj.attributes.current_tilt_position;
default:
return 0;
}
}
set _value(value) {
this._hass.callService("cover", "set_cover_position", {
entity_id: this.stateObj.entity_id,
position: value,
});
switch (this.attribute) {
case "position":
this._hass.callService("cover", "set_cover_position", {
entity_id: this.stateObj.entity_id,
position: value,
});
break;
case "tilt":
this._hass.callService("cover", "set_cover_tilt_position", {
entity_id: this.stateObj.entity_id,
tilt_position: value,
});
break;
default:
}
}
get string() {
if (!this.hasSlider)
return "";
if (this.stateObj.state === "closed")
return this._hass.localize("state.cover.closed");
return `${this.value} %`
switch (this.attribute) {
case "position":
if (this.stateObj.state === "closed")
return this._hass.localize("state.cover.closed");
return `${this.value} %`
case "tilt":
return this.value;
}
}
get hasToggle() {
@@ -28,10 +56,18 @@ export class CoverController extends Controller {
}
get hasSlider() {
if ("current_position" in this.stateObj.attributes) return true;
if (("supported_features" in this.stateObj.attributes) &&
(this.stateObj.attributes.supported_features & 4)) return true;
return false;
switch (this.attribute) {
case "position":
if ("current_position" in this.stateObj.attributes) return true;
if (("supported_features" in this.stateObj.attributes) &&
(this.stateObj.attributes.supported_features & 4)) return true;
case "tilt":
if ("current_tilt_position" in this.stateObj.attributes) return true;
if (("supported_features" in this.stateObj.attributes) &&
(this.stateObj.attributes.supported_features & 128)) return true;
default:
return false;
}
}
get _step() {