"use client" import { useState, useEffect, useRef } from "react"; import { useRouter, useSearchParams } from "next/navigation"; import Link from "next/link"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { toast } from "sonner"; import { Loader2, ArrowRight } from "lucide-react"; import { motion } from "framer-motion"; export default function LoginForm() { const [username, setUsername] = useState(""); const [password, setPassword] = useState(""); const [isLoading, setIsLoading] = useState(false); const [loginSuccess, setLoginSuccess] = useState(false); const redirectTimeoutRef = useRef(null); const router = useRouter(); const searchParams = useSearchParams(); const redirectUrl = searchParams.get("redirectUrl") || "/dashboard"; // Check if already logged in useEffect(() => { const authToken = document.cookie .split("; ") .find((row) => row.startsWith("Authorization=")) ?.split("=")[1]; if (authToken) { router.push("/dashboard"); } }, [router]); // Cleanup timeout on unmount useEffect(() => { return () => { if (redirectTimeoutRef.current) { clearTimeout(redirectTimeoutRef.current); } }; }, []); async function handleLogin(e: React.FormEvent) { e.preventDefault(); setIsLoading(true); try { const response = await fetch("/api/auth/login", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ username, password }), }); let data; try { data = await response.json(); } catch (parseError) { console.error("Login parse error:", parseError); toast.error("Server Error", { description: "The server response couldn't be processed. Please try again." }); setIsLoading(false); return; } if (response.ok && data.token) { document.cookie = `Authorization=${data.token}; path=/; Secure; SameSite=Strict; max-age=10800`; localStorage.setItem("Authorization", data.token); toast.success("Welcome back!", { duration: 2000 }); setLoginSuccess(true); router.push(redirectUrl); redirectTimeoutRef.current = setTimeout(() => { window.location.href = redirectUrl; }, 1500); } else { const errorMessage = data.error || data.message || data.details || "Invalid credentials"; toast.error("Access Denied", { description: errorMessage, }); setIsLoading(false); } } catch (error) { toast.error("Connection Error", { description: "Unable to connect to server.", }); setIsLoading(false); } } return (

Welcome back

Enter your credentials to access the dashboard

setUsername(e.target.value)} className="bg-white/5 border-white/10 text-white placeholder:text-zinc-500 focus:border-indigo-500/50 focus:ring-indigo-500/20 transition-all duration-300" placeholder="Enter your username" disabled={isLoading || loginSuccess} />
Forgot password?
setPassword(e.target.value)} className="bg-white/5 border-white/10 text-white placeholder:text-zinc-500 focus:border-indigo-500/50 focus:ring-indigo-500/20 transition-all duration-300" placeholder="Enter your password" disabled={isLoading || loginSuccess} />

Don't have an account?{" "} Sign up

); }