Files
goodgo-platform/apps/web/app/(auth)/register/page.tsx
Ho Ngoc Hai 0b29fac35e feat(notifications): add multi-channel notification module with Email, FCM, templates, and event listeners
- Domain: NotificationLog/NotificationPreference entities, repositories, channel value object
- Infrastructure: EmailService (nodemailer/SMTP), FcmService (firebase-admin), TemplateService (Handlebars)
- Application: SendNotification CQRS command, UserRegistered + AgentVerified event listeners
- Presentation: NotificationsController with history, preferences, and templates endpoints
- Prisma: NotificationLog and NotificationPreference models with proper indexes
- Templates: Vietnamese notification templates for user.registered, agent.verified, listing.approved, inquiry.received, password.reset

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-08 01:42:17 +07:00

174 lines
6.0 KiB
TypeScript

'use client';
import { useState } from 'react';
import Link from 'next/link';
import { useRouter } from 'next/navigation';
import { useForm } from 'react-hook-form';
import { zodResolver } from '@hookform/resolvers/zod';
import { Loader2 } from 'lucide-react';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card';
import { OAuthButtons } from '@/components/auth/oauth-buttons';
import { registerSchema, type RegisterFormData } from '@/lib/validations/auth';
import { useAuthStore } from '@/lib/auth-store';
export default function RegisterPage() {
const router = useRouter();
const { register: registerUser, isLoading, error, clearError } = useAuthStore();
const [showPassword, setShowPassword] = useState(false);
const {
register,
handleSubmit,
formState: { errors },
} = useForm<RegisterFormData>({
resolver: zodResolver(registerSchema),
});
const onSubmit = async (data: RegisterFormData) => {
try {
await registerUser({
phone: data.phone,
password: data.password,
fullName: data.fullName,
email: data.email || undefined,
});
router.push('/');
} catch {
// Error is handled by the store
}
};
return (
<Card>
<CardHeader className="space-y-1 text-center">
<CardTitle className="text-2xl font-bold">Tạo tài khoản</CardTitle>
<CardDescription>Nhập thông tin đ đăng tài khoản GoodGo</CardDescription>
</CardHeader>
<CardContent>
<form onSubmit={handleSubmit(onSubmit)} className="space-y-4">
{error && (
<div className="rounded-md bg-destructive/10 p-3 text-sm text-destructive" role="alert">
{error}
<button type="button" onClick={clearError} className="ml-2 font-medium underline">
Bỏ qua
</button>
</div>
)}
<div className="space-y-2">
<Label htmlFor="fullName">Họ tên</Label>
<Input
id="fullName"
type="text"
placeholder="Nguyễn Văn A"
autoComplete="name"
{...register('fullName')}
aria-invalid={!!errors.fullName}
/>
{errors.fullName && (
<p className="text-sm text-destructive" role="alert">{errors.fullName.message}</p>
)}
</div>
<div className="space-y-2">
<Label htmlFor="phone">Số điện thoại</Label>
<Input
id="phone"
type="tel"
placeholder="0912345678"
autoComplete="tel"
{...register('phone')}
aria-invalid={!!errors.phone}
/>
{errors.phone && (
<p className="text-sm text-destructive" role="alert">{errors.phone.message}</p>
)}
</div>
<div className="space-y-2">
<Label htmlFor="email">Email (tùy chọn)</Label>
<Input
id="email"
type="email"
placeholder="example@email.com"
autoComplete="email"
{...register('email')}
aria-invalid={!!errors.email}
/>
{errors.email && (
<p className="text-sm text-destructive" role="alert">{errors.email.message}</p>
)}
</div>
<div className="space-y-2">
<div className="flex items-center justify-between">
<Label htmlFor="password">Mật khẩu</Label>
<button
type="button"
className="text-xs text-muted-foreground hover:text-primary"
onClick={() => setShowPassword(!showPassword)}
>
{showPassword ? 'Ẩn' : 'Hiện'}
</button>
</div>
<Input
id="password"
type={showPassword ? 'text' : 'password'}
placeholder="Ít nhất 8 ký tự"
autoComplete="new-password"
{...register('password')}
aria-invalid={!!errors.password}
/>
{errors.password && (
<p className="text-sm text-destructive" role="alert">{errors.password.message}</p>
)}
</div>
<div className="space-y-2">
<Label htmlFor="confirmPassword">Xác nhận mật khẩu</Label>
<Input
id="confirmPassword"
type={showPassword ? 'text' : 'password'}
placeholder="Nhập lại mật khẩu"
autoComplete="new-password"
{...register('confirmPassword')}
aria-invalid={!!errors.confirmPassword}
/>
{errors.confirmPassword && (
<p className="text-sm text-destructive" role="alert">{errors.confirmPassword.message}</p>
)}
</div>
<Button type="submit" className="w-full" disabled={isLoading}>
{isLoading && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
Đăng
</Button>
</form>
<div className="relative my-4">
<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-card px-2 text-muted-foreground">Hoặc đăng với</span>
</div>
</div>
<OAuthButtons />
</CardContent>
<CardFooter className="justify-center">
<p className="text-sm text-muted-foreground">
Đã tài khoản?{' '}
<Link href="/login" className="font-medium text-primary hover:underline">
Đăng nhập
</Link>
</p>
</CardFooter>
</Card>
);
}