Files
frontend/src/components/ha-selector/ha-selector-condition.ts
2025-04-28 16:55:39 +02:00

49 lines
1.4 KiB
TypeScript

import { css, html, LitElement, nothing } from "lit";
import { customElement, property } 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 { HomeAssistant } from "../../types";
@customElement("ha-selector-condition")
export class HaConditionSelector extends LitElement {
@property({ attribute: false }) public hass!: HomeAssistant;
@property({ attribute: false }) public selector!: ConditionSelector;
@property({ attribute: false }) public value?: Condition;
@property() public label?: string;
@property({ type: Boolean, reflect: true }) public disabled = false;
protected render() {
return html`
${this.label ? html`<label>${this.label}</label>` : nothing}
<ha-automation-condition
.disabled=${this.disabled}
.conditions=${this.value || []}
.hass=${this.hass}
></ha-automation-condition>
`;
}
static styles = css`
ha-automation-condition {
display: block;
margin-bottom: 16px;
}
label {
display: block;
margin-bottom: 4px;
font-weight: var(--ha-font-weight-semibold);
}
`;
}
declare global {
interface HTMLElementTagNameMap {
"ha-selector-condition": HaConditionSelector;
}
}