* Add lint-fix npm target * Sync eslint+plugins with backend * Add prettier * Ignore no-explicit-any lint rule for now * Silence eslint react warning * Format frontend via prettier * Lint frontend. --------- Co-authored-by: antanst <>
101 lines
3.8 KiB
TypeScript
101 lines
3.8 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { useNavigate } from 'react-router-dom';
|
|
import i18n from 'i18next';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
const Login: React.FC = () => {
|
|
const [email, setEmail] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [error, setError] = useState<string | null>(null);
|
|
const navigate = useNavigate();
|
|
const { t } = useTranslation();
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
|
|
try {
|
|
const response = await fetch('/api/login', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ email, password }),
|
|
credentials: 'include',
|
|
});
|
|
|
|
const data = await response.json();
|
|
|
|
if (response.ok) {
|
|
if (data.user && data.user.language) {
|
|
await i18n.changeLanguage(data.user.language);
|
|
}
|
|
|
|
window.dispatchEvent(
|
|
new CustomEvent('userLoggedIn', { detail: data.user })
|
|
);
|
|
|
|
navigate('/today');
|
|
} else {
|
|
setError(data.errors[0] || 'Login failed. Please try again.');
|
|
}
|
|
} catch (err) {
|
|
setError('An error occurred. Please try again.');
|
|
console.error('Error during login:', err);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="bg-gray-100 flex flex-col items-center justify-center min-h-screen px-4">
|
|
<h1 className="text-5xl font-bold text-gray-300 mb-6">tududi</h1>
|
|
<div className="bg-white p-8 rounded-lg shadow-md w-full max-w-sm">
|
|
{error && (
|
|
<div className="mb-4 text-center text-red-500">{error}</div>
|
|
)}
|
|
<form onSubmit={handleSubmit}>
|
|
<div className="mb-4">
|
|
<label
|
|
htmlFor="email"
|
|
className="block text-gray-600 mb-1"
|
|
>
|
|
{t('auth.email', 'Email')}
|
|
</label>
|
|
<input
|
|
type="email"
|
|
id="email"
|
|
name="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
className="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"
|
|
required
|
|
/>
|
|
</div>
|
|
<div className="mb-4">
|
|
<label
|
|
htmlFor="password"
|
|
className="block text-gray-600 mb-1"
|
|
>
|
|
{t('auth.password', 'Password')}
|
|
</label>
|
|
<input
|
|
type="password"
|
|
id="password"
|
|
name="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
className="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"
|
|
required
|
|
/>
|
|
</div>
|
|
<button
|
|
type="submit"
|
|
className="w-full bg-blue-500 text-white py-2 rounded-lg hover:bg-blue-600 transition-colors"
|
|
>
|
|
{t('auth.login', 'Login')}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Login;
|