140 lines
4.9 KiB
TypeScript
140 lines
4.9 KiB
TypeScript
'use client';
|
|
import React, { useState } from 'react';
|
|
import { auth } from '@/app/firebase/config';
|
|
import { signInWithEmailAndPassword, createUserWithEmailAndPassword } from 'firebase/auth';
|
|
import GoogleSignInButton from '../firebase/components/GoogleSignInButton';
|
|
import { useRouter } from 'next/navigation';
|
|
import { LoginSologin, RegisterSologin } from '../sologin';
|
|
|
|
const AuthTabs = () => {
|
|
const [activeTab, setActiveTab] = useState<'signin' | 'signup'>('signin');
|
|
const [email, setEmail] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [error, setError] = useState<string | null>(null);
|
|
const router = useRouter();
|
|
|
|
const onAuthSuccess = () => {
|
|
router.push('/');
|
|
};
|
|
|
|
const handleAuth = async (e: React.FormEvent<HTMLFormElement>) => {
|
|
e.preventDefault();
|
|
try {
|
|
if (activeTab === 'signin') {
|
|
const userCredential = await signInWithEmailAndPassword(auth, email, password);
|
|
console.log('User signed in:', userCredential.user);
|
|
await LoginSologin(userCredential.user);
|
|
} else {
|
|
const userCredential = await createUserWithEmailAndPassword(auth, email, password);
|
|
console.log('User signed up:', userCredential.user);
|
|
await RegisterSologin(userCredential.user);
|
|
}
|
|
onAuthSuccess();
|
|
setEmail('');
|
|
setPassword('');
|
|
setError(null);
|
|
} catch (err: any) {
|
|
const errorCode = err.code;
|
|
switch (errorCode) {
|
|
case 'auth/user-not-found':
|
|
setError('User not found. Please check your email.');
|
|
break;
|
|
case 'auth/email-already-in-use':
|
|
setError('This email is already registered. Try signing in.');
|
|
break;
|
|
case 'auth/wrong-password':
|
|
setError('Incorrect email or password.');
|
|
break;
|
|
default:
|
|
setError('An unexpected error occurred. Please try again.');
|
|
}
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gray-900 flex items-center justify-center">
|
|
<div className="bg-gray-800 p-8 rounded-lg shadow-lg w-full sm:w-96">
|
|
<div className="flex border-b border-gray-600 mb-6">
|
|
<button
|
|
className={`flex-1 py-2 text-center ${
|
|
activeTab === 'signin'
|
|
? 'text-white border-b-2 border-blue-500'
|
|
: 'text-gray-400 hover:text-white'
|
|
}`}
|
|
onClick={() => setActiveTab('signin')}
|
|
>
|
|
Sign In
|
|
</button>
|
|
<button
|
|
className={`flex-1 py-2 text-center ${
|
|
activeTab === 'signup'
|
|
? 'text-white border-b-2 border-blue-500'
|
|
: 'text-gray-400 hover:text-white'
|
|
}`}
|
|
onClick={() => setActiveTab('signup')}
|
|
>
|
|
Sign Up
|
|
</button>
|
|
</div>
|
|
<form onSubmit={handleAuth}>
|
|
<div className="mb-4">
|
|
<label className="block text-sm text-gray-300 mb-2" htmlFor="email">
|
|
Email Address
|
|
</label>
|
|
<input
|
|
type="email"
|
|
id="email"
|
|
className="w-full p-3 bg-gray-700 text-white rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"
|
|
placeholder="Enter your email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
required
|
|
/>
|
|
</div>
|
|
<div className="mb-6">
|
|
<label className="block text-sm text-gray-300 mb-2" htmlFor="password">
|
|
Password
|
|
</label>
|
|
<input
|
|
type="password"
|
|
id="password"
|
|
className="w-full p-3 bg-gray-700 text-white rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"
|
|
placeholder="Enter your password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
required
|
|
/>
|
|
</div>
|
|
<button
|
|
type="submit"
|
|
className="w-full py-3 bg-blue-600 text-white rounded-md hover:bg-blue-500 transition duration-300"
|
|
>
|
|
{activeTab === 'signin' ? 'Sign In' : 'Sign Up'}
|
|
</button>
|
|
</form>
|
|
<div className='h-10'></div>
|
|
|
|
<GoogleSignInButton onLoginSuccess={onAuthSuccess}></GoogleSignInButton>
|
|
</div>
|
|
|
|
{/* Error Dialog */}
|
|
{error && (
|
|
<div className="fixed inset-0 flex items-center justify-center bg-black bg-opacity-50 z-50">
|
|
<div className="bg-gray-800 p-6 rounded-lg shadow-lg">
|
|
<h3 className="text-xl font-bold text-white mb-4">Error</h3>
|
|
<p className="text-gray-300">{error}</p>
|
|
<button
|
|
className="mt-4 px-4 py-2 bg-red-600 text-white rounded-md hover:bg-red-500"
|
|
onClick={() => setError(null)}
|
|
>
|
|
Close
|
|
</button>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AuthTabs;
|