126 lines
4.4 KiB
TypeScript
126 lines
4.4 KiB
TypeScript
import { useState } from "react"
|
|
import { useNavigate, useLocation } from "react-router-dom"
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
|
|
import { Button } from "@/components/ui/button"
|
|
import { Input } from "@/components/ui/input"
|
|
import { Label } from "@/components/ui/label"
|
|
import { Eye, EyeOff } from "lucide-react"
|
|
import { toast } from "sonner"
|
|
import { authService } from "@/services"
|
|
import { errorTracker } from "@/lib/error-tracker"
|
|
|
|
export default function LoginPage() {
|
|
const navigate = useNavigate()
|
|
const location = useLocation()
|
|
const [email, setEmail] = useState("")
|
|
const [password, setPassword] = useState("")
|
|
const [showPassword, setShowPassword] = useState(false)
|
|
const [isLoading, setIsLoading] = useState(false)
|
|
|
|
const from = (location.state as any)?.from?.pathname || "/admin/dashboard"
|
|
|
|
const handleLogin = async (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
setIsLoading(true)
|
|
|
|
try {
|
|
const response = await authService.login({ email, password })
|
|
|
|
// Check if user is admin
|
|
if (response.user.role !== 'ADMIN') {
|
|
toast.error("Access denied. Admin privileges required.")
|
|
setIsLoading(false)
|
|
return
|
|
}
|
|
|
|
// Set user context for error tracking
|
|
errorTracker.setUser({
|
|
id: response.user.id,
|
|
email: response.user.email,
|
|
name: `${response.user.firstName} ${response.user.lastName}`,
|
|
})
|
|
|
|
// Show success message
|
|
toast.success("Login successful!")
|
|
|
|
// Navigate to dashboard
|
|
navigate(from, { replace: true })
|
|
} catch (error: any) {
|
|
console.error('Login error:', error)
|
|
const message = error.response?.data?.message || "Invalid email or password"
|
|
toast.error(message)
|
|
|
|
// Track login error
|
|
errorTracker.trackError(error, {
|
|
extra: { email, action: 'login' }
|
|
})
|
|
|
|
setIsLoading(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-background p-4">
|
|
<Card className="w-full max-w-md">
|
|
<CardHeader className="space-y-1">
|
|
<div className="flex justify-center mb-4">
|
|
<div className="w-16 h-16 bg-primary rounded-lg flex items-center justify-center">
|
|
<span className="text-primary-foreground font-bold text-2xl">A</span>
|
|
</div>
|
|
</div>
|
|
<CardTitle className="text-2xl text-center">Admin Login</CardTitle>
|
|
<CardDescription className="text-center">
|
|
Enter your credentials to access the admin panel
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={handleLogin} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
placeholder="admin@example.com"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
required
|
|
disabled={isLoading}
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password">Password</Label>
|
|
<div className="relative">
|
|
<Input
|
|
id="password"
|
|
type={showPassword ? "text" : "password"}
|
|
placeholder="••••••••"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
required
|
|
disabled={isLoading}
|
|
className="pr-10"
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => setShowPassword(!showPassword)}
|
|
className="absolute right-3 top-1/2 -translate-y-1/2 text-muted-foreground hover:text-foreground transition-colors"
|
|
disabled={isLoading}
|
|
>
|
|
{showPassword ? (
|
|
<EyeOff className="w-4 h-4" />
|
|
) : (
|
|
<Eye className="w-4 h-4" />
|
|
)}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<Button type="submit" className="w-full" disabled={isLoading}>
|
|
{isLoading ? "Logging in..." : "Login"}
|
|
</Button>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
)
|
|
}
|