2024-12-24 15:07:39 +08:00

175 lines
5.6 KiB
TypeScript

import { WorkflowNode, WorkflowNodeConfig } from "@/domain/workflow";
import { zodResolver } from "@hookform/resolvers/zod";
import { useForm } from "react-hook-form";
import { z } from "zod";
import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from "../ui/form";
import { Select, SelectContent, SelectGroup, SelectItem, SelectTrigger } from "../ui/select";
import { Input } from "../ui/input";
import { useWorkflowStore } from "@/stores/workflow";
import { useZustandShallowSelector } from "@/hooks";
import { usePanel } from "./PanelProvider";
import { useTranslation } from "react-i18next";
import { Button } from "../ui/button";
import { useNotifyChannelStore } from "@/stores/notify";
import { useEffect, useState } from "react";
import { notifyChannelsMap } from "@/domain/settings";
import { SelectValue } from "@radix-ui/react-select";
import { Textarea } from "../ui/textarea";
import { RefreshCw, Settings } from "lucide-react";
type NotifyFormProps = {
data: WorkflowNode;
};
type ChannelName = {
key: string;
label: string;
};
const i18nPrefix = "workflow.node.notify.form";
const NotifyForm = ({ data }: NotifyFormProps) => {
const { updateNode } = useWorkflowStore(useZustandShallowSelector(["updateNode"]));
const { hidePanel } = usePanel();
const { t } = useTranslation();
const { channels: supportedChannels, fetchChannels } = useNotifyChannelStore();
const [channels, setChannels] = useState<ChannelName[]>([]);
useEffect(() => {
fetchChannels();
}, [fetchChannels]);
useEffect(() => {
const rs: ChannelName[] = [];
for (const channel of notifyChannelsMap.values()) {
if (supportedChannels[channel.type]?.enabled) {
rs.push({ key: channel.type, label: channel.name });
}
}
setChannels(rs);
}, [supportedChannels]);
const formSchema = z.object({
channel: z.string(),
title: z.string().min(1),
content: z.string().min(1),
});
let config: WorkflowNodeConfig = {
channel: "",
title: "",
content: "",
};
if (data) config = data.config ?? config;
const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema),
defaultValues: {
channel: config.channel as string,
title: config.title as string,
content: config.content as string,
},
});
const onSubmit = (config: z.infer<typeof formSchema>) => {
updateNode({ ...data, config, validated: true });
hidePanel();
};
return (
<>
<Form {...form}>
<form
onSubmit={(e) => {
e.stopPropagation();
form.handleSubmit(onSubmit)(e);
}}
className="space-y-8 dark:text-stone-200"
>
<FormField
control={form.control}
name="channel"
render={({ field }) => (
<FormItem>
<FormLabel className="flex justify-between items-center">
<div className="flex space-x-2 items-center">
<div>{t(`${i18nPrefix}.channel.label`)}</div>
<RefreshCw size={16} className="cursor-pointer" onClick={() => fetchChannels()} />
</div>
<a
href="#/settings/notification"
target="_blank"
className="flex justify-between items-center space-x-1 font-normal text-primary hover:underline cursor-pointer"
>
<Settings size={16} /> <div>{t(`${i18nPrefix}.settingChannel.label`)}</div>
</a>
</FormLabel>
<FormControl>
<Select
{...field}
value={field.value}
onValueChange={(value) => {
form.setValue("channel", value);
}}
>
<SelectTrigger>
<SelectValue placeholder={t(`${i18nPrefix}.channel.placeholder`)} />
</SelectTrigger>
<SelectContent>
<SelectGroup>
{channels.map((item) => (
<SelectItem key={item.key} value={item.key}>
<div>{t(item.label)}</div>
</SelectItem>
))}
</SelectGroup>
</SelectContent>
</Select>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="title"
render={({ field }) => (
<FormItem>
<FormLabel>{t(`${i18nPrefix}.title.label`)}</FormLabel>
<FormControl>
<Input placeholder={t(`${i18nPrefix}.title.placeholder`)} {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="content"
render={({ field }) => (
<FormItem>
<FormLabel>{t(`${i18nPrefix}.content.label`)}</FormLabel>
<FormControl>
<Textarea placeholder={t(`${i18nPrefix}.content.placeholder`)} {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<div className="flex justify-end">
<Button type="submit">{t("common.button.save")}</Button>
</div>
</form>
</Form>
</>
);
};
export default NotifyForm;