certimate/ui/src/components/workflow/node/DeployNodeConfigFormAliyunDCDNFields.tsx
2025-01-06 19:10:29 +08:00

33 lines
1.0 KiB
TypeScript

import { useTranslation } from "react-i18next";
import { Form, Input } from "antd";
import { createSchemaFieldRule } from "antd-zod";
import { z } from "zod";
import { validDomainName } from "@/utils/validators";
const DeployNodeFormAliyunDCDNFields = () => {
const { t } = useTranslation();
const formSchema = z.object({
domain: z
.string({ message: t("workflow_node.deploy.form.aliyun_dcdn_domain.placeholder") })
.refine((v) => validDomainName(v, true), t("common.errmsg.domain_invalid")),
});
const formRule = createSchemaFieldRule(formSchema);
return (
<>
<Form.Item
name="domain"
label={t("workflow_node.deploy.form.aliyun_dcdn_domain.label")}
rules={[formRule]}
tooltip={<span dangerouslySetInnerHTML={{ __html: t("workflow_node.deploy.form.aliyun_dcdn_domain.tooltip") }}></span>}
>
<Input placeholder={t("workflow_node.deploy.form.aliyun_dcdn_domain.placeholder")} />
</Form.Item>
</>
);
};
export default DeployNodeFormAliyunDCDNFields;