579396c34a
Marca, dominios y correos: UltimoWoW/Nova WoW -> NightSpire, cualquier URL de esos dominios -> https://www.nightspire.gg y los correos -> consultas@nightspire.gg. 98 sustituciones en 16 ficheros de textos de usuario (messages/, app/, components/). Assets: logo largo de cabecera y vídeo sustituidos por los de NightSpire (el logo nuevo es 214x28, igual que el viejo, así que no hace falta tocar el CSS). Redes: apuntan a las cuentas de NightSpire, tanto en el pie de la web como en el de los correos (que seguían enlazando a las de NovaWoW desde el porte del diseño). Cookie de sesión novawow_session -> nightspire_session. Cierra la sesión de todos los conectados una vez; se asume ahora, recién hecho el cutover. Ficheros del tema renombrados: novawow-style.css -> nightspire-style.css y novawow-main-logo-transparent.webp -> nightspire-main-logo-transparent.webp, para que la marca vieja no quede ni en las rutas. El foro externo (foro.ultimowow.com) pasa a ser el nuestro: <Link> a /forum, que respeta el idioma y no abre pestaña nueva. NO se tocan y es a propósito: - Los comentarios que nombran AzerothCore: describen el comportamiento REAL del core (límite de 12 ítems por correo, convención de baneos, SOAP...). Cambiarlos a NightSpire los volvería falsos. Además AzerothCore no aparece en la web: las 14 menciones son todas comentarios de código. - El regex de brandify() sigue buscando los nombres VIEJOS: son los que hay escritos en las noticias de la BD. - lib/changelog.ts REPO='Inna/NovaWoW': es la ruta real del repo en Gitea. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
150 lines
4.6 KiB
TypeScript
150 lines
4.6 KiB
TypeScript
import type { Metadata } from 'next'
|
|
import { setRequestLocale, getTranslations } from 'next-intl/server'
|
|
import { redirect } from '@/i18n/navigation'
|
|
import { getSession } from '@/lib/session'
|
|
import { getPaymentTransactions, type PaymentTx } from '@/lib/trans-history'
|
|
import { PageShell } from '@/components/PageShell'
|
|
import { ServiceBox } from '@/components/ServiceBox'
|
|
|
|
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: 'History' })
|
|
return { title: t('trans.pageTitle') }
|
|
}
|
|
|
|
/** 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 StatusBadge({ status }: { status: PaymentTx['status'] }) {
|
|
return <span className={status === 'PAID' ? 'green-info2' : 'yellow-info'}>{status}</span>
|
|
}
|
|
|
|
/** Caja de una pasarela con su tabla de transacciones (o "No hay movimientos"). */
|
|
async function PlatformBox({
|
|
name,
|
|
logo,
|
|
note,
|
|
txs,
|
|
}: {
|
|
name: string
|
|
logo: string
|
|
note: string
|
|
txs: PaymentTx[]
|
|
}) {
|
|
const t = await getTranslations('History')
|
|
return (
|
|
<div className="box-content">
|
|
<div className="title-box-content">
|
|
<h2>
|
|
<img src={logo} alt={name} title={name} style={{ height: '22px', verticalAlign: 'middle', marginRight: '6px' }} /> {name}
|
|
</h2>
|
|
</div>
|
|
<div className="body-box-content">
|
|
<p>
|
|
{t.rich('trans.paidNote', { s: (c) => <span className="green-info2">{c}</span> })}
|
|
</p>
|
|
<br />
|
|
<p>
|
|
<span className="red-info2">{t('trans.important')}</span> {note}
|
|
</p>
|
|
<br />
|
|
{txs.length === 0 ? (
|
|
<table className="max-center-table-aligned">
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<span>{t('trans.noMovements')}</span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
) : (
|
|
<table className="max-center-table-aligned">
|
|
<tbody>
|
|
<tr>
|
|
<th>{t('trans.thTxId')}</th>
|
|
<th>{t('trans.thStatus')}</th>
|
|
<th className="responsive-td">{t('trans.thConcept')}</th>
|
|
<th>{t('trans.thCreatedAt')}</th>
|
|
<th>{t('trans.thAmount')}</th>
|
|
</tr>
|
|
{txs.map((tx) => (
|
|
<tr key={tx.id}>
|
|
<td className="long-td">
|
|
<span>{tx.id}</span>
|
|
</td>
|
|
<td>
|
|
<StatusBadge status={tx.status} />
|
|
</td>
|
|
<td className="responsive-td">
|
|
<span>{tx.conceptKey ? t(`points.concept.${tx.conceptKey}`, tx.conceptArgs) : tx.conceptRaw}</span>
|
|
</td>
|
|
<td>
|
|
<span>{fmt(tx.createdAt)}</span>
|
|
</td>
|
|
<td>
|
|
<span>{tx.amount.toFixed(2)} €</span>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const LOGO_BASE = '/nw-themes/nw-ryu/nw-images/nw-logos'
|
|
|
|
export default async function TransHistoryPage({ 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: '/log-in', locale })
|
|
if (!session.username) redirect({ href: '/select-account', locale })
|
|
|
|
const txs = await getPaymentTransactions(session.accountId!)
|
|
const stripe = txs.filter((t) => t.platform === 'Stripe')
|
|
const sumup = txs.filter((t) => t.platform === 'SumUp')
|
|
|
|
return (
|
|
<PageShell title={t('trans.pageTitle')}>
|
|
<ServiceBox>
|
|
<br />
|
|
<p>{t('trans.intro1')}</p>
|
|
<br />
|
|
<p>{t('trans.intro2')}</p>
|
|
<p>
|
|
{t.rich('trans.intro3', {
|
|
mail: (c) => <a href="mailto:consultas@nightspire.gg">{c}</a>,
|
|
})}
|
|
</p>
|
|
</ServiceBox>
|
|
<br />
|
|
<PlatformBox
|
|
name="Stripe"
|
|
logo={`${LOGO_BASE}/stripe-p-logo.svg`}
|
|
note={t('trans.noteStripe')}
|
|
txs={stripe}
|
|
/>
|
|
<br />
|
|
<hr />
|
|
<br />
|
|
<PlatformBox
|
|
name="SumUp"
|
|
logo={`${LOGO_BASE}/sumup-p-logo.svg`}
|
|
note={t('trans.noteSumup')}
|
|
txs={sumup}
|
|
/>
|
|
</PageShell>
|
|
)
|
|
}
|