Files
NightSpire/web-next/app/[locale]/ban-history/page.tsx
T
Inna 651d8deafc i18n: traducir toda la app (ES + EN) — páginas y componentes con texto hardcodeado
Se externaliza el texto español hardcodeado de ~55 archivos a next-intl y se añaden
traducciones al inglés, con paridad de claves es/en. Nuevos namespaces: History,
CharService, CharServiceB, Points, Legal, UI, Misc (+ altas en Common/Admin).

- Historiales (PD/PV, transacciones, sanciones, seguridad), servicios de personaje
  (transfer, send-gift, quest, restore-*, change-*, customize, level-up, gold, rename),
  PD/pagos (d-points, trade, promo, transfer-dp, rename-guild, DPointsTabs), páginas
  legales (cookies, privacidad, términos, reembolsos, aviso legal, contacto), layout
  (cabecera, footer, cookies, 2FA, descargas, jugadores, recluta) y páginas varias
  (home, reino, ayuda, addons, 2falogin).
- Textos con markup inline via t.rich; interpolación con ICU.
- Componente <NoteLegend/> para la leyenda NOTA/NOTE compartida.
- payLabel/confirmText de los servicios de pago traducidos.
- Verificado: tsc OK, next build OK, todas las claves t() resuelven en es y en,
  todos los t.rich casan etiquetas, páginas 200 en /es/ y /en/ sin claves crudas.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-14 18:58:54 +00:00

138 lines
4.2 KiB
TypeScript

import type { Metadata } from 'next'
import { setRequestLocale, getTranslations } from 'next-intl/server'
import { redirect, Link } from '@/i18n/navigation'
import { getSession } from '@/lib/session'
import { getSanctions, type Sanction } from '@/lib/ban-history'
import { PageShell } from '@/components/PageShell'
import { ServiceBox } from '@/components/ServiceBox'
export const dynamic = 'force-dynamic'
export const metadata: Metadata = { title: 'Historial de sanciones' }
/** Fecha en formato DD-MM-YYYY HH:MM:SS. */
function fmt(d: Date): string {
const p = (n: number) => String(n).padStart(2, '0')
return `${p(d.getDate())}-${p(d.getMonth() + 1)}-${d.getFullYear()} ${p(d.getHours())}:${p(d.getMinutes())}:${p(d.getSeconds())}`
}
function StatusCell({ s }: { s: Sanction }) {
return <span className={s.active ? 'red-info2' : 'green-info2'}>{s.status}</span>
}
/** Caja con la tabla de sanciones (baneos o muteos), o el vacío del diseño. */
async function SanctionBox({
title,
emptyText,
rows,
showScope,
}: {
title: string
emptyText: string
rows: Sanction[]
showScope: boolean
}) {
const t = await getTranslations('History')
return (
<div className="box-content">
<div className="title-box-content">
<h2>{title}</h2>
</div>
<div className="body-box-content info-box-light">
{rows.length === 0 ? (
<table className="max-center-table">
<tbody>
<tr>
<td className="centered">
<span>{emptyText}</span>
</td>
</tr>
</tbody>
</table>
) : (
<table className="max-center-table">
<tbody>
<tr>
{showScope && <th>{t('ban.thScope')}</th>}
<th>{t('ban.thReason')}</th>
<th>{t('ban.thBy')}</th>
<th>{t('ban.thDate')}</th>
<th>{t('ban.thExpires')}</th>
<th>{t('ban.thStatus')}</th>
</tr>
{rows.map((s, i) => (
<tr key={i}>
{showScope && (
<td>
<span>{s.scope}</span>
</td>
)}
<td>
<span>{s.reason}</span>
</td>
<td>
<span>{s.by}</span>
</td>
<td>
<span>{fmt(s.date)}</span>
</td>
<td>
<span>{s.expires ? fmt(s.expires) : t('ban.permanent')}</span>
</td>
<td>
<StatusCell s={s} />
</td>
</tr>
))}
</tbody>
</table>
)}
</div>
</div>
)
}
export default async function BanHistoryPage({ params }: { params: Promise<{ locale: string }> }) {
const { locale } = await params
setRequestLocale(locale)
const t = await getTranslations('History')
const session = await getSession()
if (!session.bnetId) redirect({ href: '/login', locale })
if (!session.username) redirect({ href: '/select-account', locale })
const { bans, mutes } = await getSanctions(session.accountId!, session.bnetId)
return (
<PageShell title={t('ban.pageTitle')}>
<ServiceBox>
<br />
<p>{t('ban.intro1')}</p>
<p>
{t.rich('ban.intro2', { s: (c) => <span className="red-info2">{c}</span> })}
</p>
<p>{t('ban.intro3')}</p>
<br />
<div className="restore-item-table">
<p>
<i className="fas fa-exclamation-triangle"></i> <span>{t('ban.important')}</span>
</p>
<p>
{t('ban.autoBlock1')}
</p>
<p>
{t('ban.autoBlock2')}
</p>
</div>
<br />
<p>
{t.rich('ban.claim', { link: (c) => <Link href="/forum">{c}</Link> })}
</p>
</ServiceBox>
<SanctionBox title={t('ban.bansTitle')} emptyText={t('ban.noBans')} rows={bans} showScope />
<SanctionBox title={t('ban.mutesTitle')} emptyText={t('ban.noMutes')} rows={mutes} showScope={false} />
</PageShell>
)
}