import { useTranslation } from "react-i18next"; import { Form, type FormInstance, Input } from "antd"; import { createSchemaFieldRule } from "antd-zod"; import { z } from "zod"; import { type AccessConfigForTencentCloud } from "@/domain/access"; type AccessFormTencentCloudConfigFieldValues = Nullish; export type AccessFormTencentCloudConfigProps = { form: FormInstance; formName: string; disabled?: boolean; initialValues?: AccessFormTencentCloudConfigFieldValues; onValuesChange?: (values: AccessFormTencentCloudConfigFieldValues) => void; }; const initFormModel = (): AccessFormTencentCloudConfigFieldValues => { return { secretId: "", secretKey: "", }; }; const AccessFormTencentCloudConfig = ({ form: formInst, formName, disabled, initialValues, onValuesChange }: AccessFormTencentCloudConfigProps) => { const { t } = useTranslation(); const formSchema = z.object({ secretId: z .string() .min(1, t("access.form.tencentcloud_secret_id.placeholder")) .max(64, t("common.errmsg.string_max", { max: 64 })) .trim(), secretKey: z .string() .min(1, t("access.form.tencentcloud_secret_key.placeholder")) .max(64, t("common.errmsg.string_max", { max: 64 })) .trim(), }); const formRule = createSchemaFieldRule(formSchema); const handleFormChange = (_: unknown, values: z.infer) => { onValuesChange?.(values); }; return (
} > } >
); }; export default AccessFormTencentCloudConfig;