wulf-pulse/components/auth/magic-link-form.tsx

135 lines
3.8 KiB
TypeScript
Raw Normal View History

"use client";
import { useState } from "react";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { z } from "zod";
import { Mail, Loader2, CheckCircle } from "lucide-react";
import { toast } from "sonner";
import { authClient } from "@/lib/auth-client";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import {
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
} from "@/components/ui/form";
const formSchema = z.object({
email: z.string().email("Please enter a valid email address"),
});
type FormData = z.infer<typeof formSchema>;
export function MagicLinkForm() {
const [isLoading, setIsLoading] = useState(false);
const [emailSent, setEmailSent] = useState(false);
const [sentEmail, setSentEmail] = useState("");
const form = useForm<FormData>({
resolver: zodResolver(formSchema),
defaultValues: {
email: "",
},
});
async function onSubmit(data: FormData) {
setIsLoading(true);
try {
const result = await authClient.signIn.magicLink({
email: data.email,
callbackURL: "/",
});
if (result.error) {
toast.error(result.error.message || "Failed to send magic link");
return;
}
setEmailSent(true);
setSentEmail(data.email);
toast.success("Magic link sent! Check your email.");
} catch (error) {
toast.error("An unexpected error occurred");
console.error("Magic link error:", error);
} finally {
setIsLoading(false);
}
}
if (emailSent) {
return (
<div className="text-center space-y-4 py-4">
<div className="flex justify-center">
<div className="h-16 w-16 rounded-full bg-green-100 dark:bg-green-900/30 flex items-center justify-center">
<CheckCircle className="h-8 w-8 text-green-600 dark:text-green-400" />
</div>
</div>
<div className="space-y-2">
<h3 className="text-lg font-semibold">Check your email</h3>
<p className="text-sm text-muted-foreground">
We sent a magic link to <strong>{sentEmail}</strong>
</p>
<p className="text-xs text-muted-foreground">
Click the link in the email to sign in. The link expires in 5 minutes.
</p>
</div>
<Button
variant="ghost"
className="text-sm"
onClick={() => {
setEmailSent(false);
form.reset();
}}
>
Use a different email
</Button>
</div>
);
}
return (
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
<FormField
control={form.control}
name="email"
render={({ field }) => (
<FormItem>
<FormLabel>Email</FormLabel>
<FormControl>
<div className="relative">
<Mail className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
<Input
placeholder="you@example.com"
className="pl-10"
{...field}
disabled={isLoading}
/>
</div>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<Button type="submit" className="w-full" disabled={isLoading}>
{isLoading ? (
<>
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
Sending magic link...
</>
) : (
<>
<Mail className="mr-2 h-4 w-4" />
Send magic link
</>
)}
</Button>
</form>
</Form>
);
}