| | import React, { useState, useEffect } from 'react';
|
| | import { authService, testCors } from './services/api';
|
| | import Dashboard from './components/Dashboard/Dashboard';
|
| |
|
| | function App() {
|
| | const [user, setUser] = useState(null);
|
| | const [isLogin, setIsLogin] = useState(true);
|
| | const [formData, setFormData] = useState({
|
| | username: '',
|
| | email: '',
|
| | password: '',
|
| | displayName: ''
|
| | });
|
| | const [loading, setLoading] = useState(false);
|
| | const [error, setError] = useState('');
|
| | const [corsWorking, setCorsWorking] = useState(false);
|
| |
|
| |
|
| | useEffect(() => {
|
| | testCorsConnection();
|
| | checkExistingAuth();
|
| | }, []);
|
| |
|
| | const checkExistingAuth = async () => {
|
| | const token = localStorage.getItem('token');
|
| | const userData = localStorage.getItem('user');
|
| |
|
| | if (token && userData) {
|
| | try {
|
| |
|
| | const response = await authService.getMe();
|
| | setUser(response.user);
|
| | } catch (error) {
|
| |
|
| | localStorage.removeItem('token');
|
| | localStorage.removeItem('user');
|
| | console.log('Session expired, please login again');
|
| | }
|
| | }
|
| | };
|
| |
|
| | const testCorsConnection = async () => {
|
| | try {
|
| | const result = await testCors();
|
| | setCorsWorking(true);
|
| | console.log('CORS test passed:', result);
|
| | } catch (error) {
|
| | setCorsWorking(false);
|
| | console.error('CORS test failed:', error);
|
| | }
|
| | };
|
| |
|
| | const handleSubmit = async (e) => {
|
| | e.preventDefault();
|
| | setLoading(true);
|
| | setError('');
|
| |
|
| | try {
|
| | let response;
|
| | if (isLogin) {
|
| |
|
| | response = await authService.login({
|
| | email: formData.email,
|
| | password: formData.password
|
| | });
|
| | } else {
|
| |
|
| | response = await authService.register(formData);
|
| | }
|
| |
|
| |
|
| | setUser(response.user);
|
| | localStorage.setItem('token', response.token);
|
| | localStorage.setItem('user', JSON.stringify(response.user));
|
| |
|
| |
|
| | setFormData({
|
| | username: '',
|
| | email: '',
|
| | password: '',
|
| | displayName: ''
|
| | });
|
| |
|
| | } catch (error) {
|
| | console.error('Auth error details:', error);
|
| | setError(error.error || 'Something went wrong! Please check the console for details.');
|
| | } finally {
|
| | setLoading(false);
|
| | }
|
| | };
|
| |
|
| | const handleLogout = () => {
|
| | setUser(null);
|
| | localStorage.removeItem('token');
|
| | localStorage.removeItem('user');
|
| | };
|
| |
|
| | const handleChange = (e) => {
|
| | setFormData(prev => ({
|
| | ...prev,
|
| | [e.target.name]: e.target.value
|
| | }));
|
| | setError('');
|
| | };
|
| |
|
| |
|
| | if (user) {
|
| | return <Dashboard user={user} onLogout={handleLogout} />;
|
| | }
|
| |
|
| |
|
| | return (
|
| | <div className="min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100 flex items-center justify-center p-4">
|
| | <div className="max-w-md w-full bg-white rounded-2xl shadow-xl overflow-hidden">
|
| | {/* Header */}
|
| | <div className="bg-gradient-to-r from-blue-600 to-indigo-700 p-8 text-center">
|
| | <h1 className="text-3xl font-bold text-white mb-2">YSNRFD Messenger</h1>
|
| | <p className="text-blue-100">Connect with anyone, anywhere</p>
|
| | </div>
|
| |
|
| | {/* Form */}
|
| | <div className="p-8">
|
| | {/* Connection Status */}
|
| | <div className={`mb-4 p-3 rounded-lg text-center text-sm ${
|
| | corsWorking
|
| | ? 'bg-green-50 text-green-700 border border-green-200'
|
| | : 'bg-yellow-50 text-yellow-700 border border-yellow-200'
|
| | }`}>
|
| | {corsWorking ? (
|
| | <span>✅ Backend connection working!</span>
|
| | ) : (
|
| | <span>⚠️ Checking backend connection...</span>
|
| | )}
|
| | </div>
|
| |
|
| | {/* Toggle */}
|
| | <div className="flex mb-6 bg-gray-100 rounded-lg p-1">
|
| | <button
|
| | type="button"
|
| | onClick={() => setIsLogin(true)}
|
| | className={`flex-1 py-2 px-4 rounded-md transition-colors ${
|
| | isLogin ? 'bg-white shadow-sm text-blue-600' : 'text-gray-600'
|
| | }`}
|
| | >
|
| | Sign In
|
| | </button>
|
| | <button
|
| | type="button"
|
| | onClick={() => setIsLogin(false)}
|
| | className={`flex-1 py-2 px-4 rounded-md transition-colors ${
|
| | !isLogin ? 'bg-white shadow-sm text-blue-600' : 'text-gray-600'
|
| | }`}
|
| | >
|
| | Sign Up
|
| | </button>
|
| | </div>
|
| |
|
| | {/* Error Message */}
|
| | {error && (
|
| | <div className="mb-4 p-3 bg-red-50 border border-red-200 rounded-lg">
|
| | <p className="text-red-600 text-sm font-medium">Error: {error}</p>
|
| | </div>
|
| | )}
|
| |
|
| | <form onSubmit={handleSubmit} className="space-y-4">
|
| | {!isLogin && (
|
| | <>
|
| | <div>
|
| | <label className="block text-sm font-medium text-gray-700 mb-1">
|
| | Username
|
| | </label>
|
| | <input
|
| | type="text"
|
| | name="username"
|
| | value={formData.username}
|
| | onChange={handleChange}
|
| | required
|
| | className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"
|
| | placeholder="Choose a username"
|
| | />
|
| | </div>
|
| | <div>
|
| | <label className="block text-sm font-medium text-gray-700 mb-1">
|
| | Display Name
|
| | </label>
|
| | <input
|
| | type="text"
|
| | name="displayName"
|
| | value={formData.displayName}
|
| | onChange={handleChange}
|
| | required
|
| | className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"
|
| | placeholder="Your display name"
|
| | />
|
| | </div>
|
| | </>
|
| | )}
|
| |
|
| | <div>
|
| | <label className="block text-sm font-medium text-gray-700 mb-1">
|
| | Email
|
| | </label>
|
| | <input
|
| | type="email"
|
| | name="email"
|
| | value={formData.email}
|
| | onChange={handleChange}
|
| | required
|
| | className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"
|
| | placeholder="Enter your email"
|
| | />
|
| | </div>
|
| |
|
| | <div>
|
| | <label className="block text-sm font-medium text-gray-700 mb-1">
|
| | Password
|
| | </label>
|
| | <input
|
| | type="password"
|
| | name="password"
|
| | value={formData.password}
|
| | onChange={handleChange}
|
| | required
|
| | minLength="6"
|
| | className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"
|
| | placeholder="Enter your password"
|
| | />
|
| | </div>
|
| |
|
| | <button
|
| | type="submit"
|
| | disabled={loading || !corsWorking}
|
| | className="w-full bg-blue-600 text-white py-3 px-4 rounded-lg hover:bg-blue-700 transition-colors font-medium disabled:opacity-50 disabled:cursor-not-allowed"
|
| | >
|
| | {loading ? (
|
| | <div className="flex items-center justify-center">
|
| | <div className="animate-spin rounded-full h-5 w-5 border-b-2 border-white mr-2"></div>
|
| | {isLogin ? 'Signing In...' : 'Creating Account...'}
|
| | </div>
|
| | ) : (
|
| | isLogin ? 'Sign In' : 'Create Account'
|
| | )}
|
| | </button>
|
| | </form>
|
| |
|
| | {/* Demo Note */}
|
| | <div className="mt-6 p-4 bg-blue-50 rounded-lg">
|
| | <p className="text-sm text-blue-700 text-center">
|
| | <strong>Welcome to YSNRFD Messenger!</strong><br />
|
| | After login, you'll see the full messaging interface
|
| | </p>
|
| | </div>
|
| | </div>
|
| | </div>
|
| | </div>
|
| | );
|
| | }
|
| |
|
| | export default App; |