auth, login + register

This commit is contained in:
JSC
2025-06-28 19:20:15 +02:00
parent e23e4bca2e
commit 984334d948
13 changed files with 929 additions and 7 deletions

200
src/pages/RegisterPage.tsx Normal file
View File

@@ -0,0 +1,200 @@
import { useState, useEffect } from 'react'
import { Link, useNavigate } from 'react-router-dom'
import { Button } from '@/components/ui/button'
import { Input } from '@/components/ui/input'
import { Label } from '@/components/ui/label'
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
import { useAuth } from '@/contexts/AuthContext'
import { authService } from '@/services/auth'
export function RegisterPage() {
const [formData, setFormData] = useState({
name: '',
email: '',
password: '',
confirmPassword: '',
})
const [loading, setLoading] = useState(false)
const [error, setError] = useState('')
const [oauthProviders, setOauthProviders] = useState<Record<string, { name: string; display_name: string }>>({})
const { register, user } = useAuth()
const navigate = useNavigate()
// Redirect if already logged in
useEffect(() => {
if (user) {
navigate('/')
}
}, [user, navigate])
// Load OAuth providers
useEffect(() => {
const loadProviders = async () => {
try {
const providers = await authService.getOAuthProviders()
setOauthProviders(providers)
} catch (error) {
console.error('Failed to load OAuth providers:', error)
}
}
loadProviders()
}, [])
const handleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const { name, value } = e.target
setFormData(prev => ({
...prev,
[name]: value
}))
}
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault()
setLoading(true)
setError('')
// Validation
if (formData.password !== formData.confirmPassword) {
setError('Passwords do not match')
setLoading(false)
return
}
if (formData.password.length < 6) {
setError('Password must be at least 6 characters long')
setLoading(false)
return
}
try {
await register(formData.email, formData.password, formData.name)
navigate('/')
} catch (error) {
setError(error instanceof Error ? error.message : 'Registration failed')
} finally {
setLoading(false)
}
}
const handleOAuthLogin = (provider: string) => {
window.location.href = authService.getOAuthLoginUrl(provider)
}
return (
<div className="min-h-screen flex items-center justify-center bg-gray-50 py-12 px-4 sm:px-6 lg:px-8">
<Card className="w-full max-w-md">
<CardHeader className="space-y-1">
<CardTitle className="text-2xl font-bold text-center">Create account</CardTitle>
<CardDescription className="text-center">
Enter your information to create your account
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
{error && (
<div className="bg-red-50 border border-red-200 text-red-600 px-4 py-3 rounded-md text-sm">
{error}
</div>
)}
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="name">Full Name</Label>
<Input
id="name"
name="name"
type="text"
placeholder="Enter your full name"
value={formData.name}
onChange={handleInputChange}
required
disabled={loading}
/>
</div>
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input
id="email"
name="email"
type="email"
placeholder="Enter your email"
value={formData.email}
onChange={handleInputChange}
required
disabled={loading}
/>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<Input
id="password"
name="password"
type="password"
placeholder="Create a password"
value={formData.password}
onChange={handleInputChange}
required
disabled={loading}
/>
</div>
<div className="space-y-2">
<Label htmlFor="confirmPassword">Confirm Password</Label>
<Input
id="confirmPassword"
name="confirmPassword"
type="password"
placeholder="Confirm your password"
value={formData.confirmPassword}
onChange={handleInputChange}
required
disabled={loading}
/>
</div>
<Button type="submit" className="w-full" disabled={loading}>
{loading ? 'Creating account...' : 'Create account'}
</Button>
</form>
{Object.keys(oauthProviders).length > 0 && (
<>
<div className="relative">
<div className="absolute inset-0 flex items-center">
<span className="w-full border-t" />
</div>
<div className="relative flex justify-center text-xs uppercase">
<span className="bg-background px-2 text-muted-foreground">Or continue with</span>
</div>
</div>
<div className="space-y-2">
{Object.entries(oauthProviders).map(([key, provider]) => (
<Button
key={key}
variant="outline"
className="w-full"
onClick={() => handleOAuthLogin(key)}
disabled={loading}
>
Sign up with {provider.display_name}
</Button>
))}
</div>
</>
)}
<div className="text-center text-sm">
Already have an account?{' '}
<Link to="/login" className="font-medium text-primary hover:underline">
Sign in
</Link>
</div>
</CardContent>
</Card>
</div>
)
}