mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-28 11:46:42 +00:00
Fix behavior of select dropdowns when options change (#24603)
* Fix behavior of select dropdowns when options change * new approach * memoize
This commit is contained in:
parent
5803ab68c2
commit
a5b7bb8391
@ -1,5 +1,6 @@
|
|||||||
import { SelectBase } from "@material/mwc-select/mwc-select-base";
|
import { SelectBase } from "@material/mwc-select/mwc-select-base";
|
||||||
import { mdiMenuDown } from "@mdi/js";
|
import { mdiMenuDown } from "@mdi/js";
|
||||||
|
import type { PropertyValues } from "lit";
|
||||||
import { css, html, nothing } from "lit";
|
import { css, html, nothing } from "lit";
|
||||||
import { customElement, property, query } from "lit/decorators";
|
import { customElement, property, query } from "lit/decorators";
|
||||||
import { classMap } from "lit/directives/class-map";
|
import { classMap } from "lit/directives/class-map";
|
||||||
@ -24,6 +25,16 @@ export class HaControlSelectMenu extends SelectBase {
|
|||||||
@property({ type: Boolean, attribute: "hide-label" })
|
@property({ type: Boolean, attribute: "hide-label" })
|
||||||
public hideLabel = false;
|
public hideLabel = false;
|
||||||
|
|
||||||
|
@property() public options;
|
||||||
|
|
||||||
|
protected updated(changedProps: PropertyValues) {
|
||||||
|
super.updated(changedProps);
|
||||||
|
if (changedProps.get("options")) {
|
||||||
|
this.layoutOptions();
|
||||||
|
this.selectByValue(this.value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public override render() {
|
public override render() {
|
||||||
const classes = {
|
const classes = {
|
||||||
"select-disabled": this.disabled,
|
"select-disabled": this.disabled,
|
||||||
|
@ -17,6 +17,8 @@ export class HaSelect extends SelectBase {
|
|||||||
@property({ attribute: "inline-arrow", type: Boolean })
|
@property({ attribute: "inline-arrow", type: Boolean })
|
||||||
public inlineArrow = false;
|
public inlineArrow = false;
|
||||||
|
|
||||||
|
@property() public options;
|
||||||
|
|
||||||
protected override render() {
|
protected override render() {
|
||||||
return html`
|
return html`
|
||||||
${super.render()}
|
${super.render()}
|
||||||
@ -68,6 +70,10 @@ export class HaSelect extends SelectBase {
|
|||||||
textContainerElement?.classList.remove("inline-arrow");
|
textContainerElement?.classList.remove("inline-arrow");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (changedProperties.get("options")) {
|
||||||
|
this.layoutOptions();
|
||||||
|
this.selectByValue(this.value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
disconnectedCallback() {
|
disconnectedCallback() {
|
||||||
|
@ -2,6 +2,7 @@ import type { HassEntity } from "home-assistant-js-websocket";
|
|||||||
import type { PropertyValues } from "lit";
|
import type { PropertyValues } from "lit";
|
||||||
import { html, LitElement, nothing } from "lit";
|
import { html, LitElement, nothing } from "lit";
|
||||||
import { customElement, property, query, state } from "lit/decorators";
|
import { customElement, property, query, state } from "lit/decorators";
|
||||||
|
import memoizeOne from "memoize-one";
|
||||||
import { stopPropagation } from "../../../common/dom/stop_propagation";
|
import { stopPropagation } from "../../../common/dom/stop_propagation";
|
||||||
import { computeDomain } from "../../../common/entity/compute_domain";
|
import { computeDomain } from "../../../common/entity/compute_domain";
|
||||||
import "../../../components/ha-control-select-menu";
|
import "../../../components/ha-control-select-menu";
|
||||||
@ -84,7 +85,11 @@ class HuiSelectOptionsCardFeature
|
|||||||
|
|
||||||
const oldOption = this.stateObj!.state;
|
const oldOption = this.stateObj!.state;
|
||||||
|
|
||||||
if (option === oldOption) return;
|
if (
|
||||||
|
option === oldOption ||
|
||||||
|
!this.stateObj!.attributes.options.includes(option)
|
||||||
|
)
|
||||||
|
return;
|
||||||
|
|
||||||
this._currentOption = option;
|
this._currentOption = option;
|
||||||
|
|
||||||
@ -115,7 +120,7 @@ class HuiSelectOptionsCardFeature
|
|||||||
|
|
||||||
const stateObj = this.stateObj;
|
const stateObj = this.stateObj;
|
||||||
|
|
||||||
const options = filterModes(
|
const options = this._getOptions(
|
||||||
this.stateObj.attributes.options,
|
this.stateObj.attributes.options,
|
||||||
this._config.options
|
this._config.options
|
||||||
);
|
);
|
||||||
@ -126,6 +131,7 @@ class HuiSelectOptionsCardFeature
|
|||||||
hide-label
|
hide-label
|
||||||
.label=${this.hass.localize("ui.card.select.option")}
|
.label=${this.hass.localize("ui.card.select.option")}
|
||||||
.value=${stateObj.state}
|
.value=${stateObj.state}
|
||||||
|
.options=${options}
|
||||||
.disabled=${this.stateObj.state === UNAVAILABLE}
|
.disabled=${this.stateObj.state === UNAVAILABLE}
|
||||||
fixedMenuPosition
|
fixedMenuPosition
|
||||||
naturalMenuWidth
|
naturalMenuWidth
|
||||||
@ -143,6 +149,11 @@ class HuiSelectOptionsCardFeature
|
|||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private _getOptions = memoizeOne(
|
||||||
|
(attributeOptions: string[], configOptions: string[] | undefined) =>
|
||||||
|
filterModes(attributeOptions, configOptions)
|
||||||
|
);
|
||||||
|
|
||||||
static get styles() {
|
static get styles() {
|
||||||
return cardFeatureStyles;
|
return cardFeatureStyles;
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
import "@material/mwc-list/mwc-list-item";
|
import "@material/mwc-list/mwc-list-item";
|
||||||
import type { PropertyValues } from "lit";
|
import type { PropertyValues } from "lit";
|
||||||
import { css, html, LitElement, nothing } from "lit";
|
import { css, html, LitElement, nothing } from "lit";
|
||||||
import { customElement, property, query, state } from "lit/decorators";
|
import { customElement, property, state } from "lit/decorators";
|
||||||
import { stopPropagation } from "../../../common/dom/stop_propagation";
|
import { stopPropagation } from "../../../common/dom/stop_propagation";
|
||||||
import { computeStateName } from "../../../common/entity/compute_state_name";
|
import { computeStateName } from "../../../common/entity/compute_state_name";
|
||||||
import "../../../components/ha-select";
|
import "../../../components/ha-select";
|
||||||
import type { HaSelect } from "../../../components/ha-select";
|
|
||||||
import { UNAVAILABLE } from "../../../data/entity";
|
import { UNAVAILABLE } from "../../../data/entity";
|
||||||
import { forwardHaptic } from "../../../data/haptics";
|
import { forwardHaptic } from "../../../data/haptics";
|
||||||
import type { InputSelectEntity } from "../../../data/input_select";
|
import type { InputSelectEntity } from "../../../data/input_select";
|
||||||
@ -23,8 +22,6 @@ class HuiInputSelectEntityRow extends LitElement implements LovelaceRow {
|
|||||||
|
|
||||||
@state() private _config?: EntitiesCardEntityConfig;
|
@state() private _config?: EntitiesCardEntityConfig;
|
||||||
|
|
||||||
@query("ha-select") private _haSelect!: HaSelect;
|
|
||||||
|
|
||||||
public setConfig(config: EntitiesCardEntityConfig): void {
|
public setConfig(config: EntitiesCardEntityConfig): void {
|
||||||
if (!config || !config.entity) {
|
if (!config || !config.entity) {
|
||||||
throw new Error("Entity must be specified");
|
throw new Error("Entity must be specified");
|
||||||
@ -37,28 +34,6 @@ class HuiInputSelectEntityRow extends LitElement implements LovelaceRow {
|
|||||||
return hasConfigOrEntityChanged(this, changedProps);
|
return hasConfigOrEntityChanged(this, changedProps);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected updated(changedProps: PropertyValues) {
|
|
||||||
super.updated(changedProps);
|
|
||||||
if (!this._config) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (changedProps.has("hass")) {
|
|
||||||
const oldHass = changedProps.get("hass");
|
|
||||||
const stateObj = this.hass?.states[this._config.entity] as
|
|
||||||
| InputSelectEntity
|
|
||||||
| undefined;
|
|
||||||
const oldStateObj = oldHass?.states[this._config.entity] as
|
|
||||||
| InputSelectEntity
|
|
||||||
| undefined;
|
|
||||||
if (
|
|
||||||
stateObj &&
|
|
||||||
stateObj.attributes.options !== oldStateObj?.attributes.options
|
|
||||||
) {
|
|
||||||
this._haSelect.layoutOptions();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected render() {
|
protected render() {
|
||||||
if (!this.hass || !this._config) {
|
if (!this.hass || !this._config) {
|
||||||
return nothing;
|
return nothing;
|
||||||
@ -85,6 +60,7 @@ class HuiInputSelectEntityRow extends LitElement implements LovelaceRow {
|
|||||||
<ha-select
|
<ha-select
|
||||||
.label=${this._config.name || computeStateName(stateObj)}
|
.label=${this._config.name || computeStateName(stateObj)}
|
||||||
.value=${stateObj.state}
|
.value=${stateObj.state}
|
||||||
|
.options=${stateObj.attributes.options}
|
||||||
.disabled=${
|
.disabled=${
|
||||||
stateObj.state === UNAVAILABLE /* UNKNOWN state is allowed */
|
stateObj.state === UNAVAILABLE /* UNKNOWN state is allowed */
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,6 @@ import { computeStateName } from "../../../common/entity/compute_state_name";
|
|||||||
import "../../../components/ha-select";
|
import "../../../components/ha-select";
|
||||||
import { UNAVAILABLE } from "../../../data/entity";
|
import { UNAVAILABLE } from "../../../data/entity";
|
||||||
import { forwardHaptic } from "../../../data/haptics";
|
import { forwardHaptic } from "../../../data/haptics";
|
||||||
import type { InputSelectEntity } from "../../../data/input_select";
|
|
||||||
import type { SelectEntity } from "../../../data/select";
|
import type { SelectEntity } from "../../../data/select";
|
||||||
import { setSelectOption } from "../../../data/select";
|
import { setSelectOption } from "../../../data/select";
|
||||||
import type { HomeAssistant } from "../../../types";
|
import type { HomeAssistant } from "../../../types";
|
||||||
@ -61,6 +60,7 @@ class HuiSelectEntityRow extends LitElement implements LovelaceRow {
|
|||||||
<ha-select
|
<ha-select
|
||||||
.label=${this._config.name || computeStateName(stateObj)}
|
.label=${this._config.name || computeStateName(stateObj)}
|
||||||
.value=${stateObj.state}
|
.value=${stateObj.state}
|
||||||
|
.options=${stateObj.attributes.options}
|
||||||
.disabled=${stateObj.state === UNAVAILABLE}
|
.disabled=${stateObj.state === UNAVAILABLE}
|
||||||
naturalMenuWidth
|
naturalMenuWidth
|
||||||
@action=${this._handleAction}
|
@action=${this._handleAction}
|
||||||
@ -93,9 +93,7 @@ class HuiSelectEntityRow extends LitElement implements LovelaceRow {
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
private _handleAction(ev): void {
|
private _handleAction(ev): void {
|
||||||
const stateObj = this.hass!.states[
|
const stateObj = this.hass!.states[this._config!.entity] as SelectEntity;
|
||||||
this._config!.entity
|
|
||||||
] as InputSelectEntity;
|
|
||||||
|
|
||||||
const option = ev.target.value;
|
const option = ev.target.value;
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import "@material/mwc-list/mwc-list-item";
|
import "@material/mwc-list/mwc-list-item";
|
||||||
import "../components/ha-select";
|
import "../components/ha-select";
|
||||||
import type { TemplateResult, PropertyValues } from "lit";
|
import type { TemplateResult } from "lit";
|
||||||
import { css, html, LitElement } from "lit";
|
import { css, html, LitElement } from "lit";
|
||||||
import { customElement, property, query } from "lit/decorators";
|
import { customElement, property } from "lit/decorators";
|
||||||
import { stopPropagation } from "../common/dom/stop_propagation";
|
import { stopPropagation } from "../common/dom/stop_propagation";
|
||||||
import { computeStateName } from "../common/entity/compute_state_name";
|
import { computeStateName } from "../common/entity/compute_state_name";
|
||||||
import "../components/entity/state-badge";
|
import "../components/entity/state-badge";
|
||||||
@ -10,7 +10,6 @@ import { UNAVAILABLE } from "../data/entity";
|
|||||||
import type { InputSelectEntity } from "../data/input_select";
|
import type { InputSelectEntity } from "../data/input_select";
|
||||||
import { setInputSelectOption } from "../data/input_select";
|
import { setInputSelectOption } from "../data/input_select";
|
||||||
import type { HomeAssistant } from "../types";
|
import type { HomeAssistant } from "../types";
|
||||||
import type { HaSelect } from "../components/ha-select";
|
|
||||||
|
|
||||||
@customElement("state-card-input_select")
|
@customElement("state-card-input_select")
|
||||||
class StateCardInputSelect extends LitElement {
|
class StateCardInputSelect extends LitElement {
|
||||||
@ -18,27 +17,13 @@ class StateCardInputSelect extends LitElement {
|
|||||||
|
|
||||||
@property({ attribute: false }) public stateObj!: InputSelectEntity;
|
@property({ attribute: false }) public stateObj!: InputSelectEntity;
|
||||||
|
|
||||||
@query("ha-select", true) private _haSelect!: HaSelect;
|
|
||||||
|
|
||||||
protected updated(changedProps: PropertyValues) {
|
|
||||||
super.updated(changedProps);
|
|
||||||
if (changedProps.has("stateObj")) {
|
|
||||||
const oldState = changedProps.get("stateObj");
|
|
||||||
if (
|
|
||||||
oldState &&
|
|
||||||
this.stateObj.attributes.options !== oldState.attributes.options
|
|
||||||
) {
|
|
||||||
this._haSelect.layoutOptions();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected render(): TemplateResult {
|
protected render(): TemplateResult {
|
||||||
return html`
|
return html`
|
||||||
<state-badge .hass=${this.hass} .stateObj=${this.stateObj}></state-badge>
|
<state-badge .hass=${this.hass} .stateObj=${this.stateObj}></state-badge>
|
||||||
<ha-select
|
<ha-select
|
||||||
.label=${computeStateName(this.stateObj)}
|
.label=${computeStateName(this.stateObj)}
|
||||||
.value=${this.stateObj.state}
|
.value=${this.stateObj.state}
|
||||||
|
.options=${this.stateObj.attributes.options}
|
||||||
.disabled=${
|
.disabled=${
|
||||||
this.stateObj.state === UNAVAILABLE /* UNKNOWN state is allowed */
|
this.stateObj.state === UNAVAILABLE /* UNKNOWN state is allowed */
|
||||||
}
|
}
|
||||||
|
@ -23,6 +23,7 @@ class StateCardSelect extends LitElement {
|
|||||||
<ha-select
|
<ha-select
|
||||||
.value=${this.stateObj.state}
|
.value=${this.stateObj.state}
|
||||||
.label=${computeStateName(this.stateObj)}
|
.label=${computeStateName(this.stateObj)}
|
||||||
|
.options=${this.stateObj.attributes.options}
|
||||||
.disabled=${this.stateObj.state === UNAVAILABLE}
|
.disabled=${this.stateObj.state === UNAVAILABLE}
|
||||||
naturalMenuWidth
|
naturalMenuWidth
|
||||||
fixedMenuPosition
|
fixedMenuPosition
|
||||||
|
Loading…
x
Reference in New Issue
Block a user