import { useTranslation } from "react-i18next"; import { Alert, Form, type FormInstance, Input } from "antd"; import { createSchemaFieldRule } from "antd-zod"; import { z } from "zod"; import { validDomainName } from "@/utils/validators"; type DeployNodeConfigFormUpyunFileConfigFieldValues = Nullish<{ domain: string; }>; export type DeployNodeConfigFormUpyunFileConfigProps = { form: FormInstance; formName: string; disabled?: boolean; initialValues?: DeployNodeConfigFormUpyunFileConfigFieldValues; onValuesChange?: (values: DeployNodeConfigFormUpyunFileConfigFieldValues) => void; }; const initFormModel = (): DeployNodeConfigFormUpyunFileConfigFieldValues => { return {}; }; const DeployNodeConfigFormUpyunFileConfig = ({ form: formInst, formName, disabled, initialValues, onValuesChange, }: DeployNodeConfigFormUpyunFileConfigProps) => { const { t } = useTranslation(); const formSchema = z.object({ domain: z .string({ message: t("workflow_node.deploy.form.upyun_file_domain.placeholder") }) .refine((v) => validDomainName(v), t("common.errmsg.domain_invalid")), }); const formRule = createSchemaFieldRule(formSchema); const handleFormChange = (_: unknown, values: z.infer) => { onValuesChange?.(values); }; return (
} /> } >
); }; export default DeployNodeConfigFormUpyunFileConfig;