CodeReview/frontend/src/pages/Login.tsx

96 lines
3.5 KiB
TypeScript
Raw Normal View History

import { useState, FormEvent, useEffect } from 'react';
import { useNavigate, useLocation } from 'react-router-dom';
import { useAuth } from '@/shared/context/AuthContext';
import { apiClient } from '@/shared/api/serverClient';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card';
import { toast } from 'sonner';
export default function Login() {
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [loading, setLoading] = useState(false);
const navigate = useNavigate();
const location = useLocation();
const { login, isAuthenticated } = useAuth();
const from = location.state?.from?.pathname || '/';
// 监听认证状态,登录成功后自动跳转
useEffect(() => {
if (isAuthenticated && !loading) {
navigate(from, { replace: true });
}
}, [isAuthenticated, navigate, from, loading]);
const handleSubmit = async (e: FormEvent) => {
e.preventDefault();
setLoading(true);
try {
const formData = new URLSearchParams();
formData.append('username', email);
formData.append('password', password);
const response = await apiClient.post('/auth/login', formData, {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
});
await login(response.data.access_token);
toast.success('登录成功');
// 跳转由 useEffect 监听 isAuthenticated 状态变化自动处理
} catch (error: any) {
toast.error(error.response?.data?.detail || '登录失败');
} finally {
setLoading(false);
}
};
return (
<div className="min-h-screen flex items-center justify-center bg-gray-50 px-4">
<Card className="w-full max-w-md">
<CardHeader className="space-y-1">
<CardTitle className="text-2xl font-bold text-center">XCodeReviewer</CardTitle>
<CardDescription className="text-center"></CardDescription>
</CardHeader>
<CardContent>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="email"></Label>
<Input
id="email"
type="email"
placeholder="name@example.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
required
/>
</div>
<div className="space-y-2">
<Label htmlFor="password"></Label>
<Input
id="password"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
/>
</div>
<Button type="submit" className="w-full" disabled={loading}>
{loading ? '登录中...' : '登录'}
</Button>
</form>
</CardContent>
<CardFooter className="flex flex-col space-y-2">
<div className="text-sm text-center text-gray-500">
<span className="text-blue-600 cursor-pointer hover:underline" onClick={() => navigate('/register')}></span>
</div>
</CardFooter>
</Card>
</div>
);
}