feat: add upyun file deployer

This commit is contained in:
Fu Diwei
2025-03-20 21:53:02 +08:00
parent 4acbbf6e13
commit e4fd1e78f5
8 changed files with 78 additions and 2 deletions

View File

@@ -0,0 +1,65 @@
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 DeployNodeConfigFormUpyunFileConfigFieldValues = Nullish<{
domain: string;
}>;
export type DeployNodeConfigFormUpyunFileConfigProps = {
form: FormInstance;
formName: string;
disabled?: boolean;
initialValues?: DeployNodeConfigFormUpyunFileConfigFieldValues;
onValuesChange?: (values: DeployNodeConfigFormUpyunFileConfigFieldValues) => void;
};
const initFormModel = (): DeployNodeConfigFormUpyunFileConfigFieldValues => {
return {};
};
const DeployNodeConfigFormUpyunFileConfig = ({
form: formInst,
formName,
disabled,
initialValues,
onValuesChange,
}: DeployNodeConfigFormUpyunFileConfigProps) => {
const { t } = useTranslation();
const formSchema = z.object({
domain: z
.string({ message: t("workflow_node.deploy.form.upyun_file_domain.placeholder") })
.refine((v) => validDomainName(v), 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="domain"
label={t("workflow_node.deploy.form.upyun_file_domain.label")}
rules={[formRule]}
tooltip={<span dangerouslySetInnerHTML={{ __html: t("workflow_node.deploy.form.upyun_file_domain.tooltip") }}></span>}
>
<Input placeholder={t("workflow_node.deploy.form.upyun_file_domain.placeholder")} />
</Form.Item>
</Form>
);
};
export default DeployNodeConfigFormUpyunFileConfig;