| import React, { useState, useEffect } from 'react'; |
| import { useDispatch, useSelector } from 'react-redux'; |
| import { useNavigate } from 'react-router-dom'; |
| import { loginUser, clearError, updateCacheInfo } from '../store/reducers/authSlice'; |
|
|
| const Login = () => { |
| const dispatch = useDispatch(); |
| const navigate = useNavigate(); |
| const { isAuthenticated, loading, error } = useSelector(state => state.auth); |
| |
| const [formData, setFormData] = useState({ |
| email: '', |
| password: '' |
| }); |
| |
| const [showPassword, setShowPassword] = useState(false); |
| const [rememberMe, setRememberMe] = useState(false); |
| const [isFocused, setIsFocused] = useState({ |
| email: false, |
| password: false |
| }); |
| |
| |
| useEffect(() => { |
| const rememberPref = localStorage.getItem('rememberMePreference'); |
| if (rememberPref === 'true') { |
| setRememberMe(true); |
| } |
| }, []); |
| |
| useEffect(() => { |
| if (isAuthenticated) { |
| navigate('/dashboard'); |
| return; |
| } |
| |
| |
| dispatch(clearError()); |
| |
| |
| if (loading === 'idle') { |
| const checkAuthStatus = async () => { |
| const token = localStorage.getItem('token'); |
| if (!token) { |
| return; |
| } |
| |
| try { |
| |
| const tokenData = JSON.parse(atob(token.split('.')[1])); |
| const isExpired = tokenData.exp * 1000 < Date.now(); |
| |
| if (isExpired) { |
| localStorage.removeItem('token'); |
| } |
| } catch (error) { |
| |
| localStorage.removeItem('token'); |
| } |
| }; |
| |
| checkAuthStatus(); |
| } |
| }, [isAuthenticated, loading, navigate, dispatch]); |
| |
| const handleChange = (e) => { |
| setFormData({ |
| ...formData, |
| [e.target.name]: e.target.value |
| }); |
| }; |
| |
| const handleFocus = (field) => { |
| setIsFocused({ |
| ...isFocused, |
| [field]: true |
| }); |
| }; |
| |
| const handleBlur = (field) => { |
| setIsFocused({ |
| ...isFocused, |
| [field]: false |
| }); |
| }; |
| |
| const handleSubmit = async (e) => { |
| e.preventDefault(); |
| |
| |
| if (loading === 'pending') { |
| return; |
| } |
| |
| try { |
| const result = await dispatch(loginUser({ |
| ...formData, |
| rememberMe: rememberMe |
| })).unwrap(); |
| |
| |
| dispatch(updateCacheInfo({ |
| isRemembered: rememberMe, |
| expiresAt: result.expiresAt, |
| deviceFingerprint: result.deviceFingerprint |
| })); |
| |
| navigate('/dashboard'); |
| } catch (err) { |
| |
| console.error('Login failed:', err); |
| } |
| }; |
| |
| const togglePasswordVisibility = () => { |
| setShowPassword(!showPassword); |
| }; |
| |
| const toggleForm = () => { |
| dispatch(clearError()); |
| navigate('/register'); |
| }; |
| |
| if (isAuthenticated) { |
| return null; |
| } |
| |
| return ( |
| <div className="min-h-screen bg-gradient-to-br from-primary-50 via-white to-accent-50 flex items-center justify-center p-3 sm:p-4 animate-fade-in"> |
| <div className="w-full max-w-sm sm:max-w-md"> |
| {/* Logo and Brand */} |
| <div className="text-center mb-6 sm:mb-8 animate-slide-up"> |
| <div className="inline-flex items-center justify-center w-14 h-14 sm:w-16 sm:h-16 bg-gradient-to-br from-primary-600 to-primary-800 rounded-2xl shadow-lg mb-3 sm:mb-4"> |
| <span className="text-xl sm:text-2xl font-bold text-white">Lin</span> |
| </div> |
| <h1 className="text-2xl sm:text-3xl font-bold text-gray-900 mb-1 sm:mb-2">Welcome Back</h1> |
| <p className="text-sm sm:text-base text-gray-600">Sign in to your Lin account</p> |
| </div> |
| |
| {/* Auth Card */} |
| <div className="bg-white rounded-2xl shadow-xl p-4 sm:p-8 space-y-4 sm:space-y-6 animate-slide-up animate-delay-100"> |
| {/* Error Message */} |
| {error && ( |
| <div className="bg-red-50 border border-red-200 rounded-lg p-3 sm:p-4 animate-slide-up animate-delay-200"> |
| <div className="flex items-start space-x-2"> |
| <svg className="w-4 h-4 sm:w-5 sm:h-5 text-red-500 flex-shrink-0 mt-0.5" fill="currentColor" viewBox="0 0 20 20"> |
| <path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /> |
| </svg> |
| <span className="text-red-700 text-xs sm:text-sm font-medium">{error}</span> |
| </div> |
| </div> |
| )} |
| |
| {/* Login Form */} |
| <form onSubmit={handleSubmit} className="space-y-4 sm:space-y-5"> |
| {/* Email Field */} |
| <div className="space-y-2"> |
| <label htmlFor="email" className="block text-xs sm:text-sm font-semibold text-gray-700"> |
| Email Address |
| </label> |
| <div className="relative"> |
| <input |
| type="email" |
| id="email" |
| name="email" |
| value={formData.email} |
| onChange={handleChange} |
| onFocus={() => handleFocus('email')} |
| onBlur={() => handleBlur('email')} |
| className={`w-full px-3 sm:px-4 py-2 sm:py-3 rounded-xl border-2 transition-all duration-200 ${ |
| isFocused.email |
| ? 'border-primary-500 shadow-md' |
| : 'border-gray-200 hover:border-gray-300' |
| } ${formData.email ? 'text-gray-900' : 'text-gray-500'} focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-2 touch-manipulation`} |
| placeholder="Enter your email" |
| required |
| aria-required="true" |
| aria-label="Email address" |
| /> |
| <div className="absolute inset-y-0 right-0 flex items-center pr-3"> |
| <svg className="w-4 h-4 sm:w-5 sm:h-5 text-gray-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884z" /> |
| <path d="M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z" /> |
| </svg> |
| </div> |
| </div> |
| </div> |
| |
| {/* Password Field */} |
| <div className="space-y-2"> |
| <label htmlFor="password" className="block text-xs sm:text-sm font-semibold text-gray-700"> |
| Password |
| </label> |
| <div className="relative"> |
| <input |
| type={showPassword ? "text" : "password"} |
| id="password" |
| name="password" |
| value={formData.password} |
| onChange={handleChange} |
| onFocus={() => handleFocus('password')} |
| onBlur={() => handleBlur('password')} |
| className={`w-full px-3 sm:px-4 py-2 sm:py-3 rounded-xl border-2 transition-all duration-200 ${ |
| isFocused.password |
| ? 'border-primary-500 shadow-md' |
| : 'border-gray-200 hover:border-gray-300' |
| } ${formData.password ? 'text-gray-900' : 'text-gray-500'} focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-2 touch-manipulation`} |
| placeholder="Enter your password" |
| required |
| aria-required="true" |
| aria-label="Password" |
| /> |
| <button |
| type="button" |
| onClick={togglePasswordVisibility} |
| className="absolute inset-y-0 right-0 flex items-center pr-3 text-gray-400 hover:text-gray-600 transition-colors touch-manipulation" |
| aria-label={showPassword ? "Hide password" : "Show password"} |
| > |
| {showPassword ? ( |
| <svg className="w-4 h-4 sm:w-5 sm:h-5" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M10 12a2 2 0 100-4 2 2 0 000 4z" /> |
| <path fillRule="evenodd" d="M.458 10C1.732 5.943 5.522 3 10 3s8.268 2.943 9.542 7c-1.274 4.057-5.064 7-9.542 7S1.732 14.057.458 10zM14 10a4 4 0 11-8 0 4 4 0 018 0z" clipRule="evenodd" /> |
| </svg> |
| ) : ( |
| <svg className="w-4 h-4 sm:w-5 sm:h-5" fill="currentColor" viewBox="0 0 20 20"> |
| <path fillRule="evenodd" d="M3.707 2.293a1 1 0 00-1.414 1.414l14 14a1 1 0 001.414-1.414l-1.473-1.473A10.014 10.014 0 0019.542 10C18.268 5.943 14.478 3 10 3a9.958 9.958 0 00-4.512 1.074l-1.78-1.781zm4.261 4.26l1.514 1.515a2.003 2.003 0 012.45 2.45l1.514 1.514a4 4 0 00-5.478-5.478z" clipRule="evenodd" /> |
| <path d="M12.454 16.697L9.75 13.992a4 4 0 01-3.742-3.741L2.335 6.578A9.98 9.98 0 00.458 10c1.274 4.057 5.065 7 9.542 7 .847 0 1.669-.105 2.454-.303z" /> |
| </svg> |
| )} |
| </button> |
| </div> |
| </div> |
| |
| {/* Remember Me & Forgot Password */} |
| <div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3"> |
| <div className="flex items-center"> |
| <input |
| id="remember-me" |
| name="remember-me" |
| type="checkbox" |
| checked={rememberMe} |
| onChange={(e) => { |
| setRememberMe(e.target.checked); |
| // Save preference |
| localStorage.setItem('rememberMePreference', e.target.checked.toString()); |
| }} |
| className="h-4 w-4 text-primary-600 focus:ring-primary-500 border-gray-300 rounded transition-colors touch-manipulation" |
| aria-label="Remember me" |
| /> |
| <label htmlFor="remember-me" className="ml-2 block text-xs sm:text-sm text-gray-700"> |
| Remember me for 7 days |
| </label> |
| </div> |
| <div className="text-xs sm:text-sm"> |
| <a href="#" className="font-medium text-primary-600 hover:text-primary-500 transition-colors focus:outline-none focus:underline"> |
| Forgot password? |
| </a> |
| </div> |
| </div> |
| |
| {/* Submit Button */} |
| <button |
| type="submit" |
| disabled={loading === 'pending'} |
| className="w-full bg-gradient-to-r from-primary-600 to-primary-800 text-white font-semibold py-2.5 sm:py-3 px-4 rounded-xl hover:from-primary-700 hover:to-primary-900 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-2 transition-all duration-200 transform hover:scale-[1.02] active:scale-[0.98] disabled:opacity-50 disabled:cursor-not-allowed disabled:transform-none touch-manipulation" |
| aria-busy={loading === 'pending'} |
| > |
| {loading === 'pending' ? ( |
| <div className="flex items-center justify-center"> |
| <svg className="animate-spin -ml-1 mr-2 sm:mr-3 h-4 w-4 sm:h-5 sm:w-5 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> |
| <circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle> |
| <path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path> |
| </svg> |
| <span className="text-xs sm:text-sm">Signing in...</span> |
| </div> |
| ) : ( |
| <span className="text-xs sm:text-sm">Sign in</span> |
| )} |
| </button> |
| </form> |
| |
| {/* Divider */} |
| <div className="relative my-4 sm:my-6"> |
| <div className="absolute inset-0 flex items-center"> |
| <div className="w-full border-t border-gray-300"></div> |
| </div> |
| <div className="relative flex justify-center text-xs sm:text-sm"> |
| <span className="px-2 bg-white text-gray-500">Or continue with</span> |
| </div> |
| </div> |
| |
| {/* Social Login Buttons */} |
| <div className="grid grid-cols-2 gap-2 sm:gap-3"> |
| <button |
| type="button" |
| className="w-full flex items-center justify-center px-3 sm:px-4 py-2.5 sm:py-2 border border-gray-300 rounded-xl bg-white text-xs sm:text-sm font-medium text-gray-700 hover:bg-gray-50 transition-colors focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500 touch-manipulation active:scale-95" |
| aria-label="Sign in with Google" |
| > |
| <svg className="w-4 h-4 sm:w-5 sm:h-5" fill="currentColor" viewBox="0 0 24 24"> |
| <path d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/> |
| <path d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/> |
| <path d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/> |
| <path d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/> |
| </svg> |
| <span className="ml-2 text-xs sm:text-sm">Google</span> |
| </button> |
| |
| <button |
| type="button" |
| className="w-full flex items-center justify-center px-3 sm:px-4 py-2.5 sm:py-2 border border-gray-300 rounded-xl bg-white text-xs sm:text-sm font-medium text-gray-700 hover:bg-gray-50 transition-colors focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500 touch-manipulation active:scale-95" |
| aria-label="Sign in with LinkedIn" |
| > |
| <svg className="w-4 h-4 sm:w-5 sm:h-5" fill="currentColor" viewBox="0 0 24 24"> |
| <path d="M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.024-.105-.949-.199-2.403.041-3.439.219-.937 1.219-5.175 1.219-5.175s-.311-.623-.311-1.543c0-1.446.839-2.526 1.885-2.526.888 0 1.318.666 1.318 1.466 0 .893-.568 2.229-.861 3.467-.245 1.04.52 1.888 1.546 1.888 1.856 0 3.283-1.958 3.283-4.789 0-2.503-1.799-4.253-4.37-4.253-2.977 0-4.727 2.234-4.727 4.546 0 .9.347 1.863.781 2.387.085.104.098.195.072.301-.079.329-.254 1.037-.289 1.183-.047.196-.153.238-.353.144-1.314-.612-2.137-2.536-2.137-4.078 0-3.298 2.394-6.325 6.901-6.325 3.628 0 6.44 2.586 6.44 6.043 0 3.607-2.274 6.505-5.431 6.505-1.06 0-2.057-.552-2.396-1.209 0 0-.523 1.992-.65 2.479-.235.9-.871 2.028-1.297 2.717.976.301 2.018.461 3.096.461 6.624 0 11.99-5.367 11.99-11.987C24.007 5.367 18.641.001 12.017.001z"/> |
| </svg> |
| <span className="ml-2 text-xs sm:text-sm">LinkedIn</span> |
| </button> |
| </div> |
| |
| {/* Register Link */} |
| <div className="text-center"> |
| <p className="text-xs sm:text-sm text-gray-600"> |
| Don't have an account?{' '} |
| <button |
| type="button" |
| onClick={toggleForm} |
| className="font-semibold text-primary-600 hover:text-primary-500 transition-colors focus:outline-none focus:underline" |
| aria-label="Create a new account" |
| > |
| Create account |
| </button> |
| </p> |
| </div> |
| </div> |
| |
| {/* Footer */} |
| <div className="text-center mt-6 sm:mt-8 text-xs text-gray-500"> |
| <p>© 2024 Lin. All rights reserved.</p> |
| </div> |
| </div> |
| </div> |
| ); |
| }; |
|
|
| export default Login; |