Files
frontend/src/dialogs/more-info/controls/more-info-timer.ts
Ian Richardson cbd01f2d68 Create more-for timer with action buttons (#3621)
* Create more-for timer with action buttons

Closes https://github.com/home-assistant/home-assistant-polymer/issues/3594

* center actions

* Address review comments

* address review comments
2019-09-06 22:13:05 -05:00

105 lines
2.6 KiB
TypeScript

import {
LitElement,
html,
TemplateResult,
CSSResult,
css,
property,
PropertyValues,
customElement,
} from "lit-element";
import "@material/mwc-button";
import { HomeAssistant } from "../../../types";
import { TimerEntity } from "../../../data/timer";
@customElement("more-info-timer")
class MoreInfoTimer extends LitElement {
@property() public hass!: HomeAssistant;
@property() public stateObj?: TimerEntity;
protected render(): TemplateResult | void {
if (!this.hass || !this.stateObj) {
return html``;
}
return html`
<ha-attributes
.stateObj=${this.stateObj}
.extraFilters=${"remaining"}
></ha-attributes>
<div class="actions">
${this.stateObj.state === "idle" || this.stateObj.state === "paused"
? html`
<mwc-button
.action="${"start"}"
@click="${this._handleActionClick}"
>
${this.hass!.localize("ui.card.timer.actions.start")}
</mwc-button>
`
: ""}
${this.stateObj.state === "active"
? html`
<mwc-button
.action="${"pause"}"
@click="${this._handleActionClick}"
>
${this.hass!.localize("ui.card.timer.actions.pause")}
</mwc-button>
`
: ""}
${this.stateObj.state === "active" || this.stateObj.state === "paused"
? html`
<mwc-button
.action="${"cancel"}"
@click="${this._handleActionClick}"
>
${this.hass!.localize("ui.card.timer.actions.cancel")}
</mwc-button>
<mwc-button
.action="${"finish"}"
@click="${this._handleActionClick}"
>
${this.hass!.localize("ui.card.timer.actions.finish")}
</mwc-button>
`
: ""}
</div>
`;
}
protected updated(changedProps: PropertyValues) {
super.updated(changedProps);
if (!changedProps.has("stateObj") || !this.stateObj) {
return;
}
}
private _handleActionClick(e: MouseEvent): void {
const action = (e.currentTarget as any).action;
this.hass.callService("timer", action, {
entity_id: this.stateObj!.entity_id,
});
}
static get styles(): CSSResult {
return css`
.actions {
margin: 0 8px;
padding-top: 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
`;
}
}
declare global {
interface HTMLElementTagNameMap {
"more-info-timer": MoreInfoTimer;
}
}