mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-09 02:49:51 +00:00
66 lines
1.9 KiB
TypeScript
66 lines
1.9 KiB
TypeScript
import { css, html, LitElement, nothing } from "lit";
|
|
import { customElement, property, query } from "lit/decorators";
|
|
import type { Condition } from "../../data/automation";
|
|
import type { ConditionSelector } from "../../data/selector";
|
|
import "../../panels/config/automation/condition/ha-automation-condition";
|
|
import type HaAutomationCondition from "../../panels/config/automation/condition/ha-automation-condition";
|
|
import type { HomeAssistant } from "../../types";
|
|
|
|
@customElement("ha-selector-condition")
|
|
export class HaConditionSelector extends LitElement {
|
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
|
|
|
@property({ type: Boolean }) public narrow = false;
|
|
|
|
@property({ attribute: false }) public selector!: ConditionSelector;
|
|
|
|
@property({ attribute: false }) public value?: Condition;
|
|
|
|
@property() public label?: string;
|
|
|
|
@property({ type: Boolean, reflect: true }) public disabled = false;
|
|
|
|
@query("ha-automation-condition")
|
|
private _conditionElement?: HaAutomationCondition;
|
|
|
|
protected render() {
|
|
return html`
|
|
${this.label ? html`<label>${this.label}</label>` : nothing}
|
|
<ha-automation-condition
|
|
.disabled=${this.disabled}
|
|
.conditions=${this.value || []}
|
|
.hass=${this.hass}
|
|
.narrow=${this.narrow}
|
|
.optionsInSidebar=${!!this.selector.condition?.optionsInSidebar}
|
|
></ha-automation-condition>
|
|
`;
|
|
}
|
|
|
|
public expandAll() {
|
|
this._conditionElement?.expandAll();
|
|
}
|
|
|
|
public collapseAll() {
|
|
this._conditionElement?.collapseAll();
|
|
}
|
|
|
|
static styles = css`
|
|
ha-automation-condition {
|
|
display: block;
|
|
margin-bottom: 16px;
|
|
}
|
|
label {
|
|
display: block;
|
|
margin-bottom: 4px;
|
|
font-weight: var(--ha-font-weight-medium);
|
|
color: var(--secondary-text-color);
|
|
}
|
|
`;
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"ha-selector-condition": HaConditionSelector;
|
|
}
|
|
}
|