mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
125 lines
2.8 KiB
TypeScript
125 lines
2.8 KiB
TypeScript
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
|
|
import { CardTitle } from "@/components/ui/card";
|
|
import { api } from "@/utils/api";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { AlertTriangle } from "lucide-react";
|
|
import { useEffect } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { toast } from "sonner";
|
|
import { z } from "zod";
|
|
import {
|
|
InputOTP,
|
|
InputOTPGroup,
|
|
InputOTPSlot,
|
|
} from "@/components/ui/input-otp";
|
|
import { useRouter } from "next/router";
|
|
|
|
const Login2FASchema = z.object({
|
|
pin: z.string().min(6, {
|
|
message: "Pin is required",
|
|
}),
|
|
});
|
|
|
|
type Login2FA = z.infer<typeof Login2FASchema>;
|
|
|
|
interface Props {
|
|
authId: string;
|
|
}
|
|
|
|
export const Login2FA = ({ authId }: Props) => {
|
|
const { push } = useRouter();
|
|
|
|
const { mutateAsync, isLoading, isError, error } =
|
|
api.auth.verifyLogin2FA.useMutation();
|
|
|
|
const form = useForm<Login2FA>({
|
|
defaultValues: {
|
|
pin: "",
|
|
},
|
|
resolver: zodResolver(Login2FASchema),
|
|
});
|
|
|
|
useEffect(() => {
|
|
form.reset({
|
|
pin: "",
|
|
});
|
|
}, [form, form.reset, form.formState.isSubmitSuccessful]);
|
|
|
|
const onSubmit = async (data: Login2FA) => {
|
|
await mutateAsync({
|
|
pin: data.pin,
|
|
id: authId,
|
|
})
|
|
.then(() => {
|
|
toast.success("Signin succesfully", {
|
|
duration: 2000,
|
|
});
|
|
|
|
push("/dashboard/projects");
|
|
})
|
|
.catch(() => {
|
|
toast.error("Signin failed", {
|
|
duration: 2000,
|
|
});
|
|
});
|
|
};
|
|
return (
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className="grid w-full gap-4"
|
|
>
|
|
{isError && (
|
|
<div className="flex flex-row gap-4 rounded-lg items-center bg-red-50 p-2 dark:bg-red-950">
|
|
<AlertTriangle className="text-red-600 dark:text-red-400" />
|
|
<span className="text-sm text-red-600 dark:text-red-400">
|
|
{error?.message}
|
|
</span>
|
|
</div>
|
|
)}
|
|
<CardTitle className="text-xl font-bold">2FA Setup</CardTitle>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="pin"
|
|
render={({ field }) => (
|
|
<FormItem className="flex flex-col justify-center max-sm:items-center">
|
|
<FormLabel>Pin</FormLabel>
|
|
<FormControl>
|
|
<InputOTP maxLength={6} {...field}>
|
|
<InputOTPGroup>
|
|
<InputOTPSlot index={0} />
|
|
<InputOTPSlot index={1} />
|
|
<InputOTPSlot index={2} />
|
|
<InputOTPSlot index={3} />
|
|
<InputOTPSlot index={4} />
|
|
<InputOTPSlot index={5} />
|
|
</InputOTPGroup>
|
|
</InputOTP>
|
|
</FormControl>
|
|
<FormDescription>
|
|
Please enter the 6 digits code provided by your authenticator
|
|
app.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<Button isLoading={isLoading} type="submit">
|
|
Submit 2FA
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
);
|
|
};
|