import { useTranslation } from "react-i18next"; import { Form, type FormInstance, Input } from "antd"; import { createSchemaFieldRule } from "antd-zod"; import { z } from "zod"; import { type AccessConfigForVercel } from "@/domain/access"; type AccessFormVercelConfigFieldValues = Nullish; export type AccessFormVercelConfigProps = { form: FormInstance; formName: string; disabled?: boolean; initialValues?: AccessFormVercelConfigFieldValues; onValuesChange?: (values: AccessFormVercelConfigFieldValues) => void; }; const initFormModel = (): AccessFormVercelConfigFieldValues => { return { apiAccessToken: "", }; }; const AccessFormVercelConfig = ({ form: formInst, formName, disabled, initialValues, onValuesChange }: AccessFormVercelConfigProps) => { const { t } = useTranslation(); const formSchema = z.object({ apiAccessToken: z .string() .min(1, t("access.form.vercel_api_access_token.placeholder")) .max(256, t("common.errmsg.string_max", { max: 256 })) .trim(), teamId: z .string() .max(256, t("common.errmsg.string_max", { max: 256 })) .trim() .nullish(), }); const formRule = createSchemaFieldRule(formSchema); const handleFormChange = (_: unknown, values: z.infer) => { onValuesChange?.(values); }; return (
} > } >
); }; export default AccessFormVercelConfig;