diff --git a/src/panels/config/automation/trigger/types/ha-automation-trigger-sun.ts b/src/panels/config/automation/trigger/types/ha-automation-trigger-sun.ts
index b996cbdcbf..a6efcf9d95 100644
--- a/src/panels/config/automation/trigger/types/ha-automation-trigger-sun.ts
+++ b/src/panels/config/automation/trigger/types/ha-automation-trigger-sun.ts
@@ -1,16 +1,12 @@
-import "@polymer/paper-input/paper-input";
-import { css, html, LitElement } from "lit";
+import { html, LitElement } from "lit";
import { customElement, property } from "lit/decorators";
+import memoizeOne from "memoize-one";
import { fireEvent } from "../../../../../common/dom/fire_event";
-import "../../../../../components/ha-radio";
-import "../../../../../components/ha-formfield";
-import type { HaRadio } from "../../../../../components/ha-radio";
import type { SunTrigger } from "../../../../../data/automation";
import type { HomeAssistant } from "../../../../../types";
-import {
- handleChangeEvent,
- TriggerElement,
-} from "../ha-automation-trigger-row";
+import type { TriggerElement } from "../ha-automation-trigger-row";
+import type { HaFormSchema } from "../../../../../components/ha-form/types";
+import type { LocalizeFunc } from "../../../../../common/translations/localize";
@customElement("ha-automation-trigger-sun")
export class HaSunTrigger extends LitElement implements TriggerElement {
@@ -18,6 +14,29 @@ export class HaSunTrigger extends LitElement implements TriggerElement {
@property({ attribute: false }) public trigger!: SunTrigger;
+ private _schema = memoizeOne((localize: LocalizeFunc) => [
+ {
+ name: "event",
+ type: "select",
+ required: true,
+ options: [
+ [
+ "sunrise",
+ localize(
+ "ui.panel.config.automation.editor.triggers.type.sun.sunrise"
+ ),
+ ],
+ [
+ "sunset",
+ localize(
+ "ui.panel.config.automation.editor.triggers.type.sun.sunset"
+ ),
+ ],
+ ],
+ },
+ { name: "offset", selector: { text: {} } },
+ ]);
+
public static get defaultConfig() {
return {
event: "sunrise" as SunTrigger["event"],
@@ -26,69 +45,27 @@ export class HaSunTrigger extends LitElement implements TriggerElement {
}
protected render() {
- const { offset, event } = this.trigger;
return html`
-
-
-
+ >
`;
}
private _valueChanged(ev: CustomEvent): void {
- handleChangeEvent(this, ev);
- }
-
- private _radioGroupPicked(ev) {
ev.stopPropagation();
- fireEvent(this, "value-changed", {
- value: {
- ...this.trigger,
- event: (ev.target as HaRadio).value,
- },
- });
+ const newTrigger = ev.detail.value;
+ fireEvent(this, "value-changed", { value: newTrigger });
}
- static styles = css`
- label {
- display: flex;
- align-items: center;
- }
- `;
+ private _computeLabelCallback = (schema: HaFormSchema): string =>
+ this.hass.localize(
+ `ui.panel.config.automation.editor.triggers.type.sun.${schema.name}`
+ );
}
declare global {