mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-28 11:46:42 +00:00
Use generic picker for statistic picker (#25484)
This commit is contained in:
parent
20a7b3870c
commit
da7d359696
@ -1,481 +0,0 @@
|
|||||||
import { mdiChartLine, mdiHelpCircle, mdiShape } from "@mdi/js";
|
|
||||||
import type { ComboBoxLitRenderer } from "@vaadin/combo-box/lit";
|
|
||||||
import Fuse from "fuse.js";
|
|
||||||
import type { HassEntity } from "home-assistant-js-websocket";
|
|
||||||
import type { PropertyValues, TemplateResult } from "lit";
|
|
||||||
import { html, LitElement, nothing } from "lit";
|
|
||||||
import { customElement, property, query, state } from "lit/decorators";
|
|
||||||
import memoizeOne from "memoize-one";
|
|
||||||
import { ensureArray } from "../../common/array/ensure-array";
|
|
||||||
import { fireEvent } from "../../common/dom/fire_event";
|
|
||||||
import { computeAreaName } from "../../common/entity/compute_area_name";
|
|
||||||
import { computeDeviceName } from "../../common/entity/compute_device_name";
|
|
||||||
import { computeEntityName } from "../../common/entity/compute_entity_name";
|
|
||||||
import { computeStateName } from "../../common/entity/compute_state_name";
|
|
||||||
import { getEntityContext } from "../../common/entity/context/get_entity_context";
|
|
||||||
import { caseInsensitiveStringCompare } from "../../common/string/compare";
|
|
||||||
import { computeRTL } from "../../common/util/compute_rtl";
|
|
||||||
import { domainToName } from "../../data/integration";
|
|
||||||
import type { StatisticsMetaData } from "../../data/recorder";
|
|
||||||
import { getStatisticIds, getStatisticLabel } from "../../data/recorder";
|
|
||||||
import { HaFuse } from "../../resources/fuse";
|
|
||||||
import type { HomeAssistant, ValueChangedEvent } from "../../types";
|
|
||||||
import "../ha-combo-box";
|
|
||||||
import type { HaComboBox } from "../ha-combo-box";
|
|
||||||
import "../ha-combo-box-item";
|
|
||||||
import "../ha-svg-icon";
|
|
||||||
import "./state-badge";
|
|
||||||
import { documentationUrl } from "../../util/documentation-url";
|
|
||||||
|
|
||||||
type StatisticItemType = "entity" | "external" | "no_state";
|
|
||||||
|
|
||||||
interface StatisticItem {
|
|
||||||
// Force empty label to always display empty value by default in the search field
|
|
||||||
id: string;
|
|
||||||
statistic_id?: string;
|
|
||||||
label: "";
|
|
||||||
primary: string;
|
|
||||||
secondary?: string;
|
|
||||||
search_labels?: string[];
|
|
||||||
sorting_label?: string;
|
|
||||||
icon_path?: string;
|
|
||||||
type?: StatisticItemType;
|
|
||||||
stateObj?: HassEntity;
|
|
||||||
}
|
|
||||||
|
|
||||||
const MISSING_ID = "___missing-entity___";
|
|
||||||
|
|
||||||
const TYPE_ORDER = ["entity", "external", "no_state"] as StatisticItemType[];
|
|
||||||
|
|
||||||
@customElement("ha-statistic-combo-box")
|
|
||||||
export class HaStatisticComboBox extends LitElement {
|
|
||||||
@property({ attribute: false }) public hass!: HomeAssistant;
|
|
||||||
|
|
||||||
@property() public label?: string;
|
|
||||||
|
|
||||||
@property() public value?: string;
|
|
||||||
|
|
||||||
@property({ attribute: "statistic-types" })
|
|
||||||
public statisticTypes?: "mean" | "sum";
|
|
||||||
|
|
||||||
@property({ type: Boolean, attribute: "allow-custom-entity" })
|
|
||||||
public allowCustomEntity;
|
|
||||||
|
|
||||||
@property({ attribute: false, type: Array })
|
|
||||||
public statisticIds?: StatisticsMetaData[];
|
|
||||||
|
|
||||||
@property({ type: Boolean }) public disabled = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Show only statistics natively stored with these units of measurements.
|
|
||||||
* @type {Array}
|
|
||||||
* @attr include-statistics-unit-of-measurement
|
|
||||||
*/
|
|
||||||
@property({
|
|
||||||
type: Array,
|
|
||||||
attribute: "include-statistics-unit-of-measurement",
|
|
||||||
})
|
|
||||||
public includeStatisticsUnitOfMeasurement?: string | string[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Show only statistics with these unit classes.
|
|
||||||
* @attr include-unit-class
|
|
||||||
*/
|
|
||||||
@property({ attribute: "include-unit-class" })
|
|
||||||
public includeUnitClass?: string | string[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Show only statistics with these device classes.
|
|
||||||
* @attr include-device-class
|
|
||||||
*/
|
|
||||||
@property({ attribute: "include-device-class" })
|
|
||||||
public includeDeviceClass?: string | string[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Show only statistics on entities.
|
|
||||||
* @type {Boolean}
|
|
||||||
* @attr entities-only
|
|
||||||
*/
|
|
||||||
@property({ type: Boolean, attribute: "entities-only" })
|
|
||||||
public entitiesOnly = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* List of statistics to be excluded.
|
|
||||||
* @type {Array}
|
|
||||||
* @attr exclude-statistics
|
|
||||||
*/
|
|
||||||
@property({ type: Array, attribute: "exclude-statistics" })
|
|
||||||
public excludeStatistics?: string[];
|
|
||||||
|
|
||||||
@property({ attribute: false }) public helpMissingEntityUrl =
|
|
||||||
"/more-info/statistics/";
|
|
||||||
|
|
||||||
@state() private _opened = false;
|
|
||||||
|
|
||||||
@query("ha-combo-box", true) public comboBox!: HaComboBox;
|
|
||||||
|
|
||||||
private _initialItems = false;
|
|
||||||
|
|
||||||
private _items: StatisticItem[] = [];
|
|
||||||
|
|
||||||
protected firstUpdated(changedProperties: PropertyValues): void {
|
|
||||||
super.firstUpdated(changedProperties);
|
|
||||||
this.hass.loadBackendTranslation("title");
|
|
||||||
}
|
|
||||||
|
|
||||||
private _rowRenderer: ComboBoxLitRenderer<StatisticItem> = (
|
|
||||||
item,
|
|
||||||
{ index }
|
|
||||||
) => {
|
|
||||||
const showEntityId = this.hass.userData?.showEntityIdPicker;
|
|
||||||
return html`
|
|
||||||
<ha-combo-box-item type="button" compact .borderTop=${index !== 0}>
|
|
||||||
${item.icon_path
|
|
||||||
? html`
|
|
||||||
<ha-svg-icon
|
|
||||||
style="margin: 0 4px"
|
|
||||||
slot="start"
|
|
||||||
.path=${item.icon_path}
|
|
||||||
></ha-svg-icon>
|
|
||||||
`
|
|
||||||
: item.stateObj
|
|
||||||
? html`
|
|
||||||
<state-badge
|
|
||||||
slot="start"
|
|
||||||
.stateObj=${item.stateObj}
|
|
||||||
.hass=${this.hass}
|
|
||||||
></state-badge>
|
|
||||||
`
|
|
||||||
: nothing}
|
|
||||||
<span slot="headline">${item.primary} </span>
|
|
||||||
${item.secondary
|
|
||||||
? html`<span slot="supporting-text">${item.secondary}</span>`
|
|
||||||
: nothing}
|
|
||||||
${item.id && showEntityId
|
|
||||||
? html`<span slot="supporting-text" class="code">
|
|
||||||
${item.statistic_id}
|
|
||||||
</span>`
|
|
||||||
: nothing}
|
|
||||||
</ha-combo-box-item>
|
|
||||||
`;
|
|
||||||
};
|
|
||||||
|
|
||||||
private _getItems = memoizeOne(
|
|
||||||
(
|
|
||||||
_opened: boolean,
|
|
||||||
hass: this["hass"],
|
|
||||||
statisticIds: StatisticsMetaData[],
|
|
||||||
includeStatisticsUnitOfMeasurement?: string | string[],
|
|
||||||
includeUnitClass?: string | string[],
|
|
||||||
includeDeviceClass?: string | string[],
|
|
||||||
entitiesOnly?: boolean,
|
|
||||||
excludeStatistics?: string[],
|
|
||||||
value?: string
|
|
||||||
): StatisticItem[] => {
|
|
||||||
if (!statisticIds.length) {
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
id: "",
|
|
||||||
label: "",
|
|
||||||
primary: this.hass.localize(
|
|
||||||
"ui.components.statistic-picker.no_statistics"
|
|
||||||
),
|
|
||||||
},
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (includeStatisticsUnitOfMeasurement) {
|
|
||||||
const includeUnits: (string | null)[] = ensureArray(
|
|
||||||
includeStatisticsUnitOfMeasurement
|
|
||||||
);
|
|
||||||
statisticIds = statisticIds.filter((meta) =>
|
|
||||||
includeUnits.includes(meta.statistics_unit_of_measurement)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
if (includeUnitClass) {
|
|
||||||
const includeUnitClasses: (string | null)[] =
|
|
||||||
ensureArray(includeUnitClass);
|
|
||||||
statisticIds = statisticIds.filter((meta) =>
|
|
||||||
includeUnitClasses.includes(meta.unit_class)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
if (includeDeviceClass) {
|
|
||||||
const includeDeviceClasses: (string | null)[] =
|
|
||||||
ensureArray(includeDeviceClass);
|
|
||||||
statisticIds = statisticIds.filter((meta) => {
|
|
||||||
const stateObj = this.hass.states[meta.statistic_id];
|
|
||||||
if (!stateObj) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return includeDeviceClasses.includes(
|
|
||||||
stateObj.attributes.device_class || ""
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const isRTL = computeRTL(this.hass);
|
|
||||||
|
|
||||||
const output: StatisticItem[] = [];
|
|
||||||
statisticIds.forEach((meta) => {
|
|
||||||
if (
|
|
||||||
excludeStatistics &&
|
|
||||||
meta.statistic_id !== value &&
|
|
||||||
excludeStatistics.includes(meta.statistic_id)
|
|
||||||
) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const stateObj = this.hass.states[meta.statistic_id];
|
|
||||||
|
|
||||||
if (!stateObj) {
|
|
||||||
if (!entitiesOnly) {
|
|
||||||
const id = meta.statistic_id;
|
|
||||||
const label = getStatisticLabel(this.hass, meta.statistic_id, meta);
|
|
||||||
const type =
|
|
||||||
meta.statistic_id.includes(":") &&
|
|
||||||
!meta.statistic_id.includes(".")
|
|
||||||
? "external"
|
|
||||||
: "no_state";
|
|
||||||
|
|
||||||
if (type === "no_state") {
|
|
||||||
output.push({
|
|
||||||
id,
|
|
||||||
primary: label,
|
|
||||||
secondary: this.hass.localize(
|
|
||||||
"ui.components.statistic-picker.no_state"
|
|
||||||
),
|
|
||||||
label: "",
|
|
||||||
type,
|
|
||||||
sorting_label: label,
|
|
||||||
search_labels: [label, id],
|
|
||||||
icon_path: mdiShape,
|
|
||||||
});
|
|
||||||
} else if (type === "external") {
|
|
||||||
const domain = id.split(":")[0];
|
|
||||||
const domainName = domainToName(this.hass.localize, domain);
|
|
||||||
output.push({
|
|
||||||
id,
|
|
||||||
statistic_id: id,
|
|
||||||
primary: label,
|
|
||||||
secondary: domainName,
|
|
||||||
label: "",
|
|
||||||
type,
|
|
||||||
sorting_label: label,
|
|
||||||
search_labels: [label, domainName, id],
|
|
||||||
icon_path: mdiChartLine,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const id = meta.statistic_id;
|
|
||||||
|
|
||||||
const { area, device } = getEntityContext(stateObj, hass);
|
|
||||||
|
|
||||||
const friendlyName = computeStateName(stateObj); // Keep this for search
|
|
||||||
const entityName = computeEntityName(stateObj, hass);
|
|
||||||
const deviceName = device ? computeDeviceName(device) : undefined;
|
|
||||||
const areaName = area ? computeAreaName(area) : undefined;
|
|
||||||
|
|
||||||
const primary = entityName || deviceName || id;
|
|
||||||
const secondary = [areaName, entityName ? deviceName : undefined]
|
|
||||||
.filter(Boolean)
|
|
||||||
.join(isRTL ? " ◂ " : " ▸ ");
|
|
||||||
|
|
||||||
output.push({
|
|
||||||
id,
|
|
||||||
statistic_id: id,
|
|
||||||
label: "",
|
|
||||||
primary,
|
|
||||||
secondary,
|
|
||||||
stateObj: stateObj,
|
|
||||||
type: "entity",
|
|
||||||
sorting_label: [deviceName, entityName].join("_"),
|
|
||||||
search_labels: [
|
|
||||||
entityName,
|
|
||||||
deviceName,
|
|
||||||
areaName,
|
|
||||||
friendlyName,
|
|
||||||
id,
|
|
||||||
].filter(Boolean) as string[],
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!output.length) {
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
id: "",
|
|
||||||
primary: this.hass.localize(
|
|
||||||
"ui.components.statistic-picker.no_match"
|
|
||||||
),
|
|
||||||
label: "",
|
|
||||||
},
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (output.length > 1) {
|
|
||||||
output.sort((a, b) => {
|
|
||||||
const aPrefix = TYPE_ORDER.indexOf(a.type || "no_state");
|
|
||||||
const bPrefix = TYPE_ORDER.indexOf(b.type || "no_state");
|
|
||||||
|
|
||||||
return caseInsensitiveStringCompare(
|
|
||||||
`${aPrefix}_${a.sorting_label || ""}`,
|
|
||||||
`${bPrefix}_${b.sorting_label || ""}`,
|
|
||||||
this.hass.locale.language
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
output.push({
|
|
||||||
id: MISSING_ID,
|
|
||||||
primary: this.hass.localize(
|
|
||||||
"ui.components.statistic-picker.missing_entity"
|
|
||||||
),
|
|
||||||
label: "",
|
|
||||||
icon_path: mdiHelpCircle,
|
|
||||||
});
|
|
||||||
|
|
||||||
return output;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
public async open() {
|
|
||||||
await this.updateComplete;
|
|
||||||
await this.comboBox?.open();
|
|
||||||
}
|
|
||||||
|
|
||||||
public async focus() {
|
|
||||||
await this.updateComplete;
|
|
||||||
await this.comboBox?.focus();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected shouldUpdate(changedProps: PropertyValues) {
|
|
||||||
if (
|
|
||||||
changedProps.has("value") ||
|
|
||||||
changedProps.has("label") ||
|
|
||||||
changedProps.has("disabled")
|
|
||||||
) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return !(!changedProps.has("_opened") && this._opened);
|
|
||||||
}
|
|
||||||
|
|
||||||
public willUpdate(changedProps: PropertyValues) {
|
|
||||||
if (
|
|
||||||
(!this.hasUpdated && !this.statisticIds) ||
|
|
||||||
changedProps.has("statisticTypes")
|
|
||||||
) {
|
|
||||||
this._getStatisticIds();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
|
||||||
this.statisticIds &&
|
|
||||||
(!this._initialItems || (changedProps.has("_opened") && this._opened))
|
|
||||||
) {
|
|
||||||
this._items = this._getItems(
|
|
||||||
this._opened,
|
|
||||||
this.hass,
|
|
||||||
this.statisticIds!,
|
|
||||||
this.includeStatisticsUnitOfMeasurement,
|
|
||||||
this.includeUnitClass,
|
|
||||||
this.includeDeviceClass,
|
|
||||||
this.entitiesOnly,
|
|
||||||
this.excludeStatistics,
|
|
||||||
this.value
|
|
||||||
);
|
|
||||||
if (this._initialItems) {
|
|
||||||
this.comboBox.filteredItems = this._items;
|
|
||||||
}
|
|
||||||
this._initialItems = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected render(): TemplateResult | typeof nothing {
|
|
||||||
if (this._items.length === 0) {
|
|
||||||
return nothing;
|
|
||||||
}
|
|
||||||
|
|
||||||
return html`
|
|
||||||
<ha-combo-box
|
|
||||||
item-id-path="id"
|
|
||||||
item-value-path="id"
|
|
||||||
item-label-path="label"
|
|
||||||
.hass=${this.hass}
|
|
||||||
.label=${this.label === undefined && this.hass
|
|
||||||
? this.hass.localize("ui.components.statistic-picker.statistic")
|
|
||||||
: this.label}
|
|
||||||
.value=${this._value}
|
|
||||||
.renderer=${this._rowRenderer}
|
|
||||||
.disabled=${this.disabled}
|
|
||||||
.allowCustomValue=${this.allowCustomEntity}
|
|
||||||
.filteredItems=${this._items}
|
|
||||||
@opened-changed=${this._openedChanged}
|
|
||||||
@value-changed=${this._statisticChanged}
|
|
||||||
@filter-changed=${this._filterChanged}
|
|
||||||
></ha-combo-box>
|
|
||||||
`;
|
|
||||||
}
|
|
||||||
|
|
||||||
private async _getStatisticIds() {
|
|
||||||
this.statisticIds = await getStatisticIds(this.hass, this.statisticTypes);
|
|
||||||
}
|
|
||||||
|
|
||||||
private get _value() {
|
|
||||||
return this.value || "";
|
|
||||||
}
|
|
||||||
|
|
||||||
private _statisticChanged(ev: ValueChangedEvent<string>) {
|
|
||||||
ev.stopPropagation();
|
|
||||||
let newValue = ev.detail.value;
|
|
||||||
if (newValue === MISSING_ID) {
|
|
||||||
newValue = "";
|
|
||||||
window.open(
|
|
||||||
documentationUrl(this.hass, this.helpMissingEntityUrl),
|
|
||||||
"_blank"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (newValue !== this._value) {
|
|
||||||
this._setValue(newValue);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private _openedChanged(ev: ValueChangedEvent<boolean>) {
|
|
||||||
this._opened = ev.detail.value;
|
|
||||||
}
|
|
||||||
|
|
||||||
private _fuseIndex = memoizeOne((states: StatisticItem[]) =>
|
|
||||||
Fuse.createIndex(["search_labels"], states)
|
|
||||||
);
|
|
||||||
|
|
||||||
private _filterChanged(ev: CustomEvent): void {
|
|
||||||
if (!this._opened) return;
|
|
||||||
|
|
||||||
const target = ev.target as HaComboBox;
|
|
||||||
const filterString = ev.detail.value.trim().toLowerCase() as string;
|
|
||||||
|
|
||||||
const index = this._fuseIndex(this._items);
|
|
||||||
const fuse = new HaFuse(this._items, {}, index);
|
|
||||||
|
|
||||||
const results = fuse.multiTermsSearch(filterString);
|
|
||||||
|
|
||||||
if (results) {
|
|
||||||
target.filteredItems = results.map((result) => result.item);
|
|
||||||
} else {
|
|
||||||
target.filteredItems = this._items;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private _setValue(value: string) {
|
|
||||||
this.value = value;
|
|
||||||
setTimeout(() => {
|
|
||||||
fireEvent(this, "value-changed", { value });
|
|
||||||
fireEvent(this, "change");
|
|
||||||
}, 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
declare global {
|
|
||||||
interface HTMLElementTagNameMap {
|
|
||||||
"ha-statistic-combo-box": HaStatisticComboBox;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,45 +1,45 @@
|
|||||||
import { mdiChartLine, mdiClose, mdiMenuDown, mdiShape } from "@mdi/js";
|
import { mdiChartLine, mdiHelpCircle, mdiShape } from "@mdi/js";
|
||||||
import type { ComboBoxLightOpenedChangedEvent } from "@vaadin/combo-box/vaadin-combo-box-light";
|
import type { ComboBoxLitRenderer } from "@vaadin/combo-box/lit";
|
||||||
import type { HassEntity } from "home-assistant-js-websocket";
|
import type { HassEntity } from "home-assistant-js-websocket";
|
||||||
import {
|
import { html, LitElement, nothing, type PropertyValues } from "lit";
|
||||||
css,
|
import { customElement, property, query } from "lit/decorators";
|
||||||
html,
|
|
||||||
LitElement,
|
|
||||||
nothing,
|
|
||||||
type CSSResultGroup,
|
|
||||||
type PropertyValues,
|
|
||||||
} from "lit";
|
|
||||||
import { customElement, property, query, state } from "lit/decorators";
|
|
||||||
import memoizeOne from "memoize-one";
|
import memoizeOne from "memoize-one";
|
||||||
|
import { ensureArray } from "../../common/array/ensure-array";
|
||||||
import { fireEvent } from "../../common/dom/fire_event";
|
import { fireEvent } from "../../common/dom/fire_event";
|
||||||
import { stopPropagation } from "../../common/dom/stop_propagation";
|
|
||||||
import { computeAreaName } from "../../common/entity/compute_area_name";
|
import { computeAreaName } from "../../common/entity/compute_area_name";
|
||||||
import { computeDeviceName } from "../../common/entity/compute_device_name";
|
import { computeDeviceName } from "../../common/entity/compute_device_name";
|
||||||
import { computeEntityName } from "../../common/entity/compute_entity_name";
|
import { computeEntityName } from "../../common/entity/compute_entity_name";
|
||||||
|
import { computeStateName } from "../../common/entity/compute_state_name";
|
||||||
import { getEntityContext } from "../../common/entity/context/get_entity_context";
|
import { getEntityContext } from "../../common/entity/context/get_entity_context";
|
||||||
import { computeRTL } from "../../common/util/compute_rtl";
|
import { computeRTL } from "../../common/util/compute_rtl";
|
||||||
import { debounce } from "../../common/util/debounce";
|
|
||||||
import { domainToName } from "../../data/integration";
|
import { domainToName } from "../../data/integration";
|
||||||
import {
|
import {
|
||||||
getStatisticIds,
|
getStatisticIds,
|
||||||
getStatisticLabel,
|
getStatisticLabel,
|
||||||
type StatisticsMetaData,
|
type StatisticsMetaData,
|
||||||
} from "../../data/recorder";
|
} from "../../data/recorder";
|
||||||
import type { HomeAssistant } from "../../types";
|
import type { HomeAssistant, ValueChangedEvent } from "../../types";
|
||||||
|
import { documentationUrl } from "../../util/documentation-url";
|
||||||
import "../ha-combo-box-item";
|
import "../ha-combo-box-item";
|
||||||
|
import "../ha-generic-picker";
|
||||||
|
import type { HaGenericPicker } from "../ha-generic-picker";
|
||||||
import "../ha-icon-button";
|
import "../ha-icon-button";
|
||||||
import "../ha-input-helper-text";
|
import "../ha-input-helper-text";
|
||||||
import type { HaMdListItem } from "../ha-md-list-item";
|
import type { PickerComboBoxItem } from "../ha-picker-combo-box";
|
||||||
|
import type { PickerValueRenderer } from "../ha-picker-field";
|
||||||
import "../ha-svg-icon";
|
import "../ha-svg-icon";
|
||||||
import "./ha-statistic-combo-box";
|
|
||||||
import type { HaStatisticComboBox } from "./ha-statistic-combo-box";
|
|
||||||
import "./state-badge";
|
import "./state-badge";
|
||||||
|
|
||||||
interface StatisticItem {
|
const TYPE_ORDER = ["entity", "external", "no_state"] as StatisticItemType[];
|
||||||
primary: string;
|
|
||||||
secondary?: string;
|
const MISSING_ID = "___missing-entity___";
|
||||||
iconPath?: string;
|
|
||||||
|
type StatisticItemType = "entity" | "external" | "no_state";
|
||||||
|
|
||||||
|
interface StatisticComboBoxItem extends PickerComboBoxItem {
|
||||||
|
statistic_id?: string;
|
||||||
stateObj?: HassEntity;
|
stateObj?: HassEntity;
|
||||||
|
type?: StatisticItemType;
|
||||||
}
|
}
|
||||||
|
|
||||||
@customElement("ha-statistic-picker")
|
@customElement("ha-statistic-picker")
|
||||||
@ -70,6 +70,9 @@ export class HaStatisticPicker extends LitElement {
|
|||||||
@property({ attribute: false, type: Array })
|
@property({ attribute: false, type: Array })
|
||||||
public statisticIds?: StatisticsMetaData[];
|
public statisticIds?: StatisticsMetaData[];
|
||||||
|
|
||||||
|
@property({ attribute: false }) public helpMissingEntityUrl =
|
||||||
|
"/more-info/statistics/";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Show only statistics natively stored with these units of measurements.
|
* Show only statistics natively stored with these units of measurements.
|
||||||
* @type {Array}
|
* @type {Array}
|
||||||
@ -114,11 +117,7 @@ export class HaStatisticPicker extends LitElement {
|
|||||||
@property({ attribute: "hide-clear-icon", type: Boolean })
|
@property({ attribute: "hide-clear-icon", type: Boolean })
|
||||||
public hideClearIcon = false;
|
public hideClearIcon = false;
|
||||||
|
|
||||||
@query("#anchor") private _anchor?: HaMdListItem;
|
@query("ha-generic-picker") private _picker?: HaGenericPicker;
|
||||||
|
|
||||||
@query("#input") private _input?: HaStatisticComboBox;
|
|
||||||
|
|
||||||
@state() private _opened = false;
|
|
||||||
|
|
||||||
public willUpdate(changedProps: PropertyValues) {
|
public willUpdate(changedProps: PropertyValues) {
|
||||||
if (
|
if (
|
||||||
@ -133,6 +132,165 @@ export class HaStatisticPicker extends LitElement {
|
|||||||
this.statisticIds = await getStatisticIds(this.hass, this.statisticTypes);
|
this.statisticIds = await getStatisticIds(this.hass, this.statisticTypes);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private _getItems = () =>
|
||||||
|
this._getStatisticsItems(
|
||||||
|
this.hass,
|
||||||
|
this.statisticIds,
|
||||||
|
this.includeStatisticsUnitOfMeasurement,
|
||||||
|
this.includeUnitClass,
|
||||||
|
this.includeDeviceClass,
|
||||||
|
this.entitiesOnly,
|
||||||
|
this.excludeStatistics,
|
||||||
|
this.value
|
||||||
|
);
|
||||||
|
|
||||||
|
private _getAdditionalItems(): StatisticComboBoxItem[] {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
id: MISSING_ID,
|
||||||
|
primary: this.hass.localize(
|
||||||
|
"ui.components.statistic-picker.missing_entity"
|
||||||
|
),
|
||||||
|
icon_path: mdiHelpCircle,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
private _getStatisticsItems = memoizeOne(
|
||||||
|
(
|
||||||
|
hass: HomeAssistant,
|
||||||
|
statisticIds?: StatisticsMetaData[],
|
||||||
|
includeStatisticsUnitOfMeasurement?: string | string[],
|
||||||
|
includeUnitClass?: string | string[],
|
||||||
|
includeDeviceClass?: string | string[],
|
||||||
|
entitiesOnly?: boolean,
|
||||||
|
excludeStatistics?: string[],
|
||||||
|
value?: string
|
||||||
|
): StatisticComboBoxItem[] => {
|
||||||
|
if (!statisticIds) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (includeStatisticsUnitOfMeasurement) {
|
||||||
|
const includeUnits: (string | null)[] = ensureArray(
|
||||||
|
includeStatisticsUnitOfMeasurement
|
||||||
|
);
|
||||||
|
statisticIds = statisticIds.filter((meta) =>
|
||||||
|
includeUnits.includes(meta.statistics_unit_of_measurement)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (includeUnitClass) {
|
||||||
|
const includeUnitClasses: (string | null)[] =
|
||||||
|
ensureArray(includeUnitClass);
|
||||||
|
statisticIds = statisticIds.filter((meta) =>
|
||||||
|
includeUnitClasses.includes(meta.unit_class)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (includeDeviceClass) {
|
||||||
|
const includeDeviceClasses: (string | null)[] =
|
||||||
|
ensureArray(includeDeviceClass);
|
||||||
|
statisticIds = statisticIds.filter((meta) => {
|
||||||
|
const stateObj = this.hass.states[meta.statistic_id];
|
||||||
|
if (!stateObj) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return includeDeviceClasses.includes(
|
||||||
|
stateObj.attributes.device_class || ""
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const isRTL = computeRTL(this.hass);
|
||||||
|
|
||||||
|
const output: StatisticComboBoxItem[] = [];
|
||||||
|
|
||||||
|
statisticIds.forEach((meta) => {
|
||||||
|
if (
|
||||||
|
excludeStatistics &&
|
||||||
|
meta.statistic_id !== value &&
|
||||||
|
excludeStatistics.includes(meta.statistic_id)
|
||||||
|
) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const stateObj = this.hass.states[meta.statistic_id];
|
||||||
|
|
||||||
|
if (!stateObj) {
|
||||||
|
if (!entitiesOnly) {
|
||||||
|
const id = meta.statistic_id;
|
||||||
|
const label = getStatisticLabel(this.hass, meta.statistic_id, meta);
|
||||||
|
const type =
|
||||||
|
meta.statistic_id.includes(":") &&
|
||||||
|
!meta.statistic_id.includes(".")
|
||||||
|
? "external"
|
||||||
|
: "no_state";
|
||||||
|
|
||||||
|
const sortingPrefix = `${TYPE_ORDER.indexOf(type)}`;
|
||||||
|
if (type === "no_state") {
|
||||||
|
output.push({
|
||||||
|
id,
|
||||||
|
primary: label,
|
||||||
|
secondary: this.hass.localize(
|
||||||
|
"ui.components.statistic-picker.no_state"
|
||||||
|
),
|
||||||
|
type,
|
||||||
|
sorting_label: [sortingPrefix, label].join("_"),
|
||||||
|
search_labels: [label, id],
|
||||||
|
icon_path: mdiShape,
|
||||||
|
});
|
||||||
|
} else if (type === "external") {
|
||||||
|
const domain = id.split(":")[0];
|
||||||
|
const domainName = domainToName(this.hass.localize, domain);
|
||||||
|
output.push({
|
||||||
|
id,
|
||||||
|
statistic_id: id,
|
||||||
|
primary: label,
|
||||||
|
secondary: domainName,
|
||||||
|
type,
|
||||||
|
sorting_label: [sortingPrefix, label].join("_"),
|
||||||
|
search_labels: [label, domainName, id],
|
||||||
|
icon_path: mdiChartLine,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const id = meta.statistic_id;
|
||||||
|
|
||||||
|
const { area, device } = getEntityContext(stateObj, hass);
|
||||||
|
|
||||||
|
const friendlyName = computeStateName(stateObj); // Keep this for search
|
||||||
|
const entityName = computeEntityName(stateObj, hass);
|
||||||
|
const deviceName = device ? computeDeviceName(device) : undefined;
|
||||||
|
const areaName = area ? computeAreaName(area) : undefined;
|
||||||
|
|
||||||
|
const primary = entityName || deviceName || id;
|
||||||
|
const secondary = [areaName, entityName ? deviceName : undefined]
|
||||||
|
.filter(Boolean)
|
||||||
|
.join(isRTL ? " ◂ " : " ▸ ");
|
||||||
|
|
||||||
|
const sortingPrefix = `${TYPE_ORDER.indexOf("entity")}`;
|
||||||
|
output.push({
|
||||||
|
id,
|
||||||
|
statistic_id: id,
|
||||||
|
primary,
|
||||||
|
secondary,
|
||||||
|
stateObj: stateObj,
|
||||||
|
type: "entity",
|
||||||
|
sorting_label: [sortingPrefix, deviceName, entityName].join("_"),
|
||||||
|
search_labels: [
|
||||||
|
entityName,
|
||||||
|
deviceName,
|
||||||
|
areaName,
|
||||||
|
friendlyName,
|
||||||
|
id,
|
||||||
|
].filter(Boolean) as string[],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
private _statisticMetaData = memoizeOne(
|
private _statisticMetaData = memoizeOne(
|
||||||
(statisticId: string, statisticIds: StatisticsMetaData[]) => {
|
(statisticId: string, statisticIds: StatisticsMetaData[]) => {
|
||||||
if (!statisticIds) {
|
if (!statisticIds) {
|
||||||
@ -144,26 +302,11 @@ export class HaStatisticPicker extends LitElement {
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
private _renderContent() {
|
private _valueRenderer: PickerValueRenderer = (value) => {
|
||||||
const statisticId = this.value || "";
|
const statisticId = value;
|
||||||
|
|
||||||
if (!this.value) {
|
|
||||||
return html`
|
|
||||||
<span slot="headline" class="placeholder"
|
|
||||||
>${this.placeholder ??
|
|
||||||
this.hass.localize(
|
|
||||||
"ui.components.statistic-picker.placeholder"
|
|
||||||
)}</span
|
|
||||||
>
|
|
||||||
<ha-svg-icon class="edit" slot="end" .path=${mdiMenuDown}></ha-svg-icon>
|
|
||||||
`;
|
|
||||||
}
|
|
||||||
|
|
||||||
const item = this._computeItem(statisticId);
|
const item = this._computeItem(statisticId);
|
||||||
|
|
||||||
const showClearIcon =
|
|
||||||
!this.required && !this.disabled && !this.hideClearIcon;
|
|
||||||
|
|
||||||
return html`
|
return html`
|
||||||
${item.stateObj
|
${item.stateObj
|
||||||
? html`
|
? html`
|
||||||
@ -173,29 +316,19 @@ export class HaStatisticPicker extends LitElement {
|
|||||||
slot="start"
|
slot="start"
|
||||||
></state-badge>
|
></state-badge>
|
||||||
`
|
`
|
||||||
: item.iconPath
|
: item.icon_path
|
||||||
? html`<ha-svg-icon
|
? html`
|
||||||
slot="start"
|
<ha-svg-icon slot="start" .path=${item.icon_path}></ha-svg-icon>
|
||||||
.path=${item.iconPath}
|
`
|
||||||
></ha-svg-icon>`
|
|
||||||
: nothing}
|
: nothing}
|
||||||
<span slot="headline">${item.primary}</span>
|
<span slot="headline">${item.primary}</span>
|
||||||
${item.secondary
|
${item.secondary
|
||||||
? html`<span slot="supporting-text">${item.secondary}</span>`
|
? html`<span slot="supporting-text">${item.secondary}</span>`
|
||||||
: nothing}
|
: nothing}
|
||||||
${showClearIcon
|
|
||||||
? html`<ha-icon-button
|
|
||||||
class="clear"
|
|
||||||
slot="end"
|
|
||||||
@click=${this._clear}
|
|
||||||
.path=${mdiClose}
|
|
||||||
></ha-icon-button>`
|
|
||||||
: nothing}
|
|
||||||
<ha-svg-icon class="edit" slot="end" .path=${mdiMenuDown}></ha-svg-icon>
|
|
||||||
`;
|
`;
|
||||||
}
|
};
|
||||||
|
|
||||||
private _computeItem(statisticId: string): StatisticItem {
|
private _computeItem(statisticId: string): StatisticComboBoxItem {
|
||||||
const stateObj = this.hass.states[statisticId];
|
const stateObj = this.hass.states[statisticId];
|
||||||
|
|
||||||
if (stateObj) {
|
if (stateObj) {
|
||||||
@ -211,11 +344,24 @@ export class HaStatisticPicker extends LitElement {
|
|||||||
const secondary = [areaName, entityName ? deviceName : undefined]
|
const secondary = [areaName, entityName ? deviceName : undefined]
|
||||||
.filter(Boolean)
|
.filter(Boolean)
|
||||||
.join(isRTL ? " ◂ " : " ▸ ");
|
.join(isRTL ? " ◂ " : " ▸ ");
|
||||||
|
const friendlyName = computeStateName(stateObj); // Keep this for search
|
||||||
|
|
||||||
|
const sortingPrefix = `${TYPE_ORDER.indexOf("entity")}`;
|
||||||
return {
|
return {
|
||||||
|
id: statisticId,
|
||||||
|
statistic_id: statisticId,
|
||||||
primary,
|
primary,
|
||||||
secondary,
|
secondary,
|
||||||
stateObj,
|
stateObj: stateObj,
|
||||||
|
type: "entity",
|
||||||
|
sorting_label: [sortingPrefix, deviceName, entityName].join("_"),
|
||||||
|
search_labels: [
|
||||||
|
entityName,
|
||||||
|
deviceName,
|
||||||
|
areaName,
|
||||||
|
friendlyName,
|
||||||
|
statisticId,
|
||||||
|
].filter(Boolean) as string[],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -230,175 +376,124 @@ export class HaStatisticPicker extends LitElement {
|
|||||||
: "no_state";
|
: "no_state";
|
||||||
|
|
||||||
if (type === "external") {
|
if (type === "external") {
|
||||||
|
const sortingPrefix = `${TYPE_ORDER.indexOf("external")}`;
|
||||||
const label = getStatisticLabel(this.hass, statisticId, statistic);
|
const label = getStatisticLabel(this.hass, statisticId, statistic);
|
||||||
const domain = statisticId.split(":")[0];
|
const domain = statisticId.split(":")[0];
|
||||||
const domainName = domainToName(this.hass.localize, domain);
|
const domainName = domainToName(this.hass.localize, domain);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
id: statisticId,
|
||||||
|
statistic_id: statisticId,
|
||||||
primary: label,
|
primary: label,
|
||||||
secondary: domainName,
|
secondary: domainName,
|
||||||
iconPath: mdiChartLine,
|
type: "external",
|
||||||
|
sorting_label: [sortingPrefix, label].join("_"),
|
||||||
|
search_labels: [label, domainName, statisticId],
|
||||||
|
icon_path: mdiChartLine,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const sortingPrefix = `${TYPE_ORDER.indexOf("external")}`;
|
||||||
|
const label = getStatisticLabel(this.hass, statisticId, statistic);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
primary: statisticId,
|
id: statisticId,
|
||||||
iconPath: mdiShape,
|
primary: label,
|
||||||
|
secondary: this.hass.localize("ui.components.statistic-picker.no_state"),
|
||||||
|
type: "no_state",
|
||||||
|
sorting_label: [sortingPrefix, label].join("_"),
|
||||||
|
search_labels: [label, statisticId],
|
||||||
|
icon_path: mdiShape,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
protected render() {
|
private _rowRenderer: ComboBoxLitRenderer<StatisticComboBoxItem> = (
|
||||||
|
item,
|
||||||
|
{ index }
|
||||||
|
) => {
|
||||||
|
const showEntityId = this.hass.userData?.showEntityIdPicker;
|
||||||
return html`
|
return html`
|
||||||
${this.label ? html`<label>${this.label}</label>` : nothing}
|
<ha-combo-box-item type="button" compact .borderTop=${index !== 0}>
|
||||||
<div class="container">
|
${item.icon_path
|
||||||
${!this._opened
|
|
||||||
? html`
|
? html`
|
||||||
<ha-combo-box-item
|
<ha-svg-icon
|
||||||
.disabled=${this.disabled}
|
style="margin: 0 4px"
|
||||||
id="anchor"
|
slot="start"
|
||||||
type="button"
|
.path=${item.icon_path}
|
||||||
compact
|
></ha-svg-icon>
|
||||||
@click=${this._showPicker}
|
|
||||||
>
|
|
||||||
${this._renderContent()}
|
|
||||||
</ha-combo-box-item>
|
|
||||||
`
|
`
|
||||||
: html`
|
: item.stateObj
|
||||||
<ha-statistic-combo-box
|
? html`
|
||||||
id="input"
|
<state-badge
|
||||||
.hass=${this.hass}
|
slot="start"
|
||||||
.autofocus=${this.autofocus}
|
.stateObj=${item.stateObj}
|
||||||
.allowCustomEntity=${this.allowCustomEntity}
|
.hass=${this.hass}
|
||||||
.label=${this.hass.localize("ui.common.search")}
|
></state-badge>
|
||||||
.value=${this.value}
|
`
|
||||||
.includeStatisticsUnitOfMeasurement=${this
|
: nothing}
|
||||||
.includeStatisticsUnitOfMeasurement}
|
<span slot="headline">${item.primary} </span>
|
||||||
.includeUnitClass=${this.includeUnitClass}
|
${item.secondary || item.type
|
||||||
.includeDeviceClass=${this.includeDeviceClass}
|
? html`<span slot="supporting-text"
|
||||||
.statisticTypes=${this.statisticTypes}
|
>${item.secondary} - ${item.type}</span
|
||||||
.statisticIds=${this.statisticIds}
|
>`
|
||||||
.excludeStatistics=${this.excludeStatistics}
|
: nothing}
|
||||||
hide-clear-icon
|
${item.statistic_id && showEntityId
|
||||||
@opened-changed=${this._debounceOpenedChanged}
|
? html`<span slot="supporting-text" class="code">
|
||||||
@input=${stopPropagation}
|
${item.statistic_id}
|
||||||
></ha-statistic-combo-box>
|
</span>`
|
||||||
`}
|
: nothing}
|
||||||
${this._renderHelper()}
|
</ha-combo-box-item>
|
||||||
</div>
|
`;
|
||||||
|
};
|
||||||
|
|
||||||
|
protected render() {
|
||||||
|
const placeholder =
|
||||||
|
this.placeholder ??
|
||||||
|
this.hass.localize("ui.components.statistic-picker.placeholder");
|
||||||
|
const notFoundLabel = this.hass.localize(
|
||||||
|
"ui.components.statistic-picker.no_match"
|
||||||
|
);
|
||||||
|
|
||||||
|
return html`
|
||||||
|
<ha-generic-picker
|
||||||
|
.hass=${this.hass}
|
||||||
|
.autofocus=${this.autofocus}
|
||||||
|
.allowCustomValue=${this.allowCustomEntity}
|
||||||
|
.label=${this.label}
|
||||||
|
.notFoundLabel=${notFoundLabel}
|
||||||
|
.placeholder=${placeholder}
|
||||||
|
.value=${this.value}
|
||||||
|
.rowRenderer=${this._rowRenderer}
|
||||||
|
.getItems=${this._getItems}
|
||||||
|
.getAdditionalItems=${this._getAdditionalItems}
|
||||||
|
.hideClearIcon=${this.hideClearIcon}
|
||||||
|
.valueRenderer=${this._valueRenderer}
|
||||||
|
@value-changed=${this._valueChanged}
|
||||||
|
>
|
||||||
|
</ha-generic-picker>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
private _renderHelper() {
|
private _valueChanged(ev: ValueChangedEvent<string>) {
|
||||||
return this.helper
|
ev.stopPropagation();
|
||||||
? html`<ha-input-helper-text>${this.helper}</ha-input-helper-text>`
|
const value = ev.detail.value;
|
||||||
: nothing;
|
|
||||||
}
|
|
||||||
|
|
||||||
private _clear(e) {
|
if (value === MISSING_ID) {
|
||||||
e.stopPropagation();
|
window.open(
|
||||||
this.value = undefined;
|
documentationUrl(this.hass, this.helpMissingEntityUrl),
|
||||||
fireEvent(this, "value-changed", { value: undefined });
|
"_blank"
|
||||||
fireEvent(this, "change");
|
);
|
||||||
}
|
|
||||||
|
|
||||||
private async _showPicker() {
|
|
||||||
if (this.disabled) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this._opened = true;
|
|
||||||
|
this.value = value;
|
||||||
|
fireEvent(this, "value-changed", { value });
|
||||||
|
}
|
||||||
|
|
||||||
|
public async open() {
|
||||||
await this.updateComplete;
|
await this.updateComplete;
|
||||||
this._input?.focus();
|
await this._picker?.open();
|
||||||
this._input?.open();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Multiple calls to _openedChanged can be triggered in quick succession
|
|
||||||
// when the menu is opened
|
|
||||||
private _debounceOpenedChanged = debounce(
|
|
||||||
(ev) => this._openedChanged(ev),
|
|
||||||
10
|
|
||||||
);
|
|
||||||
|
|
||||||
private async _openedChanged(ev: ComboBoxLightOpenedChangedEvent) {
|
|
||||||
const opened = ev.detail.value;
|
|
||||||
if (this._opened && !opened) {
|
|
||||||
this._opened = false;
|
|
||||||
await this.updateComplete;
|
|
||||||
this._anchor?.focus();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static get styles(): CSSResultGroup {
|
|
||||||
return [
|
|
||||||
css`
|
|
||||||
.container {
|
|
||||||
position: relative;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
ha-combo-box-item {
|
|
||||||
background-color: var(--mdc-text-field-fill-color, whitesmoke);
|
|
||||||
border-radius: 4px;
|
|
||||||
border-end-end-radius: 0;
|
|
||||||
border-end-start-radius: 0;
|
|
||||||
--md-list-item-one-line-container-height: 56px;
|
|
||||||
--md-list-item-two-line-container-height: 56px;
|
|
||||||
--md-list-item-top-space: 8px;
|
|
||||||
--md-list-item-bottom-space: 8px;
|
|
||||||
--md-list-item-leading-space: 8px;
|
|
||||||
--md-list-item-trailing-space: 8px;
|
|
||||||
--ha-md-list-item-gap: 8px;
|
|
||||||
/* Remove the default focus ring */
|
|
||||||
--md-focus-ring-width: 0px;
|
|
||||||
--md-focus-ring-duration: 0s;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Add Similar focus style as the text field */
|
|
||||||
ha-combo-box-item:after {
|
|
||||||
display: block;
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
pointer-events: none;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
height: 1px;
|
|
||||||
width: 100%;
|
|
||||||
background-color: var(
|
|
||||||
--mdc-text-field-idle-line-color,
|
|
||||||
rgba(0, 0, 0, 0.42)
|
|
||||||
);
|
|
||||||
transform:
|
|
||||||
height 180ms ease-in-out,
|
|
||||||
background-color 180ms ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
ha-combo-box-item:focus:after {
|
|
||||||
height: 2px;
|
|
||||||
background-color: var(--mdc-theme-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
ha-combo-box-item ha-svg-icon[slot="start"] {
|
|
||||||
margin: 0 4px;
|
|
||||||
}
|
|
||||||
.clear {
|
|
||||||
margin: 0 -8px;
|
|
||||||
--mdc-icon-button-size: 32px;
|
|
||||||
--mdc-icon-size: 20px;
|
|
||||||
}
|
|
||||||
.edit {
|
|
||||||
--mdc-icon-size: 20px;
|
|
||||||
width: 32px;
|
|
||||||
}
|
|
||||||
label {
|
|
||||||
display: block;
|
|
||||||
margin: 0 0 8px;
|
|
||||||
}
|
|
||||||
.placeholder {
|
|
||||||
color: var(--secondary-text-color);
|
|
||||||
padding: 0 8px;
|
|
||||||
}
|
|
||||||
`,
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user