mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
95 lines
2.6 KiB
TypeScript
95 lines
2.6 KiB
TypeScript
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { msg } from '@lingui/core/macro';
|
|
import { useLingui } from '@lingui/react';
|
|
import { Trans } from '@lingui/react/macro';
|
|
import { useForm } from 'react-hook-form';
|
|
import { useNavigate } from 'react-router';
|
|
import { z } from 'zod';
|
|
|
|
import { authClient } from '@documenso/auth/client';
|
|
import { cn } from '@documenso/ui/lib/utils';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from '@documenso/ui/primitives/form/form';
|
|
import { Input } from '@documenso/ui/primitives/input';
|
|
import { useToast } from '@documenso/ui/primitives/use-toast';
|
|
|
|
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 { _ } = useLingui();
|
|
const { toast } = useToast();
|
|
|
|
const navigate = useNavigate();
|
|
|
|
const form = useForm<TForgotPasswordFormSchema>({
|
|
values: {
|
|
email: '',
|
|
},
|
|
resolver: zodResolver(ZForgotPasswordFormSchema),
|
|
});
|
|
|
|
const isSubmitting = form.formState.isSubmitting;
|
|
|
|
const onFormSubmit = async ({ email }: TForgotPasswordFormSchema) => {
|
|
await authClient.emailPassword.forgotPassword({ email }).catch(() => null);
|
|
|
|
await navigate('/check-email');
|
|
|
|
toast({
|
|
title: _(msg`Reset email sent`),
|
|
description: _(
|
|
msg`A password reset email has been sent, if you have an account you should see it in your inbox shortly.`,
|
|
),
|
|
duration: 5000,
|
|
});
|
|
|
|
form.reset();
|
|
};
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<form
|
|
className={cn('flex w-full flex-col gap-y-4', className)}
|
|
onSubmit={form.handleSubmit(onFormSubmit)}
|
|
>
|
|
<fieldset className="flex w-full flex-col gap-y-4" disabled={isSubmitting}>
|
|
<FormField
|
|
control={form.control}
|
|
name="email"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>
|
|
<Trans>Email</Trans>
|
|
</FormLabel>
|
|
<FormControl>
|
|
<Input type="email" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</fieldset>
|
|
|
|
<Button size="lg" loading={isSubmitting}>
|
|
{isSubmitting ? <Trans>Sending Reset Email...</Trans> : <Trans>Reset Password</Trans>}
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
);
|
|
};
|