'use client' import { useState } from 'react' import { useTranslations } from 'next-intl' const ERROR_KEYS = [ 'missingFields', 'passwordMismatch', 'passwordTooLong', 'invalidEmail', 'emailExists', 'recruiterNotFound', ] as const export function RegisterForm() { const t = useTranslations('Register') const [form, setForm] = useState({ password: '', confPassword: '', email: '', confEmail: '', recruiter: '' }) const [accepted, setAccepted] = useState(false) const [busy, setBusy] = useState(false) const [message, setMessage] = useState<{ ok: boolean; text: string } | null>(null) function upd(k: string, v: string) { setForm((f) => ({ ...f, [k]: v })) } async function handleSubmit(e: React.FormEvent) { e.preventDefault() if (busy || !accepted) return setBusy(true) setMessage(null) try { const res = await fetch('/api/auth/register', { method: 'POST', headers: { 'Content-Type': 'application/json' }, credentials: 'same-origin', body: JSON.stringify(form), }) const data: { success?: boolean; error?: string } = await res.json() if (data.success) { setMessage({ ok: true, text: t('success') }) } else { const key = (ERROR_KEYS as readonly string[]).includes(data.error ?? '') ? data.error! : 'genericError' setMessage({ ok: false, text: t(key) }) } } catch { setMessage({ ok: false, text: t('genericError') }) } finally { setBusy(false) } } const input = 'w-full rounded border border-amber-900/60 bg-[#2c1e14] px-3 py-2' return (
{t('info')}
{message &&{message.text}
}