"use client"; import { useState } from "react"; import { useRouter } from "next/navigation"; import { createClientComponentClient } from "@supabase/auth-helpers-nextjs"; import Link from "next/link"; import { ChevronLeft, AlertCircle } from "lucide-react"; import { buttonVariants } from "@/components/ui/button"; import { cn } from "@/lib/utils"; import { Input } from "@/components/ui/input"; import { Button } from "@/components/ui/button"; import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage, } from "@/components/ui/form"; import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"; import { useForm } from "react-hook-form"; import { zodResolver } from "@hookform/resolvers/zod"; import * as z from "zod"; const authSchema = z.object({ email: z.string().email("Invalid email address"), password: z.string().min(8, "Password must be at least 8 characters"), }); export default function Login() { const [email, setEmail] = useState(""); const [error, setError] = useState("false"); const [view, setView] = useState("sign-in"); const router = useRouter(); const supabase = createClientComponentClient(); const form = useForm>({ resolver: zodResolver(authSchema), defaultValues: { email: "", password: "", }, }); async function handleSignUp(values: z.infer) { try { setError("false"); const { email, password } = values; const res = await supabase.auth.signUp({ email, password, options: { emailRedirectTo: `${location.origin}/auth/callback`, }, }); if (res.error) throw res.error; setEmail(email); setView("check-email"); } catch (error) { setError("sign-up-error"); } } async function handleSignIn(values: z.infer) { try { setError("false"); const { email, password } = values; const res = await supabase.auth.signInWithPassword({ email, password, }); if (res.error) throw res.error; router.push("/"); router.refresh(); } catch (error) { setError("sign-in-error"); } } return (
Back {view === "check-email" ? (

Check {email} to continue signing up

) : (
{error === "sign-in-error" && ( Error The email or password you entered is incorrect. )} {error === "sign-up-error" && ( Error The email or password you entered is incorrect. )}
( Email )} /> ( Password )} /> {view === "sign-in" && ( <>

Don't have an account?

)} {view === "sign-up" && ( <>

Already have an account?

)}
)}
); }