'use client'; import { useState, useEffect } 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 { useAuth } from '@/components/shared/AuthContext'; import { useNotification } from '@/components/shared/NotificationContext'; export default function LoginPage() { const router = useRouter(); const searchParams = useSearchParams(); const { showNotification } = useNotification(); const { login, isAuthenticated } = useAuth(); const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); const [error, setError] = useState(''); const [isLoading, setIsLoading] = useState(false); useEffect(() => { // Check if the user was redirected from signup if (searchParams.get('signup') === 'success') { showNotification('success', 'Account created successfully! Please log in.'); } // Redirect if already authenticated if (isAuthenticated) { router.push('/dashboard'); } }, [searchParams, showNotification, isAuthenticated, router]); const handleSubmit = async (e: React.FormEvent) => { e.preventDefault(); setError(''); setIsLoading(true); try { await login(email, password); showNotification('success', `Welcome back! You've been successfully logged in.`); router.push('/dashboard'); } catch (err: Error | unknown) { const errorMessage = err instanceof Error ? err.message : 'Login failed'; setError(errorMessage); } finally { setIsLoading(false); } }; return (