Files
NightSpire/web-next/components/AdminVotesManager.tsx
T
Inna cc158d3819 web-next: migrar toda la UI al tema real nw-ryu
Reescritura completa del frontend Next.js del sistema visual Tailwind
"simulado" al tema Django original (nw-ryu), para paridad pixel con la
web actual antes del cutover.

- Tema real: copia de static/nw-themes/nw-ryu + favicons a public/, el
  layout carga el novavow-style.css real de ultimo (gana la cascada sobre
  Tailwind) + Font Awesome.
- Shell replicando los partials Django: SiteHeader, Video, Social, Footer,
  ServerClock; home con estructura real (main-page/middle-content/...).
- Helpers reutilizables: PageShell (main-page > middle-content > body-content
  > title-content) y ServiceBox (title-box-content + back-to-account).
- Paginas migradas a clases reales del tema (fieldset/tool-button/char-box/
  item-box/info-box-light/max-center-table/alert-message/botones reales),
  eliminando el markup Tailwind (.nw-btn/.nw-card/.nw-input):
  auth (login/register/recover/reset/select-account/activate),
  cuenta + servicios de personaje (revive/unstuck/rename/customize/
  change-race/change-faction/level-up/gold/transfer + pago Stripe),
  ajustes (change-password/change-email/security-token),
  comunidad (vote-points/recruit/battlepay), foro completo, y
  admin (indice + 7 secciones + los Admin*Manager).
- Se conserva el bilingue (next-intl); claves nuevas en messages/es|en.json.

Verificado: typecheck + build OK; rutas protegidas 307->login; sin
MISSING_MESSAGE; cero Tailwind residual (solo .nw-tool-btn/.nw-page,
clases propias en globals.css).

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

85 lines
3.1 KiB
TypeScript

'use client'
import { useState } from 'react'
import { useTranslations } from 'next-intl'
import type { VoteSite } from '@/lib/admin-votes'
export function AdminVotesManager({ initial }: { initial: VoteSite[] }) {
const t = useTranslations('Admin')
const [sites, setSites] = useState(initial)
const [form, setForm] = useState({ name: '', url: '', imageUrl: '', points: '1' })
const [busy, setBusy] = useState(false)
function upd(k: string, v: string) {
setForm((f) => ({ ...f, [k]: v }))
}
async function create(e: React.FormEvent) {
e.preventDefault()
if (busy || !form.name.trim() || !form.url.trim()) return
setBusy(true)
try {
const res = await fetch('/api/admin/votes', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
credentials: 'same-origin',
body: JSON.stringify({ ...form, points: Number(form.points) }),
})
const data: { success?: boolean; id?: number } = await res.json()
if (data.success && data.id) {
setSites([
...sites,
{ id: data.id, name: form.name, url: form.url, image_url: form.imageUrl, points: Number(form.points) },
])
setForm({ name: '', url: '', imageUrl: '', points: '1' })
}
} finally {
setBusy(false)
}
}
async function remove(id: number) {
if (!confirm(t('confirmDelete'))) return
const res = await fetch(`/api/admin/votes/${id}`, { method: 'DELETE', credentials: 'same-origin' })
if ((await res.json()).success) setSites(sites.filter((s) => s.id !== id))
}
return (
<div>
<form onSubmit={create} className="admin-form info-box-light separate2">
<input value={form.name} onChange={(e) => upd('name', e.target.value)} placeholder={t('voteName')} />
<input value={form.url} onChange={(e) => upd('url', e.target.value)} placeholder={t('voteUrl')} />
<input value={form.imageUrl} onChange={(e) => upd('imageUrl', e.target.value)} placeholder={t('voteImage')} />
<input type="number" min="0" value={form.points} onChange={(e) => upd('points', e.target.value)} placeholder={t('votePoints')} />
<button type="submit" disabled={busy}>
{busy ? t('creating') : t('create')}
</button>
</form>
<br />
{sites.length === 0 ? (
<p className="second-brown centered">{t('noVotes')}</p>
) : (
<table className="max-center-table">
<tbody>
{sites.map((s) => (
<tr key={s.id} className="team-center-table-tr">
<td className="lefted separate">
<span className="yellow-info">{s.name}</span>
<p className="third-brown small-font">
{s.points} PV · {s.url}
</p>
</td>
<td className="real-info-box">
<button onClick={() => remove(s.id)} className="nw-tool-btn red-info2">
{t('delete')}
</button>
</td>
</tr>
))}
</tbody>
</table>
)}
</div>
)
}