mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-19 10:57:19 +00:00
580 lines
17 KiB
TypeScript
580 lines
17 KiB
TypeScript
import { consume } from "@lit-labs/context";
|
|
import {
|
|
mdiArrowDown,
|
|
mdiArrowUp,
|
|
mdiContentCopy,
|
|
mdiContentCut,
|
|
mdiContentDuplicate,
|
|
mdiDelete,
|
|
mdiDotsVertical,
|
|
mdiFlask,
|
|
mdiPlayCircleOutline,
|
|
mdiPlaylistEdit,
|
|
mdiRenameBox,
|
|
mdiStopCircleOutline,
|
|
} from "@mdi/js";
|
|
import deepClone from "deep-clone-simple";
|
|
import type { CSSResultGroup } from "lit";
|
|
import { LitElement, css, html, nothing } from "lit";
|
|
import { customElement, property, state } from "lit/decorators";
|
|
import { classMap } from "lit/directives/class-map";
|
|
import { storage } from "../../../../common/decorators/storage";
|
|
import { fireEvent } from "../../../../common/dom/fire_event";
|
|
import { stopPropagation } from "../../../../common/dom/stop_propagation";
|
|
import { capitalizeFirstLetter } from "../../../../common/string/capitalize-first-letter";
|
|
import { handleStructError } from "../../../../common/structs/handle-errors";
|
|
import "../../../../components/ha-md-button-menu";
|
|
import "../../../../components/ha-md-menu-item";
|
|
import "../../../../components/ha-md-divider";
|
|
import "../../../../components/ha-card";
|
|
import "../../../../components/ha-expansion-panel";
|
|
import "../../../../components/ha-icon-button";
|
|
import type {
|
|
AutomationClipboard,
|
|
Condition,
|
|
} from "../../../../data/automation";
|
|
import { testCondition } from "../../../../data/automation";
|
|
import { describeCondition } from "../../../../data/automation_i18n";
|
|
import { CONDITION_ICONS } from "../../../../data/condition";
|
|
import { validateConfig } from "../../../../data/config";
|
|
import { fullEntitiesContext } from "../../../../data/context";
|
|
import type { EntityRegistryEntry } from "../../../../data/entity_registry";
|
|
import {
|
|
showAlertDialog,
|
|
showConfirmationDialog,
|
|
showPromptDialog,
|
|
} from "../../../../dialogs/generic/show-dialog-box";
|
|
import { haStyle } from "../../../../resources/styles";
|
|
import type { HomeAssistant } from "../../../../types";
|
|
import "./ha-automation-condition-editor";
|
|
|
|
export interface ConditionElement extends LitElement {
|
|
condition: Condition;
|
|
}
|
|
|
|
const preventDefault = (ev) => ev.preventDefault();
|
|
|
|
export const handleChangeEvent = (
|
|
element: ConditionElement,
|
|
ev: CustomEvent
|
|
) => {
|
|
ev.stopPropagation();
|
|
const name = (ev.currentTarget as any)?.name;
|
|
if (!name) {
|
|
return;
|
|
}
|
|
const newVal = ev.detail?.value || (ev.currentTarget as any)?.value;
|
|
|
|
if ((element.condition[name] || "") === newVal) {
|
|
return;
|
|
}
|
|
|
|
let newCondition: Condition;
|
|
if (!newVal) {
|
|
newCondition = { ...element.condition };
|
|
delete newCondition[name];
|
|
} else {
|
|
newCondition = { ...element.condition, [name]: newVal };
|
|
}
|
|
fireEvent(element, "value-changed", { value: newCondition });
|
|
};
|
|
|
|
@customElement("ha-automation-condition-row")
|
|
export default class HaAutomationConditionRow extends LitElement {
|
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
|
|
|
@property({ attribute: false }) public condition!: Condition;
|
|
|
|
@property({ type: Boolean }) public disabled = false;
|
|
|
|
@property({ type: Boolean }) public first?: boolean;
|
|
|
|
@property({ type: Boolean }) public last?: boolean;
|
|
|
|
@storage({
|
|
key: "automationClipboard",
|
|
state: false,
|
|
subscribe: true,
|
|
storage: "sessionStorage",
|
|
})
|
|
public _clipboard?: AutomationClipboard;
|
|
|
|
@state() private _yamlMode = false;
|
|
|
|
@state() private _warnings?: string[];
|
|
|
|
@state() private _testing = false;
|
|
|
|
@state() private _testingResult?: boolean;
|
|
|
|
@state()
|
|
@consume({ context: fullEntitiesContext, subscribe: true })
|
|
_entityReg!: EntityRegistryEntry[];
|
|
|
|
protected render() {
|
|
if (!this.condition) {
|
|
return nothing;
|
|
}
|
|
|
|
return html`
|
|
<ha-card outlined>
|
|
${this.condition.enabled === false
|
|
? html`
|
|
<div class="disabled-bar">
|
|
${this.hass.localize(
|
|
"ui.panel.config.automation.editor.actions.disabled"
|
|
)}
|
|
</div>
|
|
`
|
|
: ""}
|
|
|
|
<ha-expansion-panel left-chevron>
|
|
<ha-svg-icon
|
|
slot="leading-icon"
|
|
class="condition-icon"
|
|
.path=${CONDITION_ICONS[this.condition.condition]}
|
|
></ha-svg-icon>
|
|
<h3 slot="header">
|
|
${capitalizeFirstLetter(
|
|
describeCondition(this.condition, this.hass, this._entityReg)
|
|
)}
|
|
</h3>
|
|
|
|
<slot name="icons" slot="icons"></slot>
|
|
|
|
<ha-md-button-menu
|
|
slot="icons"
|
|
@click=${preventDefault}
|
|
@keydown=${stopPropagation}
|
|
@closed=${stopPropagation}
|
|
positioning="fixed"
|
|
>
|
|
<ha-icon-button
|
|
slot="trigger"
|
|
.label=${this.hass.localize("ui.common.menu")}
|
|
.path=${mdiDotsVertical}
|
|
>
|
|
</ha-icon-button>
|
|
|
|
<ha-md-menu-item .clickAction=${this._testCondition}>
|
|
${this.hass.localize(
|
|
"ui.panel.config.automation.editor.conditions.test"
|
|
)}
|
|
<ha-svg-icon slot="start" .path=${mdiFlask}></ha-svg-icon>
|
|
</ha-md-menu-item>
|
|
<ha-md-menu-item
|
|
.clickAction=${this._renameCondition}
|
|
.disabled=${this.disabled}
|
|
>
|
|
${this.hass.localize(
|
|
"ui.panel.config.automation.editor.conditions.rename"
|
|
)}
|
|
<ha-svg-icon slot="start" .path=${mdiRenameBox}></ha-svg-icon>
|
|
</ha-md-menu-item>
|
|
|
|
<ha-md-divider role="separator" tabindex="-1"></ha-md-divider>
|
|
|
|
<ha-md-menu-item
|
|
.clickAction=${this._duplicateCondition}
|
|
.disabled=${this.disabled}
|
|
>
|
|
${this.hass.localize(
|
|
"ui.panel.config.automation.editor.actions.duplicate"
|
|
)}
|
|
<ha-svg-icon
|
|
slot="start"
|
|
.path=${mdiContentDuplicate}
|
|
></ha-svg-icon>
|
|
</ha-md-menu-item>
|
|
|
|
<ha-md-menu-item
|
|
.clickAction=${this._copyCondition}
|
|
.disabled=${this.disabled}
|
|
>
|
|
${this.hass.localize(
|
|
"ui.panel.config.automation.editor.triggers.copy"
|
|
)}
|
|
<ha-svg-icon slot="start" .path=${mdiContentCopy}></ha-svg-icon>
|
|
</ha-md-menu-item>
|
|
|
|
<ha-md-menu-item
|
|
.clickAction=${this._cutCondition}
|
|
.disabled=${this.disabled}
|
|
>
|
|
${this.hass.localize(
|
|
"ui.panel.config.automation.editor.triggers.cut"
|
|
)}
|
|
<ha-svg-icon slot="start" .path=${mdiContentCut}></ha-svg-icon>
|
|
</ha-md-menu-item>
|
|
|
|
<ha-md-menu-item
|
|
.clickAction=${this._moveUp}
|
|
.disabled=${this.disabled || this.first}
|
|
>
|
|
${this.hass.localize("ui.panel.config.automation.editor.move_up")}
|
|
<ha-svg-icon slot="start" .path=${mdiArrowUp}></ha-svg-icon
|
|
></ha-md-menu-item>
|
|
|
|
<ha-md-menu-item
|
|
.clickAction=${this._moveDown}
|
|
.disabled=${this.disabled || this.last}
|
|
>
|
|
${this.hass.localize(
|
|
"ui.panel.config.automation.editor.move_down"
|
|
)}
|
|
<ha-svg-icon slot="start" .path=${mdiArrowDown}></ha-svg-icon
|
|
></ha-md-menu-item>
|
|
|
|
<ha-md-menu-item
|
|
.clickAction=${this._toggleYamlMode}
|
|
.disabled=${this._warnings}
|
|
>
|
|
${this.hass.localize(
|
|
`ui.panel.config.automation.editor.edit_${!this._yamlMode ? "yaml" : "ui"}`
|
|
)}
|
|
<ha-svg-icon slot="start" .path=${mdiPlaylistEdit}></ha-svg-icon>
|
|
</ha-md-menu-item>
|
|
|
|
<ha-md-divider role="separator" tabindex="-1"></ha-md-divider>
|
|
|
|
<ha-md-menu-item
|
|
.clickAction=${this._onDisable}
|
|
.disabled=${this.disabled}
|
|
>
|
|
${this.condition.enabled === false
|
|
? this.hass.localize(
|
|
"ui.panel.config.automation.editor.actions.enable"
|
|
)
|
|
: this.hass.localize(
|
|
"ui.panel.config.automation.editor.actions.disable"
|
|
)}
|
|
<ha-svg-icon
|
|
slot="start"
|
|
.path=${this.condition.enabled === false
|
|
? mdiPlayCircleOutline
|
|
: mdiStopCircleOutline}
|
|
></ha-svg-icon>
|
|
</ha-md-menu-item>
|
|
<ha-md-menu-item
|
|
class="warning"
|
|
.clickAction=${this._onDelete}
|
|
.disabled=${this.disabled}
|
|
>
|
|
${this.hass.localize(
|
|
"ui.panel.config.automation.editor.actions.delete"
|
|
)}
|
|
<ha-svg-icon
|
|
class="warning"
|
|
slot="start"
|
|
.path=${mdiDelete}
|
|
></ha-svg-icon>
|
|
</ha-md-menu-item>
|
|
</ha-md-button-menu>
|
|
|
|
<div
|
|
class=${classMap({
|
|
"card-content": true,
|
|
disabled: this.condition.enabled === false,
|
|
})}
|
|
>
|
|
${this._warnings
|
|
? html`<ha-alert
|
|
alert-type="warning"
|
|
.title=${this.hass.localize(
|
|
"ui.errors.config.editor_not_supported"
|
|
)}
|
|
>
|
|
${this._warnings!.length > 0 &&
|
|
this._warnings![0] !== undefined
|
|
? html` <ul>
|
|
${this._warnings!.map(
|
|
(warning) => html`<li>${warning}</li>`
|
|
)}
|
|
</ul>`
|
|
: ""}
|
|
${this.hass.localize(
|
|
"ui.errors.config.edit_in_yaml_supported"
|
|
)}
|
|
</ha-alert>`
|
|
: ""}
|
|
<ha-automation-condition-editor
|
|
@ui-mode-not-available=${this._handleUiModeNotAvailable}
|
|
@value-changed=${this._handleChangeEvent}
|
|
.yamlMode=${this._yamlMode}
|
|
.disabled=${this.disabled}
|
|
.hass=${this.hass}
|
|
.condition=${this.condition}
|
|
></ha-automation-condition-editor>
|
|
</div>
|
|
</ha-expansion-panel>
|
|
<div
|
|
class="testing ${classMap({
|
|
active: this._testing,
|
|
pass: this._testingResult === true,
|
|
error: this._testingResult === false,
|
|
})}"
|
|
>
|
|
${this._testingResult
|
|
? this.hass.localize(
|
|
"ui.panel.config.automation.editor.conditions.testing_pass"
|
|
)
|
|
: this.hass.localize(
|
|
"ui.panel.config.automation.editor.conditions.testing_error"
|
|
)}
|
|
</div>
|
|
</ha-card>
|
|
`;
|
|
}
|
|
|
|
private _handleUiModeNotAvailable(ev: CustomEvent) {
|
|
// Prevent possible parent action-row from switching to yamlMode
|
|
ev.stopPropagation();
|
|
this._warnings = handleStructError(this.hass, ev.detail).warnings;
|
|
if (!this._yamlMode) {
|
|
this._yamlMode = true;
|
|
}
|
|
}
|
|
|
|
private _handleChangeEvent(ev: CustomEvent) {
|
|
if (ev.detail.yaml) {
|
|
this._warnings = undefined;
|
|
}
|
|
}
|
|
|
|
private _setClipboard() {
|
|
this._clipboard = {
|
|
...this._clipboard,
|
|
condition: deepClone(this.condition),
|
|
};
|
|
}
|
|
|
|
private _onDisable = () => {
|
|
const enabled = !(this.condition.enabled ?? true);
|
|
const value = { ...this.condition, enabled };
|
|
fireEvent(this, "value-changed", { value });
|
|
};
|
|
|
|
private _onDelete = () => {
|
|
showConfirmationDialog(this, {
|
|
title: this.hass.localize(
|
|
"ui.panel.config.automation.editor.conditions.delete_confirm_title"
|
|
),
|
|
text: this.hass.localize(
|
|
"ui.panel.config.automation.editor.conditions.delete_confirm_text"
|
|
),
|
|
dismissText: this.hass.localize("ui.common.cancel"),
|
|
confirmText: this.hass.localize("ui.common.delete"),
|
|
destructive: true,
|
|
confirm: () => {
|
|
fireEvent(this, "value-changed", { value: null });
|
|
},
|
|
});
|
|
};
|
|
|
|
private _switchUiMode() {
|
|
this._warnings = undefined;
|
|
this._yamlMode = false;
|
|
}
|
|
|
|
private _switchYamlMode() {
|
|
this._warnings = undefined;
|
|
this._yamlMode = true;
|
|
}
|
|
|
|
private _testCondition = async () => {
|
|
if (this._testing) {
|
|
return;
|
|
}
|
|
this._testingResult = undefined;
|
|
this._testing = true;
|
|
const condition = this.condition;
|
|
|
|
try {
|
|
const validateResult = await validateConfig(this.hass, {
|
|
conditions: condition,
|
|
});
|
|
|
|
// Abort if condition changed.
|
|
if (this.condition !== condition) {
|
|
this._testing = false;
|
|
return;
|
|
}
|
|
|
|
if (!validateResult.conditions.valid) {
|
|
showAlertDialog(this, {
|
|
title: this.hass.localize(
|
|
"ui.panel.config.automation.editor.conditions.invalid_condition"
|
|
),
|
|
text: validateResult.conditions.error,
|
|
});
|
|
this._testing = false;
|
|
return;
|
|
}
|
|
|
|
let result: { result: boolean };
|
|
try {
|
|
result = await testCondition(this.hass, condition);
|
|
} catch (err: any) {
|
|
if (this.condition !== condition) {
|
|
this._testing = false;
|
|
return;
|
|
}
|
|
|
|
showAlertDialog(this, {
|
|
title: this.hass.localize(
|
|
"ui.panel.config.automation.editor.conditions.test_failed"
|
|
),
|
|
text: err.message,
|
|
});
|
|
this._testing = false;
|
|
return;
|
|
}
|
|
|
|
this._testingResult = result.result;
|
|
} finally {
|
|
setTimeout(() => {
|
|
this._testing = false;
|
|
}, 2500);
|
|
}
|
|
};
|
|
|
|
private _renameCondition = async (): Promise<void> => {
|
|
const alias = await showPromptDialog(this, {
|
|
title: this.hass.localize(
|
|
"ui.panel.config.automation.editor.conditions.change_alias"
|
|
),
|
|
inputLabel: this.hass.localize(
|
|
"ui.panel.config.automation.editor.conditions.alias"
|
|
),
|
|
inputType: "string",
|
|
placeholder: capitalizeFirstLetter(
|
|
describeCondition(this.condition, this.hass, this._entityReg, true)
|
|
),
|
|
defaultValue: this.condition.alias,
|
|
confirmText: this.hass.localize("ui.common.submit"),
|
|
});
|
|
if (alias !== null) {
|
|
const value = { ...this.condition };
|
|
if (alias === "") {
|
|
delete value.alias;
|
|
} else {
|
|
value.alias = alias;
|
|
}
|
|
fireEvent(this, "value-changed", {
|
|
value,
|
|
});
|
|
}
|
|
};
|
|
|
|
private _duplicateCondition = () => {
|
|
fireEvent(this, "duplicate");
|
|
};
|
|
|
|
private _copyCondition = () => {
|
|
this._setClipboard();
|
|
};
|
|
|
|
private _cutCondition = () => {
|
|
this._setClipboard();
|
|
fireEvent(this, "value-changed", { value: null });
|
|
};
|
|
|
|
private _moveUp = () => {
|
|
fireEvent(this, "move-up");
|
|
};
|
|
|
|
private _moveDown = () => {
|
|
fireEvent(this, "move-down");
|
|
};
|
|
|
|
private _toggleYamlMode = () => {
|
|
if (this._yamlMode) {
|
|
this._switchUiMode();
|
|
} else {
|
|
this._switchYamlMode();
|
|
}
|
|
this.expand();
|
|
};
|
|
|
|
public expand() {
|
|
this.updateComplete.then(() => {
|
|
this.shadowRoot!.querySelector("ha-expansion-panel")!.expanded = true;
|
|
});
|
|
}
|
|
|
|
static get styles(): CSSResultGroup {
|
|
return [
|
|
haStyle,
|
|
css`
|
|
.disabled {
|
|
opacity: 0.5;
|
|
pointer-events: none;
|
|
}
|
|
ha-expansion-panel {
|
|
--expansion-panel-summary-padding: 0 0 0 8px;
|
|
--expansion-panel-content-padding: 0;
|
|
}
|
|
h3 {
|
|
margin: 0;
|
|
font-size: inherit;
|
|
font-weight: inherit;
|
|
}
|
|
.condition-icon {
|
|
display: none;
|
|
}
|
|
@media (min-width: 870px) {
|
|
.condition-icon {
|
|
display: inline-block;
|
|
color: var(--secondary-text-color);
|
|
opacity: 0.9;
|
|
}
|
|
}
|
|
.card-content {
|
|
padding: 16px;
|
|
}
|
|
.disabled-bar {
|
|
background: var(--divider-color, #e0e0e0);
|
|
text-align: center;
|
|
border-top-right-radius: var(--ha-card-border-radius, 12px);
|
|
border-top-left-radius: var(--ha-card-border-radius, 12px);
|
|
}
|
|
.testing {
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
left: 0px;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
background-color: var(--divider-color, #e0e0e0);
|
|
color: var(--text-primary-color);
|
|
max-height: 0px;
|
|
overflow: hidden;
|
|
transition: max-height 0.3s;
|
|
text-align: center;
|
|
border-top-right-radius: var(--ha-card-border-radius, 12px);
|
|
border-top-left-radius: var(--ha-card-border-radius, 12px);
|
|
}
|
|
.testing.active {
|
|
max-height: 100px;
|
|
}
|
|
.testing.error {
|
|
background-color: var(--accent-color);
|
|
}
|
|
.testing.pass {
|
|
background-color: var(--success-color);
|
|
}
|
|
ha-md-menu-item > ha-svg-icon {
|
|
--mdc-icon-size: 24px;
|
|
}
|
|
`,
|
|
];
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"ha-automation-condition-row": HaAutomationConditionRow;
|
|
}
|
|
}
|