mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-05 09:00:11 +00:00
* Fix filtering on device in entities config panel * fix * set filters from url twice to catch race...
229 lines
6.2 KiB
TypeScript
229 lines
6.2 KiB
TypeScript
import type { SelectedDetail } from "@material/mwc-list";
|
|
import { mdiFilterVariantRemove } from "@mdi/js";
|
|
import type { CSSResultGroup, PropertyValues } from "lit";
|
|
import { css, html, LitElement, nothing } from "lit";
|
|
import { customElement, property, state } from "lit/decorators";
|
|
import { fireEvent } from "../common/dom/fire_event";
|
|
import type { Blueprints } from "../data/blueprint";
|
|
import { fetchBlueprints } from "../data/blueprint";
|
|
import type { RelatedResult } from "../data/search";
|
|
import { findRelated } from "../data/search";
|
|
import { haStyleScrollbar } from "../resources/styles";
|
|
import type { HomeAssistant } from "../types";
|
|
import "./ha-check-list-item";
|
|
import "./ha-expansion-panel";
|
|
import "./ha-icon-button";
|
|
import "./ha-list";
|
|
import { deepEqual } from "../common/util/deep-equal";
|
|
|
|
@customElement("ha-filter-blueprints")
|
|
export class HaFilterBlueprints extends LitElement {
|
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
|
|
|
@property({ attribute: false }) public value?: string[];
|
|
|
|
@property() public type?: "automation" | "script";
|
|
|
|
@property({ type: Boolean }) public narrow = false;
|
|
|
|
@property({ type: Boolean, reflect: true }) public expanded = false;
|
|
|
|
@state() private _shouldRender = false;
|
|
|
|
@state() private _blueprints?: Blueprints;
|
|
|
|
public willUpdate(properties: PropertyValues) {
|
|
super.willUpdate(properties);
|
|
|
|
if (
|
|
properties.has("value") &&
|
|
!deepEqual(this.value, properties.get("value"))
|
|
) {
|
|
this._findRelated();
|
|
}
|
|
}
|
|
|
|
protected render() {
|
|
return html`
|
|
<ha-expansion-panel
|
|
left-chevron
|
|
.expanded=${this.expanded}
|
|
@expanded-will-change=${this._expandedWillChange}
|
|
@expanded-changed=${this._expandedChanged}
|
|
>
|
|
<div slot="header" class="header">
|
|
${this.hass.localize("ui.panel.config.blueprint.caption")}
|
|
${this.value?.length
|
|
? html`<div class="badge">${this.value?.length}</div>
|
|
<ha-icon-button
|
|
.path=${mdiFilterVariantRemove}
|
|
@click=${this._clearFilter}
|
|
></ha-icon-button>`
|
|
: nothing}
|
|
</div>
|
|
${this._blueprints && this._shouldRender
|
|
? html`
|
|
<ha-list
|
|
@selected=${this._blueprintsSelected}
|
|
multi
|
|
class="ha-scrollbar"
|
|
>
|
|
${Object.entries(this._blueprints).map(([id, blueprint]) =>
|
|
"error" in blueprint
|
|
? nothing
|
|
: html`<ha-check-list-item
|
|
.value=${id}
|
|
.selected=${(this.value || []).includes(id)}
|
|
>
|
|
${blueprint.metadata.name || id}
|
|
</ha-check-list-item>`
|
|
)}
|
|
</ha-list>
|
|
`
|
|
: nothing}
|
|
</ha-expansion-panel>
|
|
`;
|
|
}
|
|
|
|
protected async firstUpdated() {
|
|
if (!this.type) {
|
|
return;
|
|
}
|
|
this._blueprints = await fetchBlueprints(this.hass, this.type);
|
|
}
|
|
|
|
protected updated(changed) {
|
|
if (changed.has("expanded") && this.expanded) {
|
|
setTimeout(() => {
|
|
if (this.narrow || !this.expanded) return;
|
|
this.renderRoot.querySelector("ha-list")!.style.height =
|
|
`${this.clientHeight - 49}px`;
|
|
}, 300);
|
|
}
|
|
}
|
|
|
|
private _expandedWillChange(ev) {
|
|
this._shouldRender = ev.detail.expanded;
|
|
}
|
|
|
|
private _expandedChanged(ev) {
|
|
this.expanded = ev.detail.expanded;
|
|
}
|
|
|
|
private async _blueprintsSelected(
|
|
ev: CustomEvent<SelectedDetail<Set<number>>>
|
|
) {
|
|
const blueprints = this._blueprints!;
|
|
|
|
if (!ev.detail.index.size) {
|
|
fireEvent(this, "data-table-filter-changed", {
|
|
value: [],
|
|
items: undefined,
|
|
});
|
|
this.value = [];
|
|
return;
|
|
}
|
|
|
|
const value: string[] = [];
|
|
|
|
for (const index of ev.detail.index) {
|
|
const blueprintId = Object.keys(blueprints)[index];
|
|
value.push(blueprintId);
|
|
}
|
|
|
|
this.value = value;
|
|
}
|
|
|
|
private async _findRelated() {
|
|
if (!this.value?.length) {
|
|
this.value = [];
|
|
fireEvent(this, "data-table-filter-changed", {
|
|
value: [],
|
|
items: undefined,
|
|
});
|
|
return;
|
|
}
|
|
|
|
const relatedPromises: Promise<RelatedResult>[] = [];
|
|
|
|
for (const blueprintId of this.value) {
|
|
if (this.type) {
|
|
relatedPromises.push(
|
|
findRelated(this.hass, `${this.type}_blueprint`, blueprintId)
|
|
);
|
|
}
|
|
}
|
|
|
|
const results = await Promise.all(relatedPromises);
|
|
const items = new Set<string>();
|
|
for (const result of results) {
|
|
if (result[this.type!]) {
|
|
result[this.type!]!.forEach((item) => items.add(item));
|
|
}
|
|
}
|
|
|
|
fireEvent(this, "data-table-filter-changed", {
|
|
value: this.value,
|
|
items: this.type ? items : undefined,
|
|
});
|
|
}
|
|
|
|
private _clearFilter(ev) {
|
|
ev.preventDefault();
|
|
this.value = undefined;
|
|
fireEvent(this, "data-table-filter-changed", {
|
|
value: undefined,
|
|
items: undefined,
|
|
});
|
|
}
|
|
|
|
static get styles(): CSSResultGroup {
|
|
return [
|
|
haStyleScrollbar,
|
|
css`
|
|
:host {
|
|
border-bottom: 1px solid var(--divider-color);
|
|
}
|
|
:host([expanded]) {
|
|
flex: 1;
|
|
height: 0;
|
|
}
|
|
ha-expansion-panel {
|
|
--ha-card-border-radius: 0;
|
|
--expansion-panel-content-padding: 0;
|
|
}
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.header ha-icon-button {
|
|
margin-inline-start: auto;
|
|
margin-inline-end: 8px;
|
|
}
|
|
.badge {
|
|
display: inline-block;
|
|
margin-left: 8px;
|
|
margin-inline-start: 8px;
|
|
margin-inline-end: 0;
|
|
min-width: 16px;
|
|
box-sizing: border-box;
|
|
border-radius: 50%;
|
|
font-size: var(--ha-font-size-xs);
|
|
font-weight: var(--ha-font-weight-normal);
|
|
background-color: var(--primary-color);
|
|
line-height: var(--ha-line-height-normal);
|
|
text-align: center;
|
|
padding: 0px 2px;
|
|
color: var(--text-primary-color);
|
|
}
|
|
`,
|
|
];
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"ha-filter-blueprints": HaFilterBlueprints;
|
|
}
|
|
}
|