2023-06-09 18:21:18 +10:00
|
|
|
'use client';
|
|
|
|
|
|
2023-09-20 02:18:35 +00:00
|
|
|
import { useEffect, useState } from 'react';
|
2023-09-02 11:46:12 +05:30
|
|
|
|
2023-09-01 16:25:27 +05:30
|
|
|
import { useSearchParams } from 'next/navigation';
|
2023-08-26 12:31:40 +05:30
|
|
|
|
2023-06-09 18:21:18 +10:00
|
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
2023-09-02 11:46:12 +05:30
|
|
|
import { Loader } from 'lucide-react';
|
2023-06-09 18:21:18 +10:00
|
|
|
import { signIn } from 'next-auth/react';
|
|
|
|
|
import { useForm } from 'react-hook-form';
|
|
|
|
|
import { FcGoogle } from 'react-icons/fc';
|
|
|
|
|
import { z } from 'zod';
|
|
|
|
|
|
2023-09-05 11:29:23 +10:00
|
|
|
import { ErrorCode, isErrorCode } from '@documenso/lib/next-auth/error-codes';
|
2023-06-09 18:21:18 +10:00
|
|
|
import { cn } from '@documenso/ui/lib/utils';
|
|
|
|
|
import { Button } from '@documenso/ui/primitives/button';
|
2023-09-19 13:34:54 +00:00
|
|
|
import { FormErrorMessage } from '@documenso/ui/primitives/form/form-error-message';
|
2023-06-09 18:21:18 +10:00
|
|
|
import { Input } from '@documenso/ui/primitives/input';
|
|
|
|
|
import { Label } from '@documenso/ui/primitives/label';
|
|
|
|
|
import { useToast } from '@documenso/ui/primitives/use-toast';
|
|
|
|
|
|
2023-09-12 14:29:27 +10:00
|
|
|
const ERROR_MESSAGES = {
|
2023-09-05 11:29:23 +10:00
|
|
|
[ErrorCode.CREDENTIALS_NOT_FOUND]: 'The email or password provided is incorrect',
|
|
|
|
|
[ErrorCode.INCORRECT_EMAIL_PASSWORD]: 'The email or password provided is incorrect',
|
|
|
|
|
[ErrorCode.USER_MISSING_PASSWORD]:
|
|
|
|
|
'This account appears to be using a social login method, please sign in using that method',
|
2023-09-01 16:25:27 +05:30
|
|
|
};
|
|
|
|
|
|
2023-09-12 14:29:27 +10:00
|
|
|
const LOGIN_REDIRECT_PATH = '/documents';
|
|
|
|
|
|
2023-06-09 18:21:18 +10:00
|
|
|
export const ZSignInFormSchema = z.object({
|
|
|
|
|
email: z.string().email().min(1),
|
2023-08-26 09:53:58 -05:00
|
|
|
password: z.string().min(6).max(72),
|
2023-06-09 18:21:18 +10:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export type TSignInFormSchema = z.infer<typeof ZSignInFormSchema>;
|
|
|
|
|
|
|
|
|
|
export type SignInFormProps = {
|
|
|
|
|
className?: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const SignInForm = ({ className }: SignInFormProps) => {
|
2023-09-05 11:29:23 +10:00
|
|
|
const searchParams = useSearchParams();
|
2023-06-09 18:21:18 +10:00
|
|
|
|
2023-09-12 14:29:27 +10:00
|
|
|
const { toast } = useToast();
|
|
|
|
|
|
2023-06-09 18:21:18 +10:00
|
|
|
const {
|
|
|
|
|
register,
|
|
|
|
|
handleSubmit,
|
|
|
|
|
formState: { errors, isSubmitting },
|
|
|
|
|
} = useForm<TSignInFormSchema>({
|
|
|
|
|
values: {
|
|
|
|
|
email: '',
|
|
|
|
|
password: '',
|
|
|
|
|
},
|
|
|
|
|
resolver: zodResolver(ZSignInFormSchema),
|
|
|
|
|
});
|
|
|
|
|
|
2023-09-05 11:29:23 +10:00
|
|
|
const errorCode = searchParams?.get('error');
|
2023-09-02 11:46:12 +05:30
|
|
|
|
|
|
|
|
useEffect(() => {
|
2023-09-05 11:33:49 +10:00
|
|
|
let timeout: NodeJS.Timeout | null = null;
|
2023-09-05 11:29:23 +10:00
|
|
|
|
|
|
|
|
if (isErrorCode(errorCode)) {
|
2023-09-05 11:33:49 +10:00
|
|
|
timeout = setTimeout(() => {
|
2023-09-02 11:46:12 +05:30
|
|
|
toast({
|
|
|
|
|
variant: 'destructive',
|
2023-09-12 14:29:27 +10:00
|
|
|
description: ERROR_MESSAGES[errorCode] ?? 'An unknown error occurred',
|
2023-09-02 11:46:12 +05:30
|
|
|
});
|
2023-09-05 11:29:23 +10:00
|
|
|
}, 0);
|
2023-09-02 11:46:12 +05:30
|
|
|
}
|
2023-09-05 11:29:23 +10:00
|
|
|
|
2023-09-02 11:46:12 +05:30
|
|
|
return () => {
|
2023-09-05 11:29:23 +10:00
|
|
|
if (timeout) {
|
|
|
|
|
clearTimeout(timeout);
|
2023-09-02 11:46:12 +05:30
|
|
|
}
|
|
|
|
|
};
|
2023-09-05 11:29:23 +10:00
|
|
|
}, [errorCode, toast]);
|
2023-09-02 11:46:12 +05:30
|
|
|
|
2023-06-09 18:21:18 +10:00
|
|
|
const onFormSubmit = async ({ email, password }: TSignInFormSchema) => {
|
|
|
|
|
try {
|
|
|
|
|
await signIn('credentials', {
|
|
|
|
|
email,
|
|
|
|
|
password,
|
2023-09-12 14:29:27 +10:00
|
|
|
callbackUrl: LOGIN_REDIRECT_PATH,
|
2023-06-09 18:21:18 +10:00
|
|
|
}).catch((err) => {
|
|
|
|
|
console.error(err);
|
|
|
|
|
});
|
|
|
|
|
} catch (err) {
|
|
|
|
|
toast({
|
|
|
|
|
title: 'An unknown error occurred',
|
|
|
|
|
description:
|
|
|
|
|
'We encountered an unknown error while attempting to sign you In. Please try again later.',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const onSignInWithGoogleClick = async () => {
|
|
|
|
|
try {
|
2023-09-12 14:29:27 +10:00
|
|
|
await signIn('google', { callbackUrl: LOGIN_REDIRECT_PATH });
|
2023-06-09 18:21:18 +10:00
|
|
|
} catch (err) {
|
|
|
|
|
toast({
|
|
|
|
|
title: 'An unknown error occurred',
|
|
|
|
|
description:
|
|
|
|
|
'We encountered an unknown error while attempting to sign you In. Please try again later.',
|
|
|
|
|
variant: 'destructive',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
2023-09-02 11:46:12 +05:30
|
|
|
<form
|
|
|
|
|
className={cn('flex w-full flex-col gap-y-4', className)}
|
|
|
|
|
onSubmit={handleSubmit(onFormSubmit)}
|
|
|
|
|
>
|
|
|
|
|
<div>
|
2023-09-19 13:34:54 +00:00
|
|
|
<Label htmlFor="email" className="text-muted-forground">
|
2023-09-02 11:46:12 +05:30
|
|
|
Email
|
|
|
|
|
</Label>
|
|
|
|
|
|
|
|
|
|
<Input id="email" type="email" className="bg-background mt-2" {...register('email')} />
|
|
|
|
|
|
2023-09-19 13:34:54 +00:00
|
|
|
<FormErrorMessage className="mt-1.5" error={errors.email} />
|
2023-09-02 11:46:12 +05:30
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
2023-09-19 13:34:54 +00:00
|
|
|
<Label htmlFor="password" className="text-muted-forground">
|
2023-09-18 10:18:33 +00:00
|
|
|
<span>Password</span>
|
2023-09-02 11:46:12 +05:30
|
|
|
</Label>
|
|
|
|
|
|
2023-09-20 02:18:35 +00:00
|
|
|
<div className="relative">
|
|
|
|
|
<Input
|
|
|
|
|
id="password"
|
|
|
|
|
type={showPassword ? 'text' : 'password'}
|
|
|
|
|
minLength={6}
|
|
|
|
|
maxLength={72}
|
|
|
|
|
autoComplete="current-password"
|
|
|
|
|
className="bg-background mt-2 pr-10"
|
|
|
|
|
{...register('password')}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
variant="link"
|
|
|
|
|
type="button"
|
|
|
|
|
className="absolute right-0 top-0 flex h-full items-center justify-center pr-3"
|
|
|
|
|
aria-label={showPassword ? 'Mask password' : 'Reveal password'}
|
2023-09-20 02:32:06 +00:00
|
|
|
onClick={() => setShowPassword((show) => !show)}
|
2023-09-20 02:18:35 +00:00
|
|
|
>
|
|
|
|
|
{showPassword ? (
|
|
|
|
|
<EyeOff className="text-muted-foreground h-5 w-5" />
|
|
|
|
|
) : (
|
|
|
|
|
<Eye className="text-muted-foreground h-5 w-5" />
|
|
|
|
|
)}
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
2023-09-02 11:46:12 +05:30
|
|
|
|
2023-09-19 13:34:54 +00:00
|
|
|
<FormErrorMessage className="mt-1.5" error={errors.password} />
|
2023-09-02 11:46:12 +05:30
|
|
|
</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" />}
|
|
|
|
|
Sign In
|
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
|
|
<div className="relative flex items-center justify-center gap-x-4 py-2 text-xs uppercase">
|
|
|
|
|
<div className="bg-border h-px flex-1" />
|
|
|
|
|
<span className="text-muted-foreground bg-transparent">Or continue with</span>
|
|
|
|
|
<div className="bg-border h-px flex-1" />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
type="button"
|
|
|
|
|
size="lg"
|
|
|
|
|
variant={'outline'}
|
|
|
|
|
className="bg-background text-muted-foreground border"
|
|
|
|
|
disabled={isSubmitting}
|
|
|
|
|
onClick={onSignInWithGoogleClick}
|
2023-06-09 18:21:18 +10:00
|
|
|
>
|
2023-09-02 11:46:12 +05:30
|
|
|
<FcGoogle className="mr-2 h-5 w-5" />
|
|
|
|
|
Google
|
|
|
|
|
</Button>
|
|
|
|
|
</form>
|
2023-06-09 18:21:18 +10:00
|
|
|
);
|
|
|
|
|
};
|