'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(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

{t('noCharactersYet')}

} return (
{error &&

{error}

}
) }