import { useTranslation } from "react-i18next"; import { Form, type FormInstance, Input } from "antd"; import { createSchemaFieldRule } from "antd-zod"; import { z } from "zod"; type NotifyNodeConfigFormMattermostConfigFieldValues = Nullish<{ channelId?: string; }>; export type NotifyNodeConfigFormMattermostConfigProps = { form: FormInstance; formName: string; disabled?: boolean; initialValues?: NotifyNodeConfigFormMattermostConfigFieldValues; onValuesChange?: (values: NotifyNodeConfigFormMattermostConfigFieldValues) => void; }; const initFormModel = (): NotifyNodeConfigFormMattermostConfigFieldValues => { return {}; }; const NotifyNodeConfigFormMattermostConfig = ({ form: formInst, formName, disabled, initialValues, onValuesChange, }: NotifyNodeConfigFormMattermostConfigProps) => { const { t } = useTranslation(); const formSchema = z.object({ channelId: z.string().nullish(), }); const formRule = createSchemaFieldRule(formSchema); const handleFormChange = (_: unknown, values: z.infer) => { onValuesChange?.(values); }; return (
} >
); }; export default NotifyNodeConfigFormMattermostConfig;