Files
NightSpire/web-next/components/GameAccountSwitcher.tsx
T
Inna a7fb4f7943 web-next: fix layout del formulario de añadir cuenta (mensaje abajo)
El <form> dentro del <p> «Nombre de la cuenta» era HTML inválido y el mensaje
salía inline (en inglés «Wrong password» partía en «Add Wrong / Password»).
Se quita el form: input+botón (onClick, Enter) en un span-bloque .add-account-box
debajo del nombre, y el mensaje en .add-account-msg (display:block) en su propia
línea. Igual en ES y EN.

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

119 lines
3.6 KiB
TypeScript

'use client'
import { useState } from 'react'
import { useTranslations } from 'next-intl'
/**
* Campo «Nombre de la cuenta»: muestra la cuenta de juego activa (WOW1) —como
* desplegable si hay más de una— y un botón «+» para crear nuevas cuentas de
* juego (WOW2, WOW3…) bajo la misma Battle.net. Cambiar o crear hace una
* RECARGA COMPLETA para que todo /account opere sobre la cuenta correcta.
*/
export function GameAccountSwitcher({
accounts,
currentId,
currentLabel,
}: {
accounts: { id: number; index: number }[]
currentId: number
currentLabel: string
}) {
const t = useTranslations('Account')
const [busy, setBusy] = useState(false)
const [adding, setAdding] = useState(false)
const [password, setPassword] = useState('')
const [error, setError] = useState<string | null>(null)
async function onChange(e: React.ChangeEvent<HTMLSelectElement>) {
const id = Number(e.target.value)
if (id === currentId || busy) return
setBusy(true)
try {
const res = await fetch('/api/auth/select-account', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
credentials: 'same-origin',
body: JSON.stringify({ accountId: id }),
})
const d = await res.json()
if (d.success) window.location.reload()
else setBusy(false)
} catch {
setBusy(false)
}
}
async function addAccount() {
if (busy || !password) return
setBusy(true)
setError(null)
try {
const res = await fetch('/api/account/add-game-account', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
credentials: 'same-origin',
body: JSON.stringify({ password }),
})
const d: { success?: boolean; error?: string } = await res.json()
if (d.success) {
window.location.reload()
return
}
setError(
d.error === 'invalidPassword'
? t('addAccountBadPassword')
: d.error === 'maxAccounts'
? t('addAccountMax')
: t('addAccountError'),
)
setBusy(false)
} catch {
setError(t('addAccountError'))
setBusy(false)
}
}
return (
<span className="game-account-field">
{accounts.length > 1 ? (
<select value={currentId} onChange={onChange} disabled={busy} className="account-select" aria-label={t('accountName')}>
{accounts.map((a) => (
<option key={a.id} value={a.id}>
WOW{a.index}
</option>
))}
</select>
) : (
<span>{currentLabel}</span>
)}
<button
type="button"
className="add-account-btn"
onClick={() => { setAdding((v) => !v); setError(null) }}
title={t('addAccount')}
aria-label={t('addAccount')}
>
+
</button>
{adding && (
<span className="add-account-box">
<input
type="password"
maxLength={16}
placeholder={t('addAccountPassword')}
value={password}
onChange={(e) => setPassword(e.target.value)}
onKeyDown={(e) => { if (e.key === 'Enter') { e.preventDefault(); addAccount() } }}
className="account-select add-account-input"
autoComplete="off"
/>
<button type="button" className="add-account-btn" onClick={addAccount} disabled={busy}>
{busy ? '…' : t('addAccountConfirm')}
</button>
{error && <span className="add-account-msg red-form-response">{error}</span>}
</span>
)}
</span>
)
}