| import React, { useState, useEffect } from 'react'; |
| import { useDispatch, useSelector } from 'react-redux'; |
| import { useNavigate } from 'react-router-dom'; |
| import { registerUser, clearError } from '../store/reducers/authSlice'; |
|
|
| const Register = () => { |
| const dispatch = useDispatch(); |
| const navigate = useNavigate(); |
| const { isAuthenticated, loading, error } = useSelector(state => state.auth); |
| |
| const isLoading = loading === 'pending'; |
|
|
| const [countryOptions, setCountryOptions] = useState([]); |
| const [languageOptions, setLanguageOptions] = useState([]); |
| const [loadingOptions, setLoadingOptions] = useState(false); |
|
|
| const [formData, setFormData] = useState({ |
| email: '', |
| password: '', |
| confirmPassword: '', |
| country: '', |
| language: '' |
| }); |
|
|
| const [showPassword, setShowPassword] = useState(false); |
| const [showConfirmPassword, setShowConfirmPassword] = useState(false); |
| const [passwordStrength, setPasswordStrength] = useState(0); |
| const [isFocused, setIsFocused] = useState({ |
| email: false, |
| password: false, |
| confirmPassword: false, |
| country: false, |
| language: false |
| }); |
|
|
| useEffect(() => { |
| if (isAuthenticated) { |
| navigate('/dashboard'); |
| } |
|
|
| |
| dispatch(clearError()); |
|
|
| |
| const loadOptions = async () => { |
| setLoadingOptions(true); |
| try { |
| const response = await fetch('/api/auth/registration-options'); |
| if (response.ok) { |
| const data = await response.json(); |
| if (data.success) { |
| setCountryOptions(data.countries); |
| setLanguageOptions(data.languages); |
| } |
| } |
| } catch (err) { |
| console.error('Failed to load registration options:', err); |
| |
| setCountryOptions([{ code: 'US', name: 'United States' }, { code: 'FR', name: 'France' }]); |
| setLanguageOptions([{ code: 'en', name: 'English' }, { code: 'fr', name: 'French' }]); |
| } finally { |
| setLoadingOptions(false); |
| } |
| }; |
|
|
| loadOptions(); |
| }, [isAuthenticated, navigate, dispatch]); |
|
|
| const handleChange = (e) => { |
| const { name, value } = e.target; |
| setFormData({ |
| ...formData, |
| [name]: value |
| }); |
|
|
| |
| if (name === 'password') { |
| calculatePasswordStrength(value); |
| } |
| }; |
|
|
| const calculatePasswordStrength = (password) => { |
| let strength = 0; |
|
|
| |
| if (password.length >= 8) strength += 1; |
| if (password.length >= 12) strength += 1; |
|
|
| |
| if (/[a-z]/.test(password)) strength += 1; |
| if (/[A-Z]/.test(password)) strength += 1; |
| if (/[0-9]/.test(password)) strength += 1; |
| if (/[^A-Za-z0-9]/.test(password)) strength += 1; |
|
|
| setPasswordStrength(Math.min(strength, 6)); |
| }; |
|
|
| const handleFocus = (field) => { |
| setIsFocused({ |
| ...isFocused, |
| [field]: true |
| }); |
| }; |
|
|
| const handleBlur = (field) => { |
| setIsFocused({ |
| ...isFocused, |
| [field]: false |
| }); |
| }; |
|
|
| const [showSuccess, setShowSuccess] = useState(false); |
|
|
| const handleSubmit = async (e) => { |
| e.preventDefault(); |
|
|
| |
| if (formData.password !== formData.confirmPassword) { |
| alert('Passwords do not match'); |
| return; |
| } |
|
|
| if (formData.password.length < 8) { |
| alert('Password must be at least 8 characters long'); |
| return; |
| } |
|
|
| try { |
| await dispatch(registerUser(formData)).unwrap(); |
| |
| setShowSuccess(true); |
| |
| setTimeout(() => { |
| navigate('/login'); |
| }, 3000); |
| } catch (err) { |
| |
| console.error('Registration failed:', err); |
| } |
| }; |
|
|
| const togglePasswordVisibility = () => { |
| setShowPassword(!showPassword); |
| }; |
|
|
| const toggleConfirmPasswordVisibility = () => { |
| setShowConfirmPassword(!showConfirmPassword); |
| }; |
|
|
| const toggleForm = () => { |
| dispatch(clearError()); |
| navigate('/login'); |
| }; |
|
|
| 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">Create Account</h1> |
| <p className="text-sm sm:text-base text-gray-600">Sign up to get started with Lin</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"> |
| {/* Success Message */} |
| {showSuccess && ( |
| <div className="bg-green-50 border border-green-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-green-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 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" /> |
| </svg> |
| <span className="text-green-700 text-xs sm:text-sm font-medium"> |
| Check your mail to confirm your account |
| </span> |
| </div> |
| </div> |
| )} |
| |
| {/* Error Message */} |
| {error && !showSuccess && ( |
| <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> |
| )} |
| |
| {/* Register 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" |
| autoComplete="email" |
| /> |
| <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> |
| |
| {/* Country Selection */} |
| <div className="space-y-2"> |
| <label htmlFor="country" className="block text-xs sm:text-sm font-semibold text-gray-700"> |
| Country |
| </label> |
| <select |
| id="country" |
| name="country" |
| value={formData.country} |
| onChange={handleChange} |
| onFocus={() => handleFocus('country')} |
| onBlur={() => handleBlur('country')} |
| className={`w-full px-3 sm:px-4 py-2 sm:py-3 rounded-xl border-2 transition-all duration-200 ${isFocused.country |
| ? 'border-primary-500 shadow-md' |
| : 'border-gray-200 hover:border-gray-300' |
| } ${formData.country ? 'text-gray-900' : 'text-gray-500'} focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-2 touch-manipulation`} |
| required |
| aria-required="true" |
| aria-label="Select your country" |
| > |
| <option value="">Select a country</option> |
| {loadingOptions ? ( |
| <option value="">Loading...</option> |
| ) : ( |
| countryOptions.map(country => ( |
| <option key={country.code} value={country.code}> |
| {country.name} |
| </option> |
| )) |
| )} |
| </select> |
| </div> |
| |
| {/* Language Selection */} |
| <div className="space-y-2"> |
| <label htmlFor="language" className="block text-xs sm:text-sm font-semibold text-gray-700"> |
| Language |
| </label> |
| <select |
| id="language" |
| name="language" |
| value={formData.language} |
| onChange={handleChange} |
| onFocus={() => handleFocus('language')} |
| onBlur={() => handleBlur('language')} |
| className={`w-full px-3 sm:px-4 py-2 sm:py-3 rounded-xl border-2 transition-all duration-200 ${isFocused.language |
| ? 'border-primary-500 shadow-md' |
| : 'border-gray-200 hover:border-gray-300' |
| } ${formData.language ? 'text-gray-900' : 'text-gray-500'} focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-2 touch-manipulation`} |
| required |
| aria-required="true" |
| aria-label="Select your language" |
| > |
| <option value="">Select a language</option> |
| {loadingOptions ? ( |
| <option value="">Loading...</option> |
| ) : ( |
| languageOptions.map(lang => ( |
| <option key={lang.code} value={lang.code}> |
| {lang.name} |
| </option> |
| )) |
| )} |
| </select> |
| </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="Create a password" |
| required |
| aria-required="true" |
| aria-label="Password" |
| autoComplete="new-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.514a2.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> |
| |
| {/* Password Strength Indicator */} |
| {formData.password && ( |
| <div className="space-y-1"> |
| <div className="flex justify-between text-xs"> |
| <span className="text-gray-600">Password strength</span> |
| <span className={`font-medium ${passwordStrength <= 2 ? 'text-red-600' : |
| passwordStrength <= 4 ? 'text-yellow-600' : |
| 'text-green-600' |
| }`}> |
| {passwordStrength <= 2 ? 'Weak' : |
| passwordStrength <= 4 ? 'Fair' : |
| passwordStrength === 5 ? 'Good' : 'Strong'} |
| </span> |
| </div> |
| <div className="w-full bg-gray-200 rounded-full h-1.5 sm:h-2"> |
| <div |
| className={`h-1.5 sm:h-2 rounded-full transition-all duration-300 ${passwordStrength <= 2 ? 'bg-red-500 w-1/3' : |
| passwordStrength <= 4 ? 'bg-yellow-500 w-2/3' : |
| passwordStrength === 5 ? 'bg-green-500 w-4/5' : |
| 'bg-green-600 w-full' |
| }`} |
| ></div> |
| </div> |
| <div className="text-xs text-gray-500"> |
| Use 8+ characters with uppercase, lowercase, numbers, and symbols |
| </div> |
| </div> |
| )} |
| </div> |
| |
| {/* Confirm Password Field */} |
| <div className="space-y-2"> |
| <label htmlFor="confirmPassword" className="block text-xs sm:text-sm font-semibold text-gray-700"> |
| Confirm Password |
| </label> |
| <div className="relative"> |
| <input |
| type={showConfirmPassword ? "text" : "password"} |
| id="confirmPassword" |
| name="confirmPassword" |
| value={formData.confirmPassword} |
| onChange={handleChange} |
| onFocus={() => handleFocus('confirmPassword')} |
| onBlur={() => handleBlur('confirmPassword')} |
| className={`w-full px-3 sm:px-4 py-2 sm:py-3 rounded-xl border-2 transition-all duration-200 ${isFocused.confirmPassword |
| ? 'border-primary-500 shadow-md' |
| : 'border-gray-200 hover:border-gray-300' |
| } ${formData.confirmPassword ? 'text-gray-900' : 'text-gray-500'} focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-2 touch-manipulation`} |
| placeholder="Confirm your password" |
| required |
| aria-required="true" |
| aria-label="Confirm password" |
| /> |
| <button |
| type="button" |
| onClick={toggleConfirmPasswordVisibility} |
| 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={showConfirmPassword ? "Hide confirm password" : "Show confirm password"} |
| > |
| {showConfirmPassword ? ( |
| <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.514a2.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> |
| {formData.confirmPassword && formData.password !== formData.confirmPassword && ( |
| <p className="text-red-600 text-xs">Passwords do not match</p> |
| )} |
| </div> |
| |
| {/* Terms and Conditions */} |
| <div className="flex items-start"> |
| <input |
| id="terms" |
| name="terms" |
| type="checkbox" |
| required |
| className="mt-1 h-4 w-4 text-primary-600 focus:ring-primary-500 border-gray-300 rounded transition-colors touch-manipulation" |
| aria-label="I agree to the Terms of Service and Privacy Policy" |
| /> |
| <label htmlFor="terms" className="ml-2 block text-xs sm:text-sm text-gray-700"> |
| I agree to the{' '} |
| <a href="#" className="text-primary-600 hover:text-primary-500 transition-colors focus:outline-none focus:underline"> |
| Terms of Service |
| </a>{' '} |
| and{' '} |
| <a href="#" className="text-primary-600 hover:text-primary-500 transition-colors focus:outline-none focus:underline"> |
| Privacy Policy |
| </a> |
| </label> |
| </div> |
| |
| {/* Submit Button */} |
| <button |
| type="submit" |
| disabled={isLoading} |
| 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={isLoading} |
| > |
| {isLoading ? ( |
| <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">Creating account...</span> |
| </div> |
| ) : ( |
| <span className="text-xs sm:text-sm">Create Account</span> |
| )} |
| </button> |
| |
| {/* Confirmation Message */} |
| {!error && !showSuccess && ( |
| <div className="text-center text-xs sm:text-sm text-gray-600"> |
| After registration, please check your email to confirm your account. |
| </div> |
| )} |
| </form> |
| |
| |
| {/* Login Link */} |
| <div className="text-center"> |
| <p className="text-xs sm:text-sm text-gray-600"> |
| Already 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="Sign in to your account" |
| > |
| Sign in |
| </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 Register; |