mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-07 21:19:51 +00:00
71 lines
2.3 KiB
TypeScript
71 lines
2.3 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 AccessConfigForDiscordBot } from "@/domain/access";
|
|
|
|
type AccessFormDiscordBotConfigFieldValues = Nullish<AccessConfigForDiscordBot>;
|
|
|
|
export type AccessFormDiscordBotConfigProps = {
|
|
form: FormInstance;
|
|
formName: string;
|
|
disabled?: boolean;
|
|
initialValues?: AccessFormDiscordBotConfigFieldValues;
|
|
onValuesChange?: (values: AccessFormDiscordBotConfigFieldValues) => void;
|
|
};
|
|
|
|
const initFormModel = (): AccessFormDiscordBotConfigFieldValues => {
|
|
return {
|
|
botToken: "",
|
|
};
|
|
};
|
|
|
|
const AccessFormDiscordBotConfig = ({ form: formInst, formName, disabled, initialValues, onValuesChange }: AccessFormDiscordBotConfigProps) => {
|
|
const { t } = useTranslation();
|
|
|
|
const formSchema = z.object({
|
|
botToken: z
|
|
.string({ message: t("access.form.discordbot_token.placeholder") })
|
|
.min(1, t("access.form.discordbot_token.placeholder"))
|
|
.max(256, t("common.errmsg.string_max", { max: 256 })),
|
|
defaultChannelId: z.string().nullish(),
|
|
});
|
|
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="botToken"
|
|
label={t("access.form.discordbot_token.label")}
|
|
rules={[formRule]}
|
|
tooltip={<span dangerouslySetInnerHTML={{ __html: t("access.form.discordbot_token.tooltip") }}></span>}
|
|
>
|
|
<Input.Password autoComplete="new-password" placeholder={t("access.form.discordbot_token.placeholder")} />
|
|
</Form.Item>
|
|
|
|
<Form.Item
|
|
name="defaultChannelId"
|
|
label={t("access.form.discordbot_default_channel_id.label")}
|
|
rules={[formRule]}
|
|
tooltip={<span dangerouslySetInnerHTML={{ __html: t("access.form.discordbot_default_channel_id.tooltip") }}></span>}
|
|
>
|
|
<Input allowClear placeholder={t("access.form.discordbot_default_channel_id.placeholder")} />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default AccessFormDiscordBotConfig;
|