mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-19 19:00:00 +00:00
105 lines
3.7 KiB
TypeScript
105 lines
3.7 KiB
TypeScript
import { useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useDeepCompareEffect } from "ahooks";
|
|
import { Form, Input, Select, type FormInstance } from "antd";
|
|
import { createSchemaFieldRule } from "antd-zod";
|
|
import { z } from "zod";
|
|
|
|
import { type ACMEHttpReqAccessConfig } from "@/domain/access";
|
|
|
|
type AccessEditFormACMEHttpReqConfigModelType = Partial<ACMEHttpReqAccessConfig>;
|
|
|
|
export type AccessEditFormACMEHttpReqConfigProps = {
|
|
form: FormInstance;
|
|
disabled?: boolean;
|
|
loading?: boolean;
|
|
model?: AccessEditFormACMEHttpReqConfigModelType;
|
|
onModelChange?: (model: AccessEditFormACMEHttpReqConfigModelType) => void;
|
|
};
|
|
|
|
const initModel = () => {
|
|
return {
|
|
endpoint: "https://example.com/api/",
|
|
mode: "",
|
|
} as AccessEditFormACMEHttpReqConfigModelType;
|
|
};
|
|
|
|
const AccessEditFormACMEHttpReqConfig = ({ form, disabled, loading, model, onModelChange }: AccessEditFormACMEHttpReqConfigProps) => {
|
|
const { t } = useTranslation();
|
|
|
|
const formSchema = z.object({
|
|
endpoint: z.string().url(t("common.errmsg.url_invalid")),
|
|
mode: z.string().min(0, t("access.form.acmehttpreq_mode.placeholder")).nullish(),
|
|
username: z
|
|
.string()
|
|
.trim()
|
|
.min(0, t("access.form.acmehttpreq_username.placeholder"))
|
|
.max(256, t("common.errmsg.string_max", { max: 256 }))
|
|
.nullish(),
|
|
password: z
|
|
.string()
|
|
.trim()
|
|
.min(0, t("access.form.acmehttpreq_password.placeholder"))
|
|
.max(256, t("common.errmsg.string_max", { max: 256 }))
|
|
.nullish(),
|
|
});
|
|
const formRule = createSchemaFieldRule(formSchema);
|
|
|
|
const [initialValues, setInitialValues] = useState<Partial<z.infer<typeof formSchema>>>(model ?? initModel());
|
|
useDeepCompareEffect(() => {
|
|
setInitialValues(model ?? initModel());
|
|
}, [model]);
|
|
|
|
const handleFormChange = (_: unknown, fields: AccessEditFormACMEHttpReqConfigModelType) => {
|
|
onModelChange?.(fields);
|
|
};
|
|
|
|
return (
|
|
<Form form={form} disabled={loading || disabled} initialValues={initialValues} layout="vertical" name="configForm" onValuesChange={handleFormChange}>
|
|
<Form.Item
|
|
name="endpoint"
|
|
label={t("access.form.acmehttpreq_endpoint.label")}
|
|
rules={[formRule]}
|
|
tooltip={<span dangerouslySetInnerHTML={{ __html: t("access.form.acmehttpreq_endpoint.tooltip") }}></span>}
|
|
>
|
|
<Input placeholder={t("access.form.acmehttpreq_endpoint.placeholder")} />
|
|
</Form.Item>
|
|
|
|
<Form.Item
|
|
name="mode"
|
|
label={t("access.form.acmehttpreq_mode.label")}
|
|
rules={[formRule]}
|
|
tooltip={<span dangerouslySetInnerHTML={{ __html: t("access.form.acmehttpreq_mode.tooltip") }}></span>}
|
|
>
|
|
<Select
|
|
options={[
|
|
{ value: "", label: "(default)" },
|
|
{ value: "RAW", label: "RAW" },
|
|
]}
|
|
placeholder={t("access.form.acmehttpreq_mode.placeholder")}
|
|
/>
|
|
</Form.Item>
|
|
|
|
<Form.Item
|
|
name="username"
|
|
label={t("access.form.acmehttpreq_username.label")}
|
|
rules={[formRule]}
|
|
tooltip={<span dangerouslySetInnerHTML={{ __html: t("access.form.acmehttpreq_username.tooltip") }}></span>}
|
|
>
|
|
<Input autoComplete="new-password" placeholder={t("access.form.acmehttpreq_username.placeholder")} />
|
|
</Form.Item>
|
|
|
|
<Form.Item
|
|
name="password"
|
|
label={t("access.form.acmehttpreq_password.label")}
|
|
rules={[formRule]}
|
|
tooltip={<span dangerouslySetInnerHTML={{ __html: t("access.form.acmehttpreq_password.tooltip") }}></span>}
|
|
>
|
|
<Input.Password autoComplete="new-password" placeholder={t("access.form.acmehttpreq_password.placeholder")} />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default AccessEditFormACMEHttpReqConfig;
|