2026-02-14 16:56:10 +00:00
|
|
|
import { useState } from 'react'
|
|
|
|
|
import { useNavigate, Link } from 'react-router-dom'
|
2026-02-24 08:52:57 +00:00
|
|
|
import { useApp } from '../context/AppContext'
|
|
|
|
|
import { useApi } from '../hooks/useApi'
|
|
|
|
|
import { User } from '../types'
|
2026-02-14 16:56:10 +00:00
|
|
|
|
2026-02-24 08:52:57 +00:00
|
|
|
export default function Login() {
|
2026-02-14 16:56:10 +00:00
|
|
|
const [email, setEmail] = useState('')
|
|
|
|
|
const [password, setPassword] = useState('')
|
|
|
|
|
const [error, setError] = useState('')
|
|
|
|
|
const [loading, setLoading] = useState(false)
|
|
|
|
|
|
|
|
|
|
const navigate = useNavigate()
|
|
|
|
|
const { login } = useApp()
|
|
|
|
|
const { login: loginApi } = useApi()
|
|
|
|
|
|
2026-02-24 08:52:57 +00:00
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
2026-02-14 16:56:10 +00:00
|
|
|
e.preventDefault()
|
|
|
|
|
setError('')
|
|
|
|
|
setLoading(true)
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const response = await loginApi(email, password)
|
2026-02-24 08:52:57 +00:00
|
|
|
// Convert UserData to User type
|
|
|
|
|
const user: User = {
|
|
|
|
|
id: parseInt(response.user.id),
|
|
|
|
|
username: response.user.username,
|
|
|
|
|
email: response.user.email,
|
|
|
|
|
}
|
|
|
|
|
login(user, response.token)
|
2026-02-14 16:56:10 +00:00
|
|
|
navigate('/')
|
|
|
|
|
} catch (err) {
|
2026-02-24 08:52:57 +00:00
|
|
|
setError(err instanceof Error ? err.message : 'Login failed. Please try again.')
|
2026-02-14 16:56:10 +00:00
|
|
|
} finally {
|
|
|
|
|
setLoading(false)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="max-w-md mx-auto">
|
|
|
|
|
<h1 className="text-3xl font-bold text-white mb-8 text-center">Login</h1>
|
|
|
|
|
|
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-6">
|
|
|
|
|
{error && (
|
|
|
|
|
<div className="bg-red-900 border border-red-700 text-red-100 px-4 py-3 rounded">
|
|
|
|
|
{error}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<label htmlFor="email" className="block text-sm font-medium text-gray-300 mb-2">
|
|
|
|
|
Email
|
|
|
|
|
</label>
|
|
|
|
|
<input
|
|
|
|
|
id="email"
|
|
|
|
|
type="email"
|
|
|
|
|
value={email}
|
|
|
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
|
|
|
required
|
|
|
|
|
className="w-full px-4 py-2 bg-gray-800 border border-gray-700 rounded-lg text-white focus:ring-2 focus:ring-blue-500 focus:border-transparent"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<label htmlFor="password" className="block text-sm font-medium text-gray-300 mb-2">
|
|
|
|
|
Password
|
|
|
|
|
</label>
|
|
|
|
|
<input
|
|
|
|
|
id="password"
|
|
|
|
|
type="password"
|
|
|
|
|
value={password}
|
|
|
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
|
|
|
required
|
|
|
|
|
className="w-full px-4 py-2 bg-gray-800 border border-gray-700 rounded-lg text-white focus:ring-2 focus:ring-blue-500 focus:border-transparent"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
type="submit"
|
|
|
|
|
disabled={loading}
|
|
|
|
|
className="w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-4 rounded-lg transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
|
|
|
|
|
>
|
|
|
|
|
{loading ? 'Logging in...' : 'Login'}
|
|
|
|
|
</button>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<p className="mt-6 text-center text-gray-400">
|
|
|
|
|
Don't have an account?{' '}
|
|
|
|
|
<Link to="/register" className="text-blue-400 hover:text-blue-300">
|
|
|
|
|
Register
|
|
|
|
|
</Link>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|