Files
sdb-front/src/pages/RegisterPage.tsx
JSC 44c9c204f6
Some checks failed
Frontend CI / lint (push) Failing after 5m8s
Frontend CI / build (push) Has been skipped
feat: update background color in LoginPage and RegisterPage components
2025-07-05 17:52:14 +02:00

206 lines
6.3 KiB
TypeScript

import { useState, useEffect } from 'react'
import { Link, useNavigate } from 'react-router'
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 { toast } from 'sonner'
import { useAuth } from '@/hooks/use-auth'
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()
if (providers) {
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)
toast.success('Account created successfully! Welcome!')
navigate('/')
} catch (error) {
const errorMessage = error instanceof Error ? error.message : 'Registration failed'
setError(errorMessage)
toast.error(errorMessage)
} 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-background 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>
)
}