mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-19 01:41:55 +08: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 DeployNodeFormVolcEngineLiveFields = () => {
|
|
const { t } = useTranslation();
|
|
|
|
const formSchema = z.object({
|
|
domain: z
|
|
.string({ message: t("workflow_node.deploy.form.volcengine_live_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.volcengine_live_domain.label")}
|
|
rules={[formRule]}
|
|
tooltip={<span dangerouslySetInnerHTML={{ __html: t("workflow_node.deploy.form.volcengine_live_domain.tooltip") }}></span>}
|
|
>
|
|
<Input placeholder={t("workflow_node.deploy.form.volcengine_live_domain.placeholder")} />
|
|
</Form.Item>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default DeployNodeFormVolcEngineLiveFields;
|