-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Migrate more-info configurator #11792
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
88f9d05
d6f39c3
89477d1
29972c0
176c77c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,128 @@ | ||
| import "@material/mwc-button"; | ||
| import { HassEntity } from "home-assistant-js-websocket"; | ||
| import { css, html, LitElement } from "lit"; | ||
| import { customElement, property, state } from "lit/decorators"; | ||
| import "../../../components/ha-alert"; | ||
| import "../../../components/ha-circular-progress"; | ||
| import "../../../components/ha-markdown"; | ||
| import "../../../components/ha-textfield"; | ||
| import type { HomeAssistant } from "../../../types"; | ||
|
|
||
| @customElement("more-info-configurator") | ||
| export class MoreInfoConfigurator extends LitElement { | ||
| @property({ attribute: false }) public hass!: HomeAssistant; | ||
|
|
||
| @property({ attribute: false }) public stateObj?: HassEntity; | ||
|
|
||
| @state() private _isConfiguring = false; | ||
|
|
||
| private _fieldInput = {}; | ||
|
|
||
| render() { | ||
| if (this.stateObj?.state !== "configure") { | ||
| return html``; | ||
| } | ||
|
|
||
| return html` | ||
| <div class="container"> | ||
| <ha-markdown | ||
| breaks | ||
| .content=${this.stateObj.attributes.description} | ||
| ></ha-markdown> | ||
|
|
||
| ${this.stateObj.attributes.errors | ||
| ? html`<ha-alert alert-type="error"> | ||
| ${this.stateObj.attributes.errors} | ||
| </ha-alert>` | ||
| : ""} | ||
| ${this.stateObj.attributes.fields.map( | ||
| (field) => html`<ha-textfield | ||
| .label=${field.name} | ||
| .name=${field.id} | ||
| .type=${field.type} | ||
| @change=${this._fieldChanged} | ||
| ></ha-textfield>` | ||
| )} | ||
| ${this.stateObj.attributes.submit_caption | ||
| ? html`<p class="submit"> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this need to be a paragraph element
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, could be a div, but 🤷♂️ (it is used to center the button) |
||
| <mwc-button | ||
| raised | ||
| .disabled=${this._isConfiguring} | ||
| @click=${this._submitClicked} | ||
| > | ||
| ${this._isConfiguring | ||
| ? html`<ha-circular-progress | ||
| active | ||
| alt="Configuring" | ||
| ></ha-circular-progress>` | ||
| : ""} | ||
| ${this.stateObj.attributes.submit_caption} | ||
| </mwc-button> | ||
| </p>` | ||
| : ""} | ||
| </div> | ||
| `; | ||
| } | ||
|
|
||
| private _fieldChanged(ev) { | ||
| const el = ev.target; | ||
| this._fieldInput[el.name] = el.value; | ||
| } | ||
|
|
||
| private _submitClicked() { | ||
| const data = { | ||
| configure_id: this.stateObj!.attributes.configure_id, | ||
| fields: this._fieldInput, | ||
| }; | ||
|
|
||
| this._isConfiguring = true; | ||
|
|
||
| this.hass.callService("configurator", "configure", data).then( | ||
| () => { | ||
| this._isConfiguring = false; | ||
| }, | ||
| () => { | ||
| this._isConfiguring = false; | ||
| } | ||
| ); | ||
| } | ||
|
|
||
| static styles = css` | ||
| .container { | ||
| display: flex; | ||
| flex-direction: column; | ||
| } | ||
| p { | ||
| margin: 8px 0; | ||
| } | ||
|
|
||
| a { | ||
| color: var(--primary-color); | ||
| } | ||
|
|
||
| p > img { | ||
| max-width: 100%; | ||
| } | ||
|
|
||
| p.center { | ||
| text-align: center; | ||
| } | ||
|
|
||
| p.submit { | ||
| text-align: center; | ||
| height: 41px; | ||
| } | ||
|
|
||
| ha-circular-progress { | ||
| width: 14px; | ||
| height: 14px; | ||
| margin-right: 20px; | ||
| } | ||
| `; | ||
| } | ||
|
|
||
| declare global { | ||
| interface HTMLElementTagNameMap { | ||
| "more-info-configurator": MoreInfoConfigurator; | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.