import { memo, useEffect } from "react"; import { useTranslation } from "react-i18next"; import { Link } from "react-router"; import { RightOutlined as RightOutlinedIcon } from "@ant-design/icons"; import { Button, Form, type FormInstance, Input, Select } from "antd"; import { createSchemaFieldRule } from "antd-zod"; import { z } from "zod"; import { notifyChannelsMap } from "@/domain/settings"; import { type WorkflowNode, type WorkflowNodeConfigForNotify } from "@/domain/workflow"; import { useZustandShallowSelector } from "@/hooks"; import { useNotifyChannelsStore } from "@/stores/notify"; type NotifyNodeFormFieldValues = Partial; export type NotifyNodeFormProps = { form: FormInstance; formName?: string; disabled?: boolean; workflowNode: WorkflowNode; onValuesChange?: (values: NotifyNodeFormFieldValues) => void; }; const initFormModel = (): NotifyNodeFormFieldValues => { return { subject: "Completed!", message: "Your workflow has been completed on Certimate.", }; }; const NotifyNodeForm = ({ form, formName, disabled, workflowNode, onValuesChange }: NotifyNodeFormProps) => { const { t } = useTranslation(); const { channels, loadedAtOnce: channelsLoadedAtOnce, fetchChannels, } = useNotifyChannelsStore(useZustandShallowSelector(["channels", "loadedAtOnce", "fetchChannels"])); useEffect(() => { fetchChannels(); }, [fetchChannels]); const formSchema = z.object({ subject: z .string({ message: t("workflow_node.notify.form.subject.placeholder") }) .min(1, t("workflow_node.notify.form.subject.placeholder")) .max(1000, t("common.errmsg.string_max", { max: 1000 })), message: z .string({ message: t("workflow_node.notify.form.message.placeholder") }) .min(1, t("workflow_node.notify.form.message.placeholder")) .max(1000, t("common.errmsg.string_max", { max: 1000 })), channel: z.string({ message: t("workflow_node.notify.form.channel.placeholder") }).min(1, t("workflow_node.notify.form.channel.placeholder")), }); const formRule = createSchemaFieldRule(formSchema); const initialValues: NotifyNodeFormFieldValues = (workflowNode.config as WorkflowNodeConfigForNotify) ?? initFormModel(); const handleFormChange = (_: unknown, values: z.infer) => { onValuesChange?.(values as NotifyNodeFormFieldValues); }; return (