b9803adeb9
- /security-token: diseño completo del original (info + advertencia + NOTA 7 días), fecha en formato HH:MM:SS DD-MM-YYYY, botón "Token enviado", enlace a /recover. - /recover: 4 opciones (contraseña por usuario, nombre de cuenta, token de seguridad y enlace de activación por correo); recuperación de token nueva; Turnstile por envío. - /vote-points: caja de info con las 7 secciones Q&A + panel "Sitios de votación" con tarjetas inline-div (imagen, PV, último voto), botón refrescar; abre el sitio y acredita PV al volver. lib/vote.ts + getVoteSitesForAccount. - /rename-guild: renombra una hermandad de la que la cuenta es Maestro por 1000 PD + token de seguridad; SOAP .guild rename con comillas; reembolsa los PD si SOAP falla. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
52 lines
1.7 KiB
TypeScript
52 lines
1.7 KiB
TypeScript
import { getTranslations, setRequestLocale } from 'next-intl/server'
|
|
import { getSession } from '@/lib/session'
|
|
import { getRealmName } from '@/lib/realm'
|
|
import { getVoteSitesForAccount } from '@/lib/vote'
|
|
import { PageShell } from '@/components/PageShell'
|
|
import { ServiceBox } from '@/components/ServiceBox'
|
|
import { VotePanel } from '@/components/VotePanel'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
export default async function VotePointsPage({ params }: { params: Promise<{ locale: string }> }) {
|
|
const { locale } = await params
|
|
setRequestLocale(locale)
|
|
const t = await getTranslations('Vote')
|
|
const session = await getSession()
|
|
const [realm, sites] = await Promise.all([getRealmName(), getVoteSitesForAccount(session.accountId ?? 0)])
|
|
const sub = (s: string) => s.replaceAll('{server}', realm)
|
|
const sections = t.raw('infoSections') as { h: string; lines: string[] }[]
|
|
|
|
return (
|
|
<PageShell title={t('title')}>
|
|
<ServiceBox>
|
|
<br />
|
|
{sections.map((s, i) => (
|
|
<div key={i}>
|
|
<span>{sub(s.h)}</span>
|
|
{s.lines.map((l, j) => (
|
|
<p key={j}>{sub(l)}</p>
|
|
))}
|
|
{i < sections.length - 1 && (
|
|
<>
|
|
<br />
|
|
<hr />
|
|
<br />
|
|
</>
|
|
)}
|
|
</div>
|
|
))}
|
|
</ServiceBox>
|
|
|
|
<div className="box-content">
|
|
<div className="title-box-content">
|
|
<h2>{t('sitesTitle')}</h2>
|
|
</div>
|
|
<div className="body-box-content centered" id="vote-panel">
|
|
<VotePanel sites={sites} canVote={Boolean(session.accountId)} />
|
|
</div>
|
|
</div>
|
|
</PageShell>
|
|
)
|
|
}
|