mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-11 06:59:51 +00:00
156 lines
4.0 KiB
TypeScript
156 lines
4.0 KiB
TypeScript
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import { useToast } from "@/components/ui/use-toast";
|
|
import { getErrMessage } from "@/lib/error";
|
|
import { getPb } from "@/repository/api";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useForm } from "react-hook-form";
|
|
import { useNavigate } from "react-router-dom";
|
|
|
|
import { z } from "zod";
|
|
|
|
const formSchema = z
|
|
.object({
|
|
oldPassword: z.string().min(10, {
|
|
message: "密码至少10个字符",
|
|
}),
|
|
newPassword: z.string().min(10, {
|
|
message: "密码至少10个字符",
|
|
}),
|
|
confirmPassword: z.string().min(10, {
|
|
message: "密码至少10个字符",
|
|
}),
|
|
})
|
|
.refine((data) => data.newPassword === data.confirmPassword, {
|
|
message: "两次密码不一致",
|
|
path: ["confirmPassword"],
|
|
});
|
|
|
|
const Password = () => {
|
|
const { toast } = useToast();
|
|
const navigate = useNavigate();
|
|
|
|
const form = useForm<z.infer<typeof formSchema>>({
|
|
resolver: zodResolver(formSchema),
|
|
defaultValues: {
|
|
oldPassword: "",
|
|
newPassword: "",
|
|
confirmPassword: "",
|
|
},
|
|
});
|
|
|
|
const onSubmit = async (values: z.infer<typeof formSchema>) => {
|
|
try {
|
|
await getPb().admins.authWithPassword(
|
|
getPb().authStore.model?.email,
|
|
values.oldPassword
|
|
);
|
|
} catch (e) {
|
|
const message = getErrMessage(e);
|
|
form.setError("oldPassword", { message });
|
|
}
|
|
|
|
try {
|
|
await getPb().admins.update(getPb().authStore.model?.id, {
|
|
password: values.newPassword,
|
|
passwordConfirm: values.confirmPassword,
|
|
});
|
|
|
|
getPb().authStore.clear();
|
|
toast({
|
|
title: "修改密码成功",
|
|
description: "请重新登录",
|
|
});
|
|
setTimeout(() => {
|
|
navigate("/login");
|
|
}, 500);
|
|
} catch (e) {
|
|
const message = getErrMessage(e);
|
|
toast({
|
|
title: "修改密码失败",
|
|
description: message,
|
|
variant: "destructive",
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="w-full md:max-w-[35em]">
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className="space-y-8 dark:text-stone-200"
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name="oldPassword"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>当前密码</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="当前密码" {...field} type="password" />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="newPassword"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>新密码</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
placeholder="newPassword"
|
|
{...field}
|
|
type="password"
|
|
/>
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="confirmPassword"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>确认密码</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
placeholder="confirmPassword"
|
|
{...field}
|
|
type="password"
|
|
/>
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<div className="flex justify-end">
|
|
<Button type="submit">确认修改</Button>
|
|
</div>
|
|
</form>
|
|
</Form>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Password;
|