Files
sign/apps/web/src/components/forms/forgot-password.tsx

87 lines
2.3 KiB
TypeScript
Raw Normal View History

2023-09-18 10:18:33 +00:00
'use client';
2023-09-18 10:33:03 +00:00
import { useRouter } from 'next/navigation';
2023-09-18 10:18:33 +00:00
import { zodResolver } from '@hookform/resolvers/zod';
import { Loader } from 'lucide-react';
import { useForm } from 'react-hook-form';
import { z } from 'zod';
2023-09-18 11:15:29 +00:00
import { trpc } from '@documenso/trpc/react';
2023-09-18 10:18:33 +00:00
import { cn } from '@documenso/ui/lib/utils';
import { Button } from '@documenso/ui/primitives/button';
import { Input } from '@documenso/ui/primitives/input';
import { Label } from '@documenso/ui/primitives/label';
2023-09-18 11:15:29 +00:00
import { useToast } from '@documenso/ui/primitives/use-toast';
2023-09-18 10:18:33 +00:00
export const ZForgotPasswordFormSchema = z.object({
email: z.string().email().min(1),
});
export type TForgotPasswordFormSchema = z.infer<typeof ZForgotPasswordFormSchema>;
export type ForgotPasswordFormProps = {
className?: string;
};
export const ForgotPasswordForm = ({ className }: ForgotPasswordFormProps) => {
const router = useRouter();
2023-09-18 11:15:29 +00:00
const { toast } = useToast();
2023-09-18 10:18:33 +00:00
const {
register,
handleSubmit,
2023-09-18 11:15:29 +00:00
reset,
2023-09-18 10:18:33 +00:00
formState: { errors, isSubmitting },
} = useForm<TForgotPasswordFormSchema>({
values: {
email: '',
},
resolver: zodResolver(ZForgotPasswordFormSchema),
});
2023-09-18 11:15:29 +00:00
const { mutateAsync: forgotPassword } = trpc.profile.forgotPassword.useMutation();
const onFormSubmit = async ({ email }: TForgotPasswordFormSchema) => {
// TODO: Handle error with try/catch
2023-09-18 11:15:29 +00:00
await forgotPassword({
email,
});
toast({
title: 'Password updated',
description: 'Your password has been updated successfully.',
duration: 5000,
});
await new Promise((resolve) => {
setTimeout(resolve, 2000);
});
2023-09-18 12:14:55 +00:00
reset();
2023-09-18 10:18:33 +00:00
router.push('/check-email');
};
return (
<form
className={cn('flex w-full flex-col gap-y-4', className)}
onSubmit={handleSubmit(onFormSubmit)}
>
<div>
<Label htmlFor="email" className="text-slate-500">
Email
</Label>
<Input id="email" type="email" className="bg-background mt-2" {...register('email')} />
{errors.email && <span className="mt-1 text-xs text-red-500">{errors.email.message}</span>}
</div>
<Button size="lg" disabled={isSubmitting} className="dark:bg-documenso dark:hover:opacity-90">
{isSubmitting && <Loader className="mr-2 h-5 w-5 animate-spin" />}
Reset Password
</Button>
</form>
);
};