mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-20 02:38:53 +00:00
91 lines
2.7 KiB
TypeScript
91 lines
2.7 KiB
TypeScript
import { HassEntity } from "home-assistant-js-websocket";
|
|
import { html, LitElement, PropertyValues, TemplateResult } from "lit";
|
|
import { customElement, property, query } from "lit/decorators";
|
|
import { formatAttributeName } from "../../data/entity_attributes";
|
|
import { PolymerChangedEvent } from "../../polymer-types";
|
|
import { HomeAssistant } from "../../types";
|
|
import "../ha-combo-box";
|
|
import type { HaComboBox } from "../ha-combo-box";
|
|
|
|
export type HaEntityPickerEntityFilterFunc = (entityId: HassEntity) => boolean;
|
|
|
|
@customElement("ha-entity-attribute-picker")
|
|
class HaEntityAttributePicker extends LitElement {
|
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
|
|
|
@property() public entityId?: string;
|
|
|
|
@property({ type: Boolean }) public autofocus = false;
|
|
|
|
@property({ type: Boolean }) public disabled = false;
|
|
|
|
@property({ type: Boolean }) public required = false;
|
|
|
|
@property({ type: Boolean, attribute: "allow-custom-value" })
|
|
public allowCustomValue;
|
|
|
|
@property() public label?: string;
|
|
|
|
@property() public value?: string;
|
|
|
|
@property({ type: Boolean }) private _opened = false;
|
|
|
|
@query("ha-combo-box", true) private _comboBox!: HaComboBox;
|
|
|
|
protected shouldUpdate(changedProps: PropertyValues) {
|
|
return !(!changedProps.has("_opened") && this._opened);
|
|
}
|
|
|
|
protected updated(changedProps: PropertyValues) {
|
|
if (changedProps.has("_opened") && this._opened) {
|
|
const state = this.entityId ? this.hass.states[this.entityId] : undefined;
|
|
(this._comboBox as any).items = state
|
|
? Object.keys(state.attributes).map((key) => ({
|
|
value: key,
|
|
label: formatAttributeName(key),
|
|
}))
|
|
: [];
|
|
}
|
|
}
|
|
|
|
protected render(): TemplateResult {
|
|
if (!this.hass) {
|
|
return html``;
|
|
}
|
|
|
|
return html`
|
|
<ha-combo-box
|
|
.hass=${this.hass}
|
|
.value=${this.value || ""}
|
|
.autofocus=${this.autofocus}
|
|
.label=${this.label ??
|
|
this.hass.localize(
|
|
"ui.components.entity.entity-attribute-picker.attribute"
|
|
)}
|
|
.disabled=${this.disabled || !this.entityId}
|
|
.required=${this.required}
|
|
.allowCustomValue=${this.allowCustomValue}
|
|
item-value-path="value"
|
|
item-label-path="label"
|
|
@opened-changed=${this._openedChanged}
|
|
@value-changed=${this._valueChanged}
|
|
>
|
|
</ha-combo-box>
|
|
`;
|
|
}
|
|
|
|
private _openedChanged(ev: PolymerChangedEvent<boolean>) {
|
|
this._opened = ev.detail.value;
|
|
}
|
|
|
|
private _valueChanged(ev: PolymerChangedEvent<string>) {
|
|
this.value = ev.detail.value;
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"ha-entity-attribute-picker": HaEntityAttributePicker;
|
|
}
|
|
}
|