React 18 + TypeScript + Vite 5 + Tailwind CSS + shadcn/ui frontend: - Multi-role auth: student, teacher, admin, corporate, agent, developer - Student portal: dashboard, courses, adaptive learning, exams, placement - Teacher portal: courses, assignments, grading, attendance, AI workbench - Admin portal: 60+ management pages (LMS, exams, users, entities, AI) - AI-powered features: study coach, generation page, gap analysis, TTS - Exam system: session, auto-save, results, grading queue - Full IELTS workflow: reading/listening/writing/speaking modules Made-with: Cursor
142 lines
5.4 KiB
TypeScript
142 lines
5.4 KiB
TypeScript
import { useState } from "react";
|
|
import { Link, useNavigate } from "react-router-dom";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
|
import { Eye, EyeOff, Loader2 } from "lucide-react";
|
|
import { useAuth } from "@/contexts/AuthContext";
|
|
import { useToast } from "@/hooks/use-toast";
|
|
import { ApiError } from "@/lib/api-client";
|
|
import type { UserRole } from "@/types/auth";
|
|
|
|
/** Keep in sync with `ProtectedRoute` post-login targets */
|
|
function getRoleDashboard(role: string): string {
|
|
switch (role as UserRole) {
|
|
case "student":
|
|
return "/student/dashboard";
|
|
case "teacher":
|
|
return "/teacher/dashboard";
|
|
case "admin":
|
|
case "developer":
|
|
return "/admin/dashboard";
|
|
case "corporate":
|
|
case "mastercorporate":
|
|
case "agent":
|
|
return "/admin/platform";
|
|
default:
|
|
return "/admin/dashboard";
|
|
}
|
|
}
|
|
|
|
function loginErrorMessage(err: unknown): string {
|
|
if (err instanceof ApiError && err.data && typeof err.data === "object" && err.data !== null && "error" in err.data) {
|
|
return String((err.data as { error: string }).error);
|
|
}
|
|
if (err instanceof Error) {
|
|
return err.message;
|
|
}
|
|
return "Login failed";
|
|
}
|
|
|
|
export default function Login() {
|
|
const [email, setEmail] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const [showPassword, setShowPassword] = useState(false);
|
|
const [loading, setLoading] = useState(false);
|
|
const navigate = useNavigate();
|
|
const { login } = useAuth();
|
|
const { toast } = useToast();
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
if (!email || !password) {
|
|
toast({ title: "Error", description: "Please enter email and password", variant: "destructive" });
|
|
return;
|
|
}
|
|
|
|
setLoading(true);
|
|
try {
|
|
const user = await login(email, password);
|
|
navigate(getRoleDashboard(user.user_type));
|
|
} catch (err: unknown) {
|
|
toast({ title: "Login Failed", description: loginErrorMessage(err), variant: "destructive" });
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-background p-4">
|
|
<div className="w-full max-w-md">
|
|
<div className="flex items-center justify-center gap-3 mb-8">
|
|
<img src="/logo.png" alt="EnCoach" className="h-12 w-12 rounded-xl object-contain" />
|
|
<h1 className="text-2xl font-bold tracking-tight">
|
|
<span className="text-[hsl(42,40%,62%)]">En</span>
|
|
<span className="text-[hsl(240,20%,30%)]">Coach</span>
|
|
</h1>
|
|
</div>
|
|
|
|
<Card className="shadow-lg border-0 bg-card">
|
|
<CardHeader className="text-center pb-4">
|
|
<CardTitle className="text-xl">Welcome back</CardTitle>
|
|
<CardDescription>Sign in to your account to continue</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
placeholder="you@example.com"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
disabled={loading}
|
|
/>
|
|
</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)}
|
|
disabled={loading}
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => setShowPassword(!showPassword)}
|
|
className="absolute right-3 top-1/2 -translate-y-1/2 text-muted-foreground hover:text-foreground"
|
|
>
|
|
{showPassword ? <EyeOff className="h-4 w-4" /> : <Eye className="h-4 w-4" />}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex items-center gap-2">
|
|
<Checkbox id="remember" />
|
|
<Label htmlFor="remember" className="text-sm font-normal cursor-pointer">Remember me</Label>
|
|
</div>
|
|
<Link to="/forgot-password" className="text-sm text-primary hover:underline">Forgot password?</Link>
|
|
</div>
|
|
<Button type="submit" className="w-full" disabled={loading}>
|
|
{loading && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
|
|
Sign in
|
|
</Button>
|
|
</form>
|
|
|
|
<p className="mt-6 text-center text-sm text-muted-foreground">
|
|
Don't have an account?{" "}
|
|
<Link to="/register" className="text-primary font-medium hover:underline">Sign up</Link>
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|