feat: add homeassistant integration (#578)

This commit is contained in:
Manuel
2024-06-10 21:16:39 +02:00
committed by GitHub
parent 19498854fc
commit 2e782ae442
28 changed files with 468 additions and 31 deletions

View File

@@ -0,0 +1,55 @@
import React from "react";
import { ActionIcon, Center, LoadingOverlay, Overlay, Stack, Text, UnstyledButton } from "@mantine/core";
import { useDisclosure, useTimeout } from "@mantine/hooks";
import { IconAutomation, IconCheck } from "@tabler/icons-react";
import { clientApi } from "@homarr/api/client";
import type { WidgetComponentProps } from "../../definition";
export default function SmartHomeTriggerAutomationWidget({
options,
integrationIds,
isEditMode,
}: WidgetComponentProps<"smartHome-executeAutomation">) {
const [isShowSuccess, { open: showSuccess, close: closeSuccess }] = useDisclosure();
const { start } = useTimeout(() => {
closeSuccess();
}, 1000);
const { mutateAsync, isPending } = clientApi.widget.smartHome.executeAutomation.useMutation({
onSuccess: () => {
showSuccess();
start();
},
});
const handleClick = React.useCallback(async () => {
if (isEditMode) {
return;
}
await mutateAsync({
automationId: options.automationId,
integrationId: integrationIds[0] ?? "",
});
}, [isEditMode]);
return (
<UnstyledButton onClick={handleClick} style={{ cursor: !isEditMode ? "pointer" : "initial" }} w="100%" h="100%">
{isShowSuccess && (
<Overlay>
<Center w="100%" h="100%">
<ActionIcon variant="filled" color="green" size="xl" radius="xl">
<IconCheck style={{ width: "70%", height: "70%" }} stroke={1.5} />
</ActionIcon>
</Center>
</Overlay>
)}
<LoadingOverlay visible={isPending} zIndex={1000} overlayProps={{ radius: "sm", blur: 2 }} />
<Center w="100%" h="100%">
<Stack align="center" gap="md">
<IconAutomation />
<Text fw="bold">{options.displayName}</Text>
</Stack>
</Center>
</UnstyledButton>
);
}

View File

@@ -0,0 +1,13 @@
import { IconBinaryTree } from "@tabler/icons-react";
import { createWidgetDefinition } from "../../definition";
import { optionsBuilder } from "../../options";
export const { definition, componentLoader } = createWidgetDefinition("smartHome-executeAutomation", {
icon: IconBinaryTree,
options: optionsBuilder.from((factory) => ({
displayName: factory.text(),
automationId: factory.text(),
})),
supportedIntegrations: ["homeAssistant"],
}).withDynamicImport(() => import("./component"));