mirror of
https://github.com/home-assistant/frontend.git
synced 2026-04-22 10:32:57 +00:00
77 lines
1.7 KiB
TypeScript
77 lines
1.7 KiB
TypeScript
import {
|
|
mdiAvTimer,
|
|
mdiCalendar,
|
|
mdiClockOutline,
|
|
mdiCodeBraces,
|
|
mdiDevices,
|
|
mdiDotsHorizontal,
|
|
mdiFormatListBulleted,
|
|
mdiGestureDoubleTap,
|
|
mdiMapClock,
|
|
mdiMapMarker,
|
|
mdiMapMarkerRadius,
|
|
mdiMessageAlert,
|
|
mdiMicrophoneMessage,
|
|
mdiNfcVariant,
|
|
mdiNumeric,
|
|
mdiShape,
|
|
mdiStateMachine,
|
|
mdiSwapHorizontal,
|
|
mdiWeatherSunny,
|
|
mdiWebhook,
|
|
} from "@mdi/js";
|
|
|
|
import { mdiHomeAssistant } from "../resources/home-assistant-logo-svg";
|
|
import type {
|
|
AutomationElementGroup,
|
|
Trigger,
|
|
TriggerList,
|
|
} from "./automation";
|
|
|
|
export const TRIGGER_ICONS = {
|
|
calendar: mdiCalendar,
|
|
device: mdiDevices,
|
|
event: mdiGestureDoubleTap,
|
|
state: mdiStateMachine,
|
|
geo_location: mdiMapMarker,
|
|
homeassistant: mdiHomeAssistant,
|
|
mqtt: mdiSwapHorizontal,
|
|
numeric_state: mdiNumeric,
|
|
sun: mdiWeatherSunny,
|
|
conversation: mdiMicrophoneMessage,
|
|
tag: mdiNfcVariant,
|
|
template: mdiCodeBraces,
|
|
time: mdiClockOutline,
|
|
time_pattern: mdiAvTimer,
|
|
webhook: mdiWebhook,
|
|
persistent_notification: mdiMessageAlert,
|
|
zone: mdiMapMarkerRadius,
|
|
list: mdiFormatListBulleted,
|
|
};
|
|
|
|
export const TRIGGER_GROUPS: AutomationElementGroup = {
|
|
device: {},
|
|
entity: { icon: mdiShape, members: { state: {}, numeric_state: {} } },
|
|
time_location: {
|
|
icon: mdiMapClock,
|
|
members: { calendar: {}, sun: {}, time: {}, time_pattern: {}, zone: {} },
|
|
},
|
|
other: {
|
|
icon: mdiDotsHorizontal,
|
|
members: {
|
|
event: {},
|
|
geo_location: {},
|
|
homeassistant: {},
|
|
mqtt: {},
|
|
conversation: {},
|
|
tag: {},
|
|
template: {},
|
|
webhook: {},
|
|
persistent_notification: {},
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const isTriggerList = (trigger: Trigger): trigger is TriggerList =>
|
|
"triggers" in trigger;
|