Files
NightSpire/web-next/app/[locale]/store/page.tsx
T
Inna 5a903ef627 store: añade la sección plegable "Novedades" (changelog)
Replica el bloque Novedades del diseño original: fieldset plegable con el
changelog (Noviembre 2024) y sus objetos enlazados a wowhead (icono zamimg tiny
+ color por calidad). components/StoreNews.tsx (client, toggle con flecha
rotate/rotate2 del tema), incluido en la caja de info de /store. i18n
Store.newsTitle/newsIntro/newsDate (es/en).

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

64 lines
2.0 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 { getStoreBalances } from '@/lib/store'
import { getRealmName } from '@/lib/realm'
import { wowheadWotlkHome } from '@/lib/wowhead'
import { PageShell } from '@/components/PageShell'
import { ServiceBox } from '@/components/ServiceBox'
import { StoreBrowser } from '@/components/StoreBrowser'
import { StoreNews } from '@/components/StoreNews'
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: 'Store' })
return { title: t('title') }
}
export default async function StorePage({ 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, balances, realm] = await Promise.all([
getGameCharacters(session.accountId!),
getStoreBalances(session.accountId!),
getRealmName(),
])
const t = await getTranslations('Store')
return (
<PageShell title={<>{t('title')} - <span className="blue-info">{realm.toUpperCase()}</span></>}>
<ServiceBox>
<br />
<p>{t('infoTooltip')}</p>
<p>
{t.rich('infoDb', {
link: (c) => (
<a href={wowheadWotlkHome(locale)} target="_blank" rel="noopener noreferrer">
{c}
</a>
),
})}
</p>
<br />
<StoreNews />
</ServiceBox>
<StoreBrowser
characters={chars.map((c) => ({ name: c.name, classCss: c.classCss }))}
dp={balances.dp}
vp={balances.vp}
/>
</PageShell>
)
}