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';
|
|
|
|
|
|
|
|
|
|
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';
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
const {
|
|
|
|
|
register,
|
|
|
|
|
handleSubmit,
|
|
|
|
|
formState: { errors, isSubmitting },
|
|
|
|
|
} = useForm<TForgotPasswordFormSchema>({
|
|
|
|
|
values: {
|
|
|
|
|
email: '',
|
|
|
|
|
},
|
|
|
|
|
resolver: zodResolver(ZForgotPasswordFormSchema),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const onFormSubmit = ({ email }: TForgotPasswordFormSchema) => {
|
|
|
|
|
// check if the email is available
|
|
|
|
|
// if not, throw an error
|
|
|
|
|
// if the email is available, create a password reset token and send an email
|
|
|
|
|
|
|
|
|
|
console.log(email);
|
|
|
|
|
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>
|
|
|
|
|
);
|
|
|
|
|
};
|