mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-09 22:19:51 +00:00
217 lines
6.3 KiB
TypeScript
217 lines
6.3 KiB
TypeScript
import { useForm } from "react-hook-form";
|
|
import { useTranslation } from "react-i18next";
|
|
import z from "zod";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { ClientResponseError } from "pocketbase";
|
|
|
|
import { Input } from "@/components/ui/input";
|
|
import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from "@/components/ui/form";
|
|
import { Button } from "@/components/ui/button";
|
|
import { PbErrorData } from "@/domain/base";
|
|
import { Access, accessFormType, HuaweiCloudConfig, getUsageByConfigType } from "@/domain/access";
|
|
import { save } from "@/repository/access";
|
|
import { useConfigContext } from "@/providers/config";
|
|
|
|
type AccessHuaweiCloudFormProps = {
|
|
op: "add" | "edit" | "copy";
|
|
data?: Access;
|
|
onAfterReq: () => void;
|
|
};
|
|
|
|
const AccessHuaweiCloudForm = ({ data, op, onAfterReq }: AccessHuaweiCloudFormProps) => {
|
|
const { addAccess, updateAccess } = useConfigContext();
|
|
const { t } = useTranslation();
|
|
const formSchema = z.object({
|
|
id: z.string().optional(),
|
|
name: z
|
|
.string()
|
|
.min(1, "access.authorization.form.name.placeholder")
|
|
.max(64, t("common.errmsg.string_max", { max: 64 })),
|
|
configType: accessFormType,
|
|
region: z
|
|
.string()
|
|
.min(1, "access.authorization.form.region.placeholder")
|
|
.max(64, t("common.errmsg.string_max", { max: 64 })),
|
|
accessKeyId: z
|
|
.string()
|
|
.min(1, "access.authorization.form.access_key_id.placeholder")
|
|
.max(64, t("common.errmsg.string_max", { max: 64 })),
|
|
secretAccessKey: z
|
|
.string()
|
|
.min(1, "access.authorization.form.secret_access_key.placeholder")
|
|
.max(64, t("common.errmsg.string_max", { max: 64 })),
|
|
});
|
|
|
|
let config: HuaweiCloudConfig = {
|
|
region: "cn-north-1",
|
|
accessKeyId: "",
|
|
secretAccessKey: "",
|
|
};
|
|
if (data) config = data.config as HuaweiCloudConfig;
|
|
|
|
const form = useForm<z.infer<typeof formSchema>>({
|
|
resolver: zodResolver(formSchema),
|
|
defaultValues: {
|
|
id: data?.id,
|
|
name: data?.name || "",
|
|
configType: "huaweicloud",
|
|
region: config.region,
|
|
accessKeyId: config.accessKeyId,
|
|
secretAccessKey: config.secretAccessKey,
|
|
},
|
|
});
|
|
|
|
const onSubmit = async (data: z.infer<typeof formSchema>) => {
|
|
const req: Access = {
|
|
id: data.id as string,
|
|
name: data.name,
|
|
configType: data.configType,
|
|
usage: getUsageByConfigType(data.configType),
|
|
config: {
|
|
region: data.region,
|
|
accessKeyId: data.accessKeyId,
|
|
secretAccessKey: data.secretAccessKey,
|
|
},
|
|
};
|
|
|
|
try {
|
|
req.id = op == "copy" ? "" : req.id;
|
|
const rs = await save(req);
|
|
|
|
onAfterReq();
|
|
|
|
req.id = rs.id;
|
|
req.created = rs.created;
|
|
req.updated = rs.updated;
|
|
if (data.id && op == "edit") {
|
|
updateAccess(req);
|
|
return;
|
|
}
|
|
addAccess(req);
|
|
} catch (e) {
|
|
const err = e as ClientResponseError;
|
|
|
|
Object.entries(err.response.data as PbErrorData).forEach(([key, value]) => {
|
|
form.setError(key as keyof z.infer<typeof formSchema>, {
|
|
type: "manual",
|
|
message: value.message,
|
|
});
|
|
});
|
|
|
|
return;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={(e) => {
|
|
e.stopPropagation();
|
|
form.handleSubmit(onSubmit)(e);
|
|
}}
|
|
className="space-y-8"
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name="name"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t("access.authorization.form.name.label")}</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder={t("access.authorization.form.name.placeholder")} {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="id"
|
|
render={({ field }) => (
|
|
<FormItem className="hidden">
|
|
<FormLabel>{t("access.authorization.form.config.label")}</FormLabel>
|
|
<FormControl>
|
|
<Input {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="configType"
|
|
render={({ field }) => (
|
|
<FormItem className="hidden">
|
|
<FormLabel>{t("access.authorization.form.config.label")}</FormLabel>
|
|
<FormControl>
|
|
<Input {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="region"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t("access.authorization.form.region.label")}</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder={t("access.authorization.form.region.placeholder")} {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="accessKeyId"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t("access.authorization.form.access_key_id.label")}</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder={t("access.authorization.form.access_key_id.placeholder")} {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="secretAccessKey"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t("access.authorization.form.secret_access_key.label")}</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder={t("access.authorization.form.secret_access_key.placeholder")} {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormMessage />
|
|
|
|
<div className="flex justify-end">
|
|
<Button type="submit">{t("common.save")}</Button>
|
|
</div>
|
|
</form>
|
|
</Form>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default AccessHuaweiCloudForm;
|