mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 13:39:53 +00:00
77 lines
2.5 KiB
TypeScript
77 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 { type AccessConfigForJDCloud } from "@/domain/access";
|
|
|
|
type AccessFormJDCloudConfigFieldValues = Nullish<AccessConfigForJDCloud>;
|
|
|
|
export type AccessFormJDCloudConfigProps = {
|
|
form: FormInstance;
|
|
formName: string;
|
|
disabled?: boolean;
|
|
initialValues?: AccessFormJDCloudConfigFieldValues;
|
|
onValuesChange?: (values: AccessFormJDCloudConfigFieldValues) => void;
|
|
};
|
|
|
|
const initFormModel = (): AccessFormJDCloudConfigFieldValues => {
|
|
return {
|
|
accessKeyId: "",
|
|
accessKeySecret: "",
|
|
};
|
|
};
|
|
|
|
const AccessFormJDCloudConfig = ({ form: formInst, formName, disabled, initialValues, onValuesChange: onValuesChange }: AccessFormJDCloudConfigProps) => {
|
|
const { t } = useTranslation();
|
|
|
|
const formSchema = z.object({
|
|
accessKeyId: z
|
|
.string()
|
|
.min(1, t("access.form.jdcloud_access_key_id.placeholder"))
|
|
.max(64, t("common.errmsg.string_max", { max: 64 }))
|
|
.trim(),
|
|
accessKeySecret: z
|
|
.string()
|
|
.min(1, t("access.form.jdcloud_access_key_secret.placeholder"))
|
|
.max(64, t("common.errmsg.string_max", { max: 64 }))
|
|
.trim(),
|
|
});
|
|
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="accessKeyId"
|
|
label={t("access.form.jdcloud_access_key_id.label")}
|
|
rules={[formRule]}
|
|
tooltip={<span dangerouslySetInnerHTML={{ __html: t("access.form.jdcloud_access_key_id.tooltip") }}></span>}
|
|
>
|
|
<Input autoComplete="new-password" placeholder={t("access.form.jdcloud_access_key_id.placeholder")} />
|
|
</Form.Item>
|
|
|
|
<Form.Item
|
|
name="accessKeySecret"
|
|
label={t("access.form.jdcloud_access_key_secret.label")}
|
|
rules={[formRule]}
|
|
tooltip={<span dangerouslySetInnerHTML={{ __html: t("access.form.jdcloud_access_key_secret.tooltip") }}></span>}
|
|
>
|
|
<Input.Password autoComplete="new-password" placeholder={t("access.form.jdcloud_access_key_secret.placeholder")} />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default AccessFormJDCloudConfig;
|