mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-07 21:19:51 +00:00
33 lines
1.0 KiB
TypeScript
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;
|