mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 13:39:53 +00:00
80 lines
2.5 KiB
TypeScript
80 lines
2.5 KiB
TypeScript
import { useTranslation } from "react-i18next";
|
|
import { Form, type FormInstance, Input } from "antd";
|
|
import { createSchemaFieldRule } from "antd-zod";
|
|
import { z } from "zod";
|
|
|
|
import { validDomainName } from "@/utils/validators";
|
|
|
|
type DeployNodeConfigFormAliyunLiveConfigFieldValues = Nullish<{
|
|
region: string;
|
|
domain: string;
|
|
}>;
|
|
|
|
export type DeployNodeConfigFormAliyunLiveConfigProps = {
|
|
form: FormInstance;
|
|
formName: string;
|
|
disabled?: boolean;
|
|
initialValues?: DeployNodeConfigFormAliyunLiveConfigFieldValues;
|
|
onValuesChange?: (values: DeployNodeConfigFormAliyunLiveConfigFieldValues) => void;
|
|
};
|
|
|
|
const initFormModel = (): DeployNodeConfigFormAliyunLiveConfigFieldValues => {
|
|
return {};
|
|
};
|
|
|
|
const DeployNodeConfigFormAliyunLiveConfig = ({
|
|
form: formInst,
|
|
formName,
|
|
disabled,
|
|
initialValues,
|
|
onValuesChange,
|
|
}: DeployNodeConfigFormAliyunLiveConfigProps) => {
|
|
const { t } = useTranslation();
|
|
|
|
const formSchema = z.object({
|
|
region: z
|
|
.string({ message: t("workflow_node.deploy.form.aliyun_live_region.placeholder") })
|
|
.nonempty(t("workflow_node.deploy.form.aliyun_live_region.placeholder"))
|
|
.trim(),
|
|
domain: z
|
|
.string({ message: t("workflow_node.deploy.form.aliyun_live_domain.placeholder") })
|
|
.refine((v) => validDomainName(v, { allowWildcard: true }), t("common.errmsg.domain_invalid")),
|
|
});
|
|
const formRule = createSchemaFieldRule(formSchema);
|
|
|
|
const handleFormChange = (_: unknown, values: z.infer<typeof formSchema>) => {
|
|
onValuesChange?.(values);
|
|
};
|
|
|
|
return (
|
|
<Form
|
|
form={formInst}
|
|
disabled={disabled}
|
|
initialValues={initialValues ?? initFormModel()}
|
|
layout="vertical"
|
|
name={formName}
|
|
onValuesChange={handleFormChange}
|
|
>
|
|
<Form.Item
|
|
name="region"
|
|
label={t("workflow_node.deploy.form.aliyun_live_region.label")}
|
|
rules={[formRule]}
|
|
tooltip={<span dangerouslySetInnerHTML={{ __html: t("workflow_node.deploy.form.aliyun_live_region.tooltip") }}></span>}
|
|
>
|
|
<Input placeholder={t("workflow_node.deploy.form.aliyun_live_region.placeholder")} />
|
|
</Form.Item>
|
|
|
|
<Form.Item
|
|
name="domain"
|
|
label={t("workflow_node.deploy.form.aliyun_live_domain.label")}
|
|
rules={[formRule]}
|
|
tooltip={<span dangerouslySetInnerHTML={{ __html: t("workflow_node.deploy.form.aliyun_live_domain.tooltip") }}></span>}
|
|
>
|
|
<Input placeholder={t("workflow_node.deploy.form.aliyun_live_domain.placeholder")} />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default DeployNodeConfigFormAliyunLiveConfig;
|