mirror of
https://github.com/home-assistant/frontend.git
synced 2025-10-30 14:09:58 +00:00
* Add placeholder text for ha-selector-device Added for: - ha-selector-device - ha-selector-entity
130 lines
4.1 KiB
TypeScript
130 lines
4.1 KiB
TypeScript
import type { HassEntity } from "home-assistant-js-websocket";
|
|
import type { PropertyValues } from "lit";
|
|
import { html, LitElement, nothing } from "lit";
|
|
import { customElement, property, state } from "lit/decorators";
|
|
import { ensureArray } from "../../common/array/ensure-array";
|
|
import { fireEvent } from "../../common/dom/fire_event";
|
|
import type { EntitySources } from "../../data/entity_sources";
|
|
import { fetchEntitySourcesWithCache } from "../../data/entity_sources";
|
|
import type { EntitySelector } from "../../data/selector";
|
|
import {
|
|
filterSelectorEntities,
|
|
computeCreateDomains,
|
|
} from "../../data/selector";
|
|
import type { HomeAssistant } from "../../types";
|
|
import "../entity/ha-entities-picker";
|
|
import "../entity/ha-entity-picker";
|
|
|
|
@customElement("ha-selector-entity")
|
|
export class HaEntitySelector extends LitElement {
|
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
|
|
|
@property({ attribute: false }) public selector!: EntitySelector;
|
|
|
|
@state() private _entitySources?: EntitySources;
|
|
|
|
@property() public value?: any;
|
|
|
|
@property() public label?: string;
|
|
|
|
@property() public helper?: string;
|
|
|
|
@property() public placeholder?: any;
|
|
|
|
@property({ type: Boolean }) public disabled = false;
|
|
|
|
@property({ type: Boolean }) public required = true;
|
|
|
|
@state() private _createDomains: string[] | undefined;
|
|
|
|
private _hasIntegration(selector: EntitySelector) {
|
|
return (
|
|
selector.entity?.filter &&
|
|
ensureArray(selector.entity.filter).some((filter) => filter.integration)
|
|
);
|
|
}
|
|
|
|
protected willUpdate(changedProperties: PropertyValues): void {
|
|
if (changedProperties.get("selector") && this.value !== undefined) {
|
|
if (this.selector.entity?.multiple && !Array.isArray(this.value)) {
|
|
this.value = [this.value];
|
|
fireEvent(this, "value-changed", { value: this.value });
|
|
} else if (!this.selector.entity?.multiple && Array.isArray(this.value)) {
|
|
this.value = this.value[0];
|
|
fireEvent(this, "value-changed", { value: this.value });
|
|
}
|
|
}
|
|
}
|
|
|
|
protected render() {
|
|
if (this._hasIntegration(this.selector) && !this._entitySources) {
|
|
return nothing;
|
|
}
|
|
|
|
if (!this.selector.entity?.multiple) {
|
|
return html`<ha-entity-picker
|
|
.hass=${this.hass}
|
|
.value=${this.value}
|
|
.label=${this.label}
|
|
.helper=${this.helper}
|
|
.includeEntities=${this.selector.entity?.include_entities}
|
|
.excludeEntities=${this.selector.entity?.exclude_entities}
|
|
.entityFilter=${this._filterEntities}
|
|
.createDomains=${this._createDomains}
|
|
.placeholder=${this.placeholder}
|
|
.disabled=${this.disabled}
|
|
.required=${this.required}
|
|
allow-custom-entity
|
|
></ha-entity-picker>`;
|
|
}
|
|
|
|
return html`
|
|
<ha-entities-picker
|
|
.hass=${this.hass}
|
|
.value=${this.value}
|
|
.label=${this.label}
|
|
.helper=${this.helper}
|
|
.includeEntities=${this.selector.entity.include_entities}
|
|
.excludeEntities=${this.selector.entity.exclude_entities}
|
|
.reorder=${this.selector.entity.reorder ?? false}
|
|
.entityFilter=${this._filterEntities}
|
|
.createDomains=${this._createDomains}
|
|
.placeholder=${this.placeholder}
|
|
.disabled=${this.disabled}
|
|
.required=${this.required}
|
|
></ha-entities-picker>
|
|
`;
|
|
}
|
|
|
|
protected updated(changedProps: PropertyValues): void {
|
|
super.updated(changedProps);
|
|
if (
|
|
changedProps.has("selector") &&
|
|
this._hasIntegration(this.selector) &&
|
|
!this._entitySources
|
|
) {
|
|
fetchEntitySourcesWithCache(this.hass).then((sources) => {
|
|
this._entitySources = sources;
|
|
});
|
|
}
|
|
if (changedProps.has("selector")) {
|
|
this._createDomains = computeCreateDomains(this.selector);
|
|
}
|
|
}
|
|
|
|
private _filterEntities = (entity: HassEntity): boolean => {
|
|
if (!this.selector?.entity?.filter) {
|
|
return true;
|
|
}
|
|
return ensureArray(this.selector.entity.filter).some((filter) =>
|
|
filterSelectorEntities(filter, entity, this._entitySources)
|
|
);
|
|
};
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"ha-selector-entity": HaEntitySelector;
|
|
}
|
|
}
|