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>
78 lines
2.2 KiB
TypeScript
78 lines
2.2 KiB
TypeScript
'use client'
|
|
|
|
import { useState } from 'react'
|
|
import { useTranslations } from 'next-intl'
|
|
|
|
interface Props {
|
|
characters: string[]
|
|
checkoutEndpoint: string
|
|
payLabel: string // ya formateado con el precio
|
|
}
|
|
|
|
/** Selector de personaje + botón de pago. Redirige al Checkout de Stripe. */
|
|
export function PaidServiceForm({ characters, checkoutEndpoint, payLabel }: Props) {
|
|
const t = useTranslations('Services')
|
|
const [character, setCharacter] = useState('')
|
|
const [busy, setBusy] = useState(false)
|
|
const [error, setError] = useState<string | null>(null)
|
|
|
|
async function handleSubmit(e: React.FormEvent) {
|
|
e.preventDefault()
|
|
if (busy || !character) return
|
|
setBusy(true)
|
|
setError(null)
|
|
try {
|
|
const res = await fetch(checkoutEndpoint, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
credentials: 'same-origin',
|
|
body: JSON.stringify({ character }),
|
|
})
|
|
const data: { success?: boolean; url?: string } = await res.json()
|
|
if (data.success && data.url) {
|
|
window.location.href = data.url // Checkout de Stripe
|
|
} else {
|
|
setError(t('genericError'))
|
|
setBusy(false)
|
|
}
|
|
} catch {
|
|
setError(t('genericError'))
|
|
setBusy(false)
|
|
}
|
|
}
|
|
|
|
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="nw-input"
|
|
>
|
|
<option value="" disabled>
|
|
{t('selectCharacter')}
|
|
</option>
|
|
{characters.map((c) => (
|
|
<option key={c} value={c}>
|
|
{c}
|
|
</option>
|
|
))}
|
|
</select>
|
|
<button
|
|
type="submit"
|
|
disabled={busy || !character}
|
|
className="w-full nw-btn disabled:opacity-60"
|
|
>
|
|
{busy ? t('processing') : payLabel}
|
|
</button>
|
|
</form>
|
|
{error && <p className="mt-3 text-red-400">{error}</p>}
|
|
</div>
|
|
)
|
|
}
|