import { useTranslation } from "react-i18next"; import { Form, type FormInstance, Input } from "antd"; import { createSchemaFieldRule } from "antd-zod"; import { z } from "zod"; type DeployNodeConfigFormAWSCloudFrontConfigFieldValues = Nullish<{ region: string; distributionId: string; }>; export type DeployNodeConfigFormAWSCloudFrontConfigProps = { form: FormInstance; formName: string; disabled?: boolean; initialValues?: DeployNodeConfigFormAWSCloudFrontConfigFieldValues; onValuesChange?: (values: DeployNodeConfigFormAWSCloudFrontConfigFieldValues) => void; }; const initFormModel = (): DeployNodeConfigFormAWSCloudFrontConfigFieldValues => { return {}; }; const DeployNodeConfigFormAWSCloudFrontConfig = ({ form: formInst, formName, disabled, initialValues, onValuesChange, }: DeployNodeConfigFormAWSCloudFrontConfigProps) => { const { t } = useTranslation(); const formSchema = z.object({ region: z .string({ message: t("workflow_node.deploy.form.aws_cloudfront_region.placeholder") }) .nonempty(t("workflow_node.deploy.form.aws_cloudfront_region.placeholder")) .trim(), distributionId: z .string({ message: t("workflow_node.deploy.form.aws_cloudfront_distribution_id.placeholder") }) .nonempty(t("workflow_node.deploy.form.aws_cloudfront_distribution_id.placeholder")) .max(64, t("common.errmsg.string_max", { max: 64 })) .trim(), }); const formRule = createSchemaFieldRule(formSchema); const handleFormChange = (_: unknown, values: z.infer) => { onValuesChange?.(values); }; return (
} > } >
); }; export default DeployNodeConfigFormAWSCloudFrontConfig;