'use client' import { useState } from 'react' import { useTranslations } from 'next-intl' import { useRouter } from '@/i18n/navigation' const ERROR_KEYS = [ 'missingFields', 'passwordMismatch', 'passwordTooLong', 'invalidToken', 'wrongCurrentPassword', 'accountNotFound', ] as const export function ChangePasswordForm() { const t = useTranslations('ChangePassword') const router = useRouter() const [form, setForm] = useState({ currentPassword: '', newPassword: '', confPassword: '', token: '' }) const [busy, setBusy] = useState(false) const [done, setDone] = 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 || done) return setBusy(true) setMessage(null) try { const res = await fetch('/api/account/change-password', { 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) { setDone(true) setMessage({ ok: true, text: t('success') }) setTimeout(() => { router.push('/login') router.refresh() }, 2500) } 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 { if (!done) setBusy(false) } } return ( <>
{t('info')}