a0a64bc70a
- lib/account.ts: getAccountDashboard(session) lee puntos (home_api_points), créditos battlepay (battlenet_accounts), estado del token de seguridad (home_securitytoken) y personajes (acore_characters). Resiliente si las BD de AzerothCore no están pobladas (devuelve vacíos/0). - app/[locale]/account: página protegida enriquecida (tarjetas de cuenta + puntos + rejilla de personajes con oro), i18n. Namespace Account ampliado. Verificado: build OK, guarda sigue redirigiendo a login sin sesión. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
76 lines
3.0 KiB
TypeScript
76 lines
3.0 KiB
TypeScript
import { getTranslations, setRequestLocale } from 'next-intl/server'
|
|
import { redirect } from '@/i18n/navigation'
|
|
import { getSession } from '@/lib/session'
|
|
import { getAccountDashboard } from '@/lib/account'
|
|
import { LogoutButton } from '@/components/LogoutButton'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
export default async function AccountPage({ params }: { params: Promise<{ locale: string }> }) {
|
|
const { locale } = await params
|
|
setRequestLocale(locale)
|
|
const t = await getTranslations('Account')
|
|
|
|
const session = await getSession()
|
|
if (!session.bnetId) redirect({ href: '/login', locale })
|
|
if (!session.username) redirect({ href: '/select-account', locale })
|
|
|
|
const data = await getAccountDashboard(session)
|
|
|
|
const card = 'rounded-lg border border-amber-900/60 bg-[#241812] p-4'
|
|
|
|
return (
|
|
<main className="mx-auto max-w-3xl px-4 py-8">
|
|
<div className="mb-6 flex items-center justify-between">
|
|
<h1 className="text-2xl font-bold text-amber-500">{t('title')}</h1>
|
|
<LogoutButton className="rounded border border-amber-900/60 px-3 py-1 text-sm text-amber-200 hover:text-amber-400" />
|
|
</div>
|
|
|
|
<div className="grid gap-4 sm:grid-cols-2">
|
|
<section className={card}>
|
|
<div className="space-y-1 text-sm">
|
|
<p>{t('bnetAccount')}: <span className="text-amber-400">{data.bnetEmail}</span></p>
|
|
<p>{t('gameAccount')}: <span className="text-amber-400">{data.gameAccount}</span></p>
|
|
<p>
|
|
{t('securityToken')}:{' '}
|
|
<span className="text-amber-400">
|
|
{data.securityTokenDate
|
|
? `${t('requested')} — ${new Date(data.securityTokenDate).toLocaleString(locale)}`
|
|
: t('notRequested')}
|
|
</span>
|
|
</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section className={card}>
|
|
<h2 className="mb-2 text-lg font-semibold">{t('points')}</h2>
|
|
<div className="space-y-1 text-sm">
|
|
<p>{t('dp')}: <span className="text-amber-400">{data.dp}</span></p>
|
|
<p>{t('vp')}: <span className="text-amber-400">{data.vp}</span></p>
|
|
<p>{t('battlepayCredits')}: <span className="text-amber-400">{data.battlepayCredits}</span></p>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<section className="mt-6">
|
|
<h2 className="mb-3 text-lg font-semibold">{t('characters')}</h2>
|
|
{data.characters.length === 0 ? (
|
|
<p className="text-amber-200/70">{t('noCharacters')}</p>
|
|
) : (
|
|
<div className="grid gap-3 sm:grid-cols-2 md:grid-cols-3">
|
|
{data.characters.map((c) => (
|
|
<div key={c.name} className={card}>
|
|
<p className="font-semibold text-amber-400">{c.name}</p>
|
|
<p className="text-sm">{t('level')} {c.level}</p>
|
|
<p className="text-sm text-amber-200/70">
|
|
{c.gold}g {c.silver}s {c.copper}c
|
|
</p>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</section>
|
|
</main>
|
|
)
|
|
}
|