Convert hui-text-entity-row to TypeScript/LitElement (#2017)

* Convert hui-text-entity-row to TypeScript/LitElement

* Address review comments

* Fix Travis errors
This commit is contained in:
Ian Richardson
2018-11-08 02:41:25 -06:00
committed by Paulus Schoutsen
parent ad5f815273
commit 9596f737e8
2 changed files with 74 additions and 65 deletions

View File

@@ -0,0 +1,74 @@
import { html, LitElement, PropertyDeclarations } from "@polymer/lit-element";
import { TemplateResult } from "lit-html";
import "../components/hui-generic-entity-row";
import "./hui-error-entity-row";
import computeStateDisplay from "../../../common/entity/compute_state_display";
import { hassLocalizeLitMixin } from "../../../mixins/lit-localize-mixin";
import { HomeAssistant } from "../../../types";
import { EntityRow, EntityConfig } from "./types";
class HuiTextEntityRow extends hassLocalizeLitMixin(LitElement)
implements EntityRow {
public hass?: HomeAssistant;
private _config?: EntityConfig;
static get properties(): PropertyDeclarations {
return {
hass: {},
_config: {},
};
}
public setConfig(config: EntityConfig): void {
if (!config) {
throw new Error("Configuration error");
}
this._config = config;
}
protected render(): TemplateResult {
if (!this._config || !this.hass) {
return html``;
}
const stateObj = this.hass.states[this._config.entity];
if (!stateObj) {
return html`
<hui-error-entity-row
.entity="${this._config.entity}"
></hui-error-entity-row>
`;
}
return html`
${this.renderStyle()}
<hui-generic-entity-row .hass="${this.hass}" .config="${this._config}">
>
<div>
${computeStateDisplay(this.localize, stateObj, this.hass.language)}
</div>
</hui-generic-entity-row>
`;
}
private renderStyle(): TemplateResult {
return html`
<style>
div {
text-align: right;
}
</style>
`;
}
}
declare global {
interface HTMLElementTagNameMap {
"hui-text-entity-row": HuiTextEntityRow;
}
}
customElements.define("hui-text-entity-row", HuiTextEntityRow);