1b0920d11f
Los 9 servicios con precio en euros (rename, customize, change-race, change-faction, level-up, gold, transfer, restore-item, send-gift) ahora ofrecen un selector de forma de pago con las 3 opciones: saldo PD, tarjeta (Stripe) o tarjeta (SumUp). - lib/dpoints: spendDPoints() descuenta PD de forma atómica (FOR UPDATE). - lib/pay-with-dpoints: paga con saldo PD, ejecuta la acción al momento y reembolsa si la ejecución falla; 100 PD = 1 €. - rutas checkout (character/[service] y gift): rama provider='pd' que valida saldo, descuenta, ejecuta fulfill y devuelve la URL de éxito (sin pasarela). - service-success: rama provider='pd' (la entrega ya se hizo en el checkout). - PaymentMethodSelect: componente compartido con coste por método y saldo; desactiva PD si no hay saldo suficiente. - Formularios (PaidServiceForm, Gold, Transfer, RestoreItems, SendGift) y sus páginas pasan el saldo PD y envían el método elegido + locale. - i18n: namespace Pay (es/en); añadidas claves Paid.restore-item que faltaban. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
85 lines
2.8 KiB
TypeScript
85 lines
2.8 KiB
TypeScript
import type { Metadata } from 'next'
|
|
import { getTranslations, setRequestLocale } from 'next-intl/server'
|
|
import { redirect } from '@/i18n/navigation'
|
|
import { getSession } from '@/lib/session'
|
|
import { getGameCharacters } from '@/lib/characters'
|
|
import { getDPointsBalance } from '@/lib/dpoints'
|
|
import { getGoldOptions } from '@/lib/prices'
|
|
import { PageShell } from '@/components/PageShell'
|
|
import { ServiceBox } from '@/components/ServiceBox'
|
|
import { GoldForm } from '@/components/GoldForm'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
export async function generateMetadata({ params }: { params: Promise<{ locale: string }> }): Promise<Metadata> {
|
|
const { locale } = await params
|
|
const t = await getTranslations({ locale, namespace: 'CharServiceB.gold' })
|
|
return { title: t('title') }
|
|
}
|
|
|
|
const GOLD_ICON = '/nw-themes/nw-ryu/nw-images/nw-icons/money-gold.gif'
|
|
|
|
export default async function GoldCharacterPage({ params }: { params: Promise<{ locale: string }> }) {
|
|
const { locale } = await params
|
|
setRequestLocale(locale)
|
|
|
|
const session = await getSession()
|
|
if (!session.bnetId) redirect({ href: '/log-in', locale })
|
|
if (!session.username) redirect({ href: '/select-account', locale })
|
|
|
|
const [chars, options, pdBalance] = await Promise.all([
|
|
getGameCharacters(session.accountId!),
|
|
getGoldOptions(),
|
|
getDPointsBalance(session.accountId!),
|
|
])
|
|
|
|
const t = await getTranslations('CharServiceB.gold')
|
|
|
|
return (
|
|
<PageShell title={t('title')}>
|
|
<ServiceBox>
|
|
<br />
|
|
<p>{t.rich('intro', { s: (c) => <span>{c}</span> })}</p>
|
|
<br />
|
|
<p>{t('instructions')}</p>
|
|
<p>{t('mailInfo')}</p>
|
|
<br />
|
|
<fieldset>
|
|
<legend>{t('noteLegend')}</legend>
|
|
<div className="separate2">
|
|
<p>{t('noteConfirm')}</p>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<div className="centered">
|
|
<br />
|
|
<br />
|
|
<p>{t('requiresLabel')}</p>
|
|
<table className="gold-table">
|
|
<tbody>
|
|
{options.map((o) => (
|
|
<tr key={o.gold_amount}>
|
|
<td>
|
|
<span>
|
|
{o.gold_amount}
|
|
{/* eslint-disable-next-line @next/next/no-img-element */}
|
|
<img src={GOLD_ICON} width="10" alt="oro" /> =
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<span>{o.price}</span>
|
|
<span className="yellow-info"> €</span>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
<br />
|
|
</div>
|
|
|
|
<GoldForm characters={chars.map((c) => ({ name: c.name, classCss: c.classCss }))} options={options} pdBalance={pdBalance} />
|
|
</ServiceBox>
|
|
</PageShell>
|
|
)
|
|
}
|