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