|
import { zodResolver } from "@hookform/resolvers/zod"; |
|
import { t, Trans } from "@lingui/macro"; |
|
import { resetPasswordSchema } from "@reactive-resume/dto"; |
|
import { usePasswordToggle } from "@reactive-resume/hooks"; |
|
import { |
|
Button, |
|
Form, |
|
FormControl, |
|
FormDescription, |
|
FormField, |
|
FormItem, |
|
FormLabel, |
|
FormMessage, |
|
Input, |
|
} from "@reactive-resume/ui"; |
|
import { useEffect, useRef } from "react"; |
|
import { Helmet } from "react-helmet-async"; |
|
import { useForm } from "react-hook-form"; |
|
import { useNavigate, useSearchParams } from "react-router"; |
|
import type { z } from "zod"; |
|
|
|
import { useResetPassword } from "@/client/services/auth"; |
|
|
|
type FormValues = z.infer<typeof resetPasswordSchema>; |
|
|
|
export const ResetPasswordPage = () => { |
|
const navigate = useNavigate(); |
|
const [searchParams] = useSearchParams(); |
|
const token = searchParams.get("token") ?? ""; |
|
|
|
const { resetPassword, loading } = useResetPassword(); |
|
|
|
const formRef = useRef<HTMLFormElement>(null); |
|
usePasswordToggle(formRef); |
|
|
|
const form = useForm<FormValues>({ |
|
resolver: zodResolver(resetPasswordSchema), |
|
defaultValues: { token, password: "" }, |
|
}); |
|
|
|
const onSubmit = async (data: FormValues) => { |
|
try { |
|
await resetPassword(data); |
|
|
|
void navigate("/auth/login"); |
|
} catch { |
|
form.reset(); |
|
} |
|
}; |
|
|
|
|
|
useEffect(() => { |
|
if (!token) void navigate("/auth/forgot-password"); |
|
}, [token, navigate]); |
|
|
|
return ( |
|
<div className="space-y-8"> |
|
<Helmet> |
|
<title> |
|
{t`Reset your password`} - {t`Reactive Resume`} |
|
</title> |
|
</Helmet> |
|
|
|
<div className="space-y-1.5"> |
|
<h2 className="text-2xl font-semibold tracking-tight">{t`Reset your password`}</h2> |
|
<h6 className="leading-relaxed opacity-75"> |
|
{t`Enter a new password below, and make sure it's secure.`} |
|
</h6> |
|
</div> |
|
|
|
<div> |
|
<Form {...form}> |
|
<form |
|
ref={formRef} |
|
className="flex flex-col gap-y-4" |
|
onSubmit={form.handleSubmit(onSubmit)} |
|
> |
|
<FormField |
|
name="password" |
|
control={form.control} |
|
render={({ field }) => ( |
|
<FormItem> |
|
<FormLabel>{t`Password`}</FormLabel> |
|
<FormControl> |
|
<Input type="password" autoComplete="new-password" {...field} /> |
|
</FormControl> |
|
<FormDescription> |
|
<Trans> |
|
Hold <code className="text-xs font-bold">Ctrl</code> to display your password |
|
temporarily. |
|
</Trans> |
|
</FormDescription> |
|
<FormMessage /> |
|
</FormItem> |
|
)} |
|
/> |
|
|
|
<Button type="submit" disabled={loading} className="mt-4 w-full"> |
|
{t`Change Password`} |
|
</Button> |
|
</form> |
|
</Form> |
|
</div> |
|
</div> |
|
); |
|
}; |
|
|