3e47a3d240
Reemplazo masivo de los estilos sueltos repetidos por las clases del sistema visual en ~20 componentes/páginas (auth, cuenta, servicios de personaje, foro, admin, voto): - inputs -> .nw-input, botones primarios -> .nw-btn, tarjetas -> .nw-card. Cohesión visual completa con la home y la cabecera. Verificado: build OK, páginas clave 200/redirect correctos, clases aplicadas. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
57 lines
2.2 KiB
TypeScript
57 lines
2.2 KiB
TypeScript
'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<string | null>(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 = 'nw-input'
|
|
if (characters.length === 0) return <p className="text-amber-200/70">{t('noCharactersYet')}</p>
|
|
|
|
return (
|
|
<div className="mx-auto max-w-sm text-center">
|
|
<form onSubmit={handleSubmit} className="space-y-3">
|
|
<select value={character} onChange={(e) => setCharacter(e.target.value)} required className={field}>
|
|
<option value="" disabled>{t('selectCharacter')}</option>
|
|
{characters.map((c) => <option key={c} value={c}>{c}</option>)}
|
|
</select>
|
|
<input type="text" placeholder={tp('transfer.destination')} value={destination} onChange={(e) => setDestination(e.target.value)} required className={field} />
|
|
<button type="submit" disabled={busy || !character || !destination.trim()} className="w-full nw-btn disabled:opacity-60">
|
|
{busy ? t('processing') : tp('transfer.pay', { price })}
|
|
</button>
|
|
</form>
|
|
{error && <p className="mt-3 text-red-400">{error}</p>}
|
|
</div>
|
|
)
|
|
}
|