mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-07 21:19:51 +00:00
62 lines
1.8 KiB
TypeScript
62 lines
1.8 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 AccessConfigForNameSilo } from "@/domain/access";
|
|
|
|
type AccessFormNameSiloConfigFieldValues = Nullish<AccessConfigForNameSilo>;
|
|
|
|
export type AccessFormNameSiloConfigProps = {
|
|
form: FormInstance;
|
|
formName: string;
|
|
disabled?: boolean;
|
|
initialValues?: AccessFormNameSiloConfigFieldValues;
|
|
onValuesChange?: (values: AccessFormNameSiloConfigFieldValues) => void;
|
|
};
|
|
|
|
const initFormModel = (): AccessFormNameSiloConfigFieldValues => {
|
|
return {
|
|
apiKey: "",
|
|
};
|
|
};
|
|
|
|
const AccessFormNameSiloConfig = ({ form: formInst, formName, disabled, initialValues, onValuesChange }: AccessFormNameSiloConfigProps) => {
|
|
const { t } = useTranslation();
|
|
|
|
const formSchema = z.object({
|
|
apiKey: z
|
|
.string()
|
|
.min(1, t("access.form.namesilo_api_key.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="apiKey"
|
|
label={t("access.form.namesilo_api_key.label")}
|
|
rules={[formRule]}
|
|
tooltip={<span dangerouslySetInnerHTML={{ __html: t("access.form.namesilo_api_key.tooltip") }}></span>}
|
|
>
|
|
<Input.Password autoComplete="new-password" placeholder={t("access.form.namesilo_api_key.placeholder")} />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default AccessFormNameSiloConfig;
|