Files
plunk/apps/web/src/pages/auth/reset-password.tsx
T

226 lines
8.5 KiB
TypeScript

import {zodResolver} from '@hookform/resolvers/zod';
import {AuthenticationSchemas} from '@plunk/shared';
import {
Button,
Card,
CardContent,
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
IconSpinner,
Input,
} from '@plunk/ui';
import {AnimatePresence, motion} from 'framer-motion';
import {NextSeo} from 'next-seo';
import Image from 'next/image';
import Link from 'next/link';
import {useRouter} from 'next/router';
import React, {useEffect, useState} from 'react';
import {useForm} from 'react-hook-form';
import type {z} from 'zod';
import {network} from '../../lib/network';
const dotGrid = {
backgroundColor: '#fafafa',
backgroundImage: 'radial-gradient(#e5e7eb 1px, transparent 1px)',
backgroundSize: '20px 20px',
};
const Wordmark = () => (
<div className="flex items-center justify-center gap-2.5">
<div className="h-8 w-8 rounded-lg bg-white shadow-sm border border-neutral-200 flex items-center justify-center p-1">
<Image src="/assets/logo.svg" alt="" aria-hidden width={24} height={24} />
</div>
<span className="text-lg font-bold tracking-tight text-neutral-900">Plunk</span>
</div>
);
export default function ResetPassword() {
const router = useRouter();
const {token} = router.query;
const [status, setStatus] = useState<'idle' | 'success' | 'error'>('idle');
const [errorMessage, setErrorMessage] = useState<string>('');
const form = useForm<z.infer<typeof AuthenticationSchemas.resetPassword>>({
resolver: zodResolver(AuthenticationSchemas.resetPassword),
defaultValues: {
token: '',
newPassword: '',
},
});
useEffect(() => {
if (token && typeof token === 'string') {
form.setValue('token', token);
}
}, [token, form]);
async function onSubmit(values: z.infer<typeof AuthenticationSchemas.resetPassword>) {
try {
const response = await network.fetch<{success: boolean}, typeof AuthenticationSchemas.resetPassword>(
'POST',
'/auth/reset-password',
values,
);
if (response.success) {
setStatus('success');
setTimeout(() => {
void router.push('/auth/login');
}, 2000);
} else {
setStatus('error');
setErrorMessage('Failed to reset password. The link may be invalid or expired.');
}
} catch (error) {
setStatus('error');
setErrorMessage(error instanceof Error ? error.message : 'Something went wrong');
}
}
if (!token) {
return (
<>
<NextSeo title="Reset Password" />
<div className="min-h-screen flex items-center justify-center py-12" style={dotGrid}>
<div className="flex flex-col gap-6 max-w-md w-full px-4">
<Wordmark />
<Card>
<CardContent className="p-8">
<div className="flex flex-col items-center gap-4 text-center">
<div className="h-12 w-12 rounded-full bg-neutral-100 flex items-center justify-center">
<svg className="h-6 w-6 text-neutral-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M6 18L18 6M6 6l12 12" />
</svg>
</div>
<div className="flex flex-col gap-1.5">
<h1 className="text-xl font-bold tracking-tight">Invalid reset link</h1>
<p className="text-sm text-neutral-500">
This link is invalid or has expired. Request a new one from the login page.
</p>
</div>
<Link href="/auth/login" className="mt-2">
<Button>Back to login</Button>
</Link>
</div>
</CardContent>
</Card>
</div>
</div>
</>
);
}
return (
<>
<NextSeo title="Reset Password" />
<div className="min-h-screen flex items-center justify-center py-12" style={dotGrid}>
<div className="flex flex-col gap-6 max-w-md w-full px-4">
<Wordmark />
<Card>
<CardContent className="p-0">
<AnimatePresence mode="wait">
{status === 'success' ? (
<motion.div
key="success"
initial={{opacity: 0, scale: 0.97}}
animate={{opacity: 1, scale: 1}}
exit={{opacity: 0}}
transition={{duration: 0.2}}
className="p-8"
>
<div className="flex flex-col items-center gap-4 text-center">
<div className="h-12 w-12 rounded-full bg-neutral-100 flex items-center justify-center">
<svg className="h-6 w-6 text-neutral-700" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M5 13l4 4L19 7" />
</svg>
</div>
<div className="flex flex-col gap-1.5">
<h1 className="text-xl font-bold tracking-tight">Password updated</h1>
<p className="text-sm text-neutral-500">Redirecting you to login...</p>
</div>
</div>
</motion.div>
) : (
<motion.div key="form" initial={{opacity: 1}} exit={{opacity: 0}} className="p-8">
<Form {...form}>
<form
onSubmit={e => {
e.preventDefault();
void form.handleSubmit(onSubmit)(e);
}}
>
<div className="flex flex-col gap-6">
<div className="flex flex-col gap-1.5">
<h1 className="text-2xl font-bold tracking-tight">Reset your password</h1>
<p className="text-sm text-neutral-500">Enter your new password below</p>
</div>
<FormField
control={form.control}
name="newPassword"
render={({field}) => (
<FormItem>
<FormLabel>New password</FormLabel>
<FormControl>
<Input placeholder="At least 6 characters" type="password" autoFocus {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<AnimatePresence>
{status === 'error' && (
<motion.p
initial={{opacity: 0, y: -8}}
animate={{opacity: 1, y: 0}}
exit={{opacity: 0, y: -8}}
transition={{duration: 0.15}}
className="text-sm text-red-500"
>
{errorMessage}
</motion.p>
)}
</AnimatePresence>
<Button type="submit" className="w-full" disabled={form.formState.isSubmitting}>
{form.formState.isSubmitting ? (
<>
<IconSpinner size="sm" />
Resetting...
</>
) : (
'Reset password'
)}
</Button>
<p className="text-center text-sm text-neutral-500">
Remember your password?{' '}
<Link
href="/auth/login"
className="text-neutral-900 underline underline-offset-4 hover:text-neutral-600 transition-colors"
>
Back to login
</Link>
</p>
</div>
</form>
</Form>
</motion.div>
)}
</AnimatePresence>
</CardContent>
</Card>
</div>
</div>
</>
);
}