270 lines
9.1 KiB
TypeScript
270 lines
9.1 KiB
TypeScript
'use client'
|
|
|
|
import { useState } from 'react'
|
|
import { useRouter, useSearchParams } from 'next/navigation'
|
|
import { useForm } from 'react-hook-form'
|
|
import { zodResolver } from '@hookform/resolvers/zod'
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Input } from '@/components/ui/input'
|
|
import { Label } from '@/components/ui/label'
|
|
import { Separator } from '@/components/ui/separator'
|
|
import { Alert, AlertDescription } from '@/components/ui/alert'
|
|
import { Checkbox } from '@/components/ui/checkbox'
|
|
import { signUpSchema, type SignUpValues } from '@/lib/validations/auth'
|
|
import { Eye, EyeOff, Chrome } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
import { signIn } from 'next-auth/react'
|
|
|
|
export default function SignUpPage() {
|
|
const [showPassword, setShowPassword] = useState(false)
|
|
const [showConfirmPassword, setShowConfirmPassword] = useState(false)
|
|
const [isLoading, setIsLoading] = useState(false)
|
|
const [error, setError] = useState('')
|
|
const [isMember, setIsMember] = useState(false)
|
|
const router = useRouter()
|
|
const searchParams = useSearchParams()
|
|
const referralCode = searchParams.get('ref')
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { errors },
|
|
setValue,
|
|
} = useForm<SignUpValues>({
|
|
resolver: zodResolver(signUpSchema),
|
|
defaultValues: {
|
|
referralCode: referralCode || '',
|
|
},
|
|
})
|
|
|
|
const onSubmit = async (data: SignUpValues) => {
|
|
setIsLoading(true)
|
|
setError('')
|
|
|
|
try {
|
|
const response = await fetch('/api/auth/signup', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
...data,
|
|
role: isMember ? 'MEMBER' : 'CUSTOMER',
|
|
}),
|
|
})
|
|
|
|
if (!response.ok) {
|
|
const errorData = await response.json()
|
|
throw new Error(errorData.error || 'Failed to create account')
|
|
}
|
|
|
|
// Sign in the user after successful registration
|
|
const result = await signIn('credentials', {
|
|
email: data.email,
|
|
password: data.password,
|
|
redirect: false,
|
|
})
|
|
|
|
if (result?.error) {
|
|
setError('Account created but failed to sign in. Please try signing in manually.')
|
|
} else {
|
|
router.push('/dashboard')
|
|
}
|
|
} catch (error) {
|
|
setError(error instanceof Error ? error.message : 'Something went wrong. Please try again.')
|
|
} finally {
|
|
setIsLoading(false)
|
|
}
|
|
}
|
|
|
|
const handleGoogleSignIn = async () => {
|
|
setIsLoading(true)
|
|
await signIn('google', { callbackUrl: '/dashboard' })
|
|
}
|
|
|
|
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="text-center">
|
|
<CardTitle className="text-2xl font-bold">Create Account</CardTitle>
|
|
<CardDescription>
|
|
Join thousands of successful entrepreneurs
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-6">
|
|
{error && (
|
|
<Alert variant="destructive">
|
|
<AlertDescription>{error}</AlertDescription>
|
|
</Alert>
|
|
)}
|
|
|
|
<Button
|
|
type="button"
|
|
variant="outline"
|
|
className="w-full"
|
|
onClick={handleGoogleSignIn}
|
|
disabled={isLoading}
|
|
>
|
|
<Chrome className="mr-2 h-4 w-4" />
|
|
Continue with Google
|
|
</Button>
|
|
|
|
<div className="relative">
|
|
<div className="absolute inset-0 flex items-center">
|
|
<Separator className="w-full" />
|
|
</div>
|
|
<div className="relative flex justify-center text-xs uppercase">
|
|
<span className="bg-background px-2 text-muted-foreground">
|
|
Or continue with email
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<form onSubmit={handleSubmit(onSubmit)} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="name">Full Name</Label>
|
|
<Input
|
|
id="name"
|
|
type="text"
|
|
placeholder="Enter your full name"
|
|
{...register('name')}
|
|
disabled={isLoading}
|
|
/>
|
|
{errors.name && (
|
|
<p className="text-sm text-red-500">{errors.name.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
placeholder="Enter your email"
|
|
{...register('email')}
|
|
disabled={isLoading}
|
|
/>
|
|
{errors.email && (
|
|
<p className="text-sm text-red-500">{errors.email.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="phone">Phone Number (Optional)</Label>
|
|
<Input
|
|
id="phone"
|
|
type="tel"
|
|
placeholder="Enter your phone number"
|
|
{...register('phone')}
|
|
disabled={isLoading}
|
|
/>
|
|
{errors.phone && (
|
|
<p className="text-sm text-red-500">{errors.phone.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password">Password</Label>
|
|
<div className="relative">
|
|
<Input
|
|
id="password"
|
|
type={showPassword ? 'text' : 'password'}
|
|
placeholder="Create a password"
|
|
{...register('password')}
|
|
disabled={isLoading}
|
|
/>
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
size="sm"
|
|
className="absolute right-0 top-0 h-full px-3 py-2 hover:bg-transparent"
|
|
onClick={() => setShowPassword(!showPassword)}
|
|
disabled={isLoading}
|
|
>
|
|
{showPassword ? (
|
|
<EyeOff className="h-4 w-4 text-gray-400" />
|
|
) : (
|
|
<Eye className="h-4 w-4 text-gray-400" />
|
|
)}
|
|
</Button>
|
|
</div>
|
|
{errors.password && (
|
|
<p className="text-sm text-red-500">{errors.password.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="confirmPassword">Confirm Password</Label>
|
|
<div className="relative">
|
|
<Input
|
|
id="confirmPassword"
|
|
type={showConfirmPassword ? 'text' : 'password'}
|
|
placeholder="Confirm your password"
|
|
{...register('confirmPassword')}
|
|
disabled={isLoading}
|
|
/>
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
size="sm"
|
|
className="absolute right-0 top-0 h-full px-3 py-2 hover:bg-transparent"
|
|
onClick={() => setShowConfirmPassword(!showConfirmPassword)}
|
|
disabled={isLoading}
|
|
>
|
|
{showConfirmPassword ? (
|
|
<EyeOff className="h-4 w-4 text-gray-400" />
|
|
) : (
|
|
<Eye className="h-4 w-4 text-gray-400" />
|
|
)}
|
|
</Button>
|
|
</div>
|
|
{errors.confirmPassword && (
|
|
<p className="text-sm text-red-500">{errors.confirmPassword.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="referralCode">Referral Code (Optional)</Label>
|
|
<Input
|
|
id="referralCode"
|
|
type="text"
|
|
placeholder="Enter referral code"
|
|
{...register('referralCode')}
|
|
disabled={isLoading}
|
|
/>
|
|
{errors.referralCode && (
|
|
<p className="text-sm text-red-500">{errors.referralCode.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="flex items-center space-x-2">
|
|
<Checkbox
|
|
id="member"
|
|
checked={isMember}
|
|
onCheckedChange={(checked) => setIsMember(checked === true)}
|
|
disabled={isLoading}
|
|
/>
|
|
<Label htmlFor="member" className="text-sm">
|
|
I want to become a member and start earning commissions
|
|
</Label>
|
|
</div>
|
|
|
|
<Button type="submit" className="w-full" disabled={isLoading}>
|
|
{isLoading ? 'Creating Account...' : 'Create Account'}
|
|
</Button>
|
|
</form>
|
|
|
|
<div className="text-center">
|
|
<p className="text-sm text-gray-600">
|
|
Already have an account?{' '}
|
|
<Link href="/auth/signin" className="text-blue-600 hover:underline">
|
|
Sign in
|
|
</Link>
|
|
</p>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
)
|
|
} |