'use client' import { useState } from 'react' import { useTranslations } from 'next-intl' export function TransferForm({ characters, price }: { characters: string[]; price: number }) { const t = useTranslations('Services') const tp = useTranslations('Paid') const [character, setCharacter] = useState('') const [destination, setDestination] = useState('') const [busy, setBusy] = useState(false) const [error, setError] = useState(null) async function handleSubmit(e: React.FormEvent) { e.preventDefault() if (busy || !character || !destination.trim()) return setBusy(true) setError(null) try { const res = await fetch('/api/character/transfer/checkout', { method: 'POST', headers: { 'Content-Type': 'application/json' }, credentials: 'same-origin', body: JSON.stringify({ character, destination_account: destination.trim() }), }) const data: { success?: boolean; url?: string } = await res.json() if (data.success && data.url) window.location.href = data.url else { setError(t('genericError')) setBusy(false) } } catch { setError(t('genericError')) setBusy(false) } } const field = 'w-full rounded border border-amber-900/60 bg-[#2c1e14] px-3 py-2' if (characters.length === 0) return

{t('noCharactersYet')}

return (
setDestination(e.target.value)} required className={field} />
{error &&

{error}

}
) }