mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-09 20:12:26 +10:00
103 lines
2.8 KiB
TypeScript
103 lines
2.8 KiB
TypeScript
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { Warning } from "@phosphor-icons/react";
|
|
import { twoFactorBackupSchema } from "@reactive-resume/dto";
|
|
import { usePasswordToggle } from "@reactive-resume/hooks";
|
|
import {
|
|
Button,
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
Input,
|
|
} from "@reactive-resume/ui";
|
|
import { AxiosError } from "axios";
|
|
import { useRef } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { useNavigate } from "react-router-dom";
|
|
import { z } from "zod";
|
|
|
|
import { toast } from "@/client/hooks/use-toast";
|
|
import { useBackupOtp } from "@/client/services/auth";
|
|
|
|
type FormValues = z.infer<typeof twoFactorBackupSchema>;
|
|
|
|
export const BackupOtpPage = () => {
|
|
const navigate = useNavigate();
|
|
const { backupOtp, loading } = useBackupOtp();
|
|
|
|
const formRef = useRef<HTMLFormElement>(null);
|
|
usePasswordToggle(formRef);
|
|
|
|
const form = useForm<FormValues>({
|
|
resolver: zodResolver(twoFactorBackupSchema),
|
|
defaultValues: { code: "" },
|
|
});
|
|
|
|
const onSubmit = async (data: FormValues) => {
|
|
try {
|
|
await backupOtp(data);
|
|
|
|
navigate("/dashboard");
|
|
} catch (error) {
|
|
form.reset();
|
|
|
|
if (error instanceof AxiosError) {
|
|
const message = error.response?.data.message || error.message;
|
|
|
|
toast({
|
|
variant: "error",
|
|
icon: <Warning size={16} weight="bold" />,
|
|
title: "An error occurred while trying to sign in",
|
|
description: message,
|
|
});
|
|
}
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-8">
|
|
<div className="space-y-1.5">
|
|
<h2 className="text-2xl font-semibold tracking-tight">Use your backup code</h2>
|
|
<h6 className="leading-relaxed opacity-60">
|
|
Enter one of the 10 backup codes you saved when you enabled two-factor authentication.
|
|
</h6>
|
|
</div>
|
|
|
|
<div>
|
|
<Form {...form}>
|
|
<form
|
|
ref={formRef}
|
|
className="flex flex-col gap-y-4"
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
>
|
|
<FormField
|
|
name="code"
|
|
control={form.control}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Backup Code</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
pattern="[a-z0-9]{10}"
|
|
placeholder="a1b2c3d4e5"
|
|
title="may contain lowercase letters or numbers, and must be exactly 10 characters."
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<Button type="submit" disabled={loading} className="mt-4 w-full">
|
|
Sign in
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|