fixing platform admin

This commit is contained in:
root
2026-05-06 22:58:23 -04:00
parent 695a7f7cc7
commit 750ae56a29
175 changed files with 31249 additions and 328 deletions
@@ -0,0 +1,211 @@
'use client'
import { useEffect, useState } from 'react'
const API_BASE = '/api/v1'
interface AdminUser {
id: string
firstName: string
lastName: string
email: string
role: string
isActive: boolean
createdAt: string
permissions?: { id: string; resource: string; actions: string[] }[]
}
const ROLES = ['SUPER_ADMIN', 'ADMIN', 'SUPPORT', 'FINANCE', 'VIEWER']
export default function AdminUsersPage() {
const [admins, setAdmins] = useState<AdminUser[]>([])
const [loading, setLoading] = useState(true)
const [error, setError] = useState<string | null>(null)
const [showModal, setShowModal] = useState(false)
const [form, setForm] = useState({ firstName: '', lastName: '', email: '', password: '', role: 'SUPPORT' })
const [creating, setCreating] = useState(false)
function getToken() { return localStorage.getItem('admin_token') ?? '' }
async function fetchAdmins() {
try {
const res = await fetch(`${API_BASE}/admin/admins`, {
headers: { Authorization: `Bearer ${getToken()}` },
cache: 'no-store',
})
const json = await res.json()
if (!res.ok) throw new Error(json?.message ?? 'Failed')
setAdmins(json.data ?? [])
} catch (err: any) {
setError(err.message)
} finally {
setLoading(false)
}
}
useEffect(() => { fetchAdmins() }, [])
async function createAdmin(e: React.FormEvent) {
e.preventDefault()
setCreating(true)
setError(null)
try {
const res = await fetch(`${API_BASE}/admin/admins`, {
method: 'POST',
headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${getToken()}` },
body: JSON.stringify(form),
})
const json = await res.json()
if (!res.ok) throw new Error(json?.message ?? 'Failed to create')
setShowModal(false)
setForm({ firstName: '', lastName: '', email: '', password: '', role: 'SUPPORT' })
await fetchAdmins()
} catch (err: any) {
setError(err.message)
} finally {
setCreating(false)
}
}
const ROLE_COLORS: Record<string, string> = {
SUPER_ADMIN: 'text-emerald-400 bg-emerald-950/40',
ADMIN: 'text-sky-400 bg-sky-950/40',
SUPPORT: 'text-amber-400 bg-amber-950/40',
FINANCE: 'text-violet-400 bg-violet-950/40',
VIEWER: 'text-zinc-400 bg-zinc-800',
}
return (
<div className="shell py-8 space-y-6">
<div className="flex items-center justify-between">
<div>
<p className="text-xs uppercase tracking-[0.2em] text-emerald-400">Platform</p>
<h1 className="mt-1 text-3xl font-black">Admin Users</h1>
</div>
<button
onClick={() => setShowModal(true)}
className="px-4 py-2 rounded-xl bg-emerald-700 hover:bg-emerald-600 text-white text-sm font-semibold transition-colors"
>
+ New admin
</button>
</div>
{error && <div className="panel p-4 text-sm text-red-400">{error}</div>}
<div className="panel overflow-hidden">
<div className="overflow-x-auto">
<table className="w-full text-sm">
<thead>
<tr className="border-b border-zinc-800">
<th className="text-left px-6 py-3 text-xs font-medium text-zinc-500 uppercase tracking-wider">Name</th>
<th className="text-left px-6 py-3 text-xs font-medium text-zinc-500 uppercase tracking-wider">Email</th>
<th className="text-left px-6 py-3 text-xs font-medium text-zinc-500 uppercase tracking-wider">Role</th>
<th className="text-left px-6 py-3 text-xs font-medium text-zinc-500 uppercase tracking-wider">Permissions</th>
<th className="text-left px-6 py-3 text-xs font-medium text-zinc-500 uppercase tracking-wider">Status</th>
<th className="text-left px-6 py-3 text-xs font-medium text-zinc-500 uppercase tracking-wider">Joined</th>
</tr>
</thead>
<tbody className="divide-y divide-zinc-800/60">
{loading ? (
<tr><td colSpan={6} className="px-6 py-12 text-center text-zinc-500">Loading</td></tr>
) : admins.length === 0 ? (
<tr><td colSpan={6} className="px-6 py-12 text-center text-zinc-500">No admin users found</td></tr>
) : admins.map((a) => (
<tr key={a.id} className="hover:bg-zinc-800/30 transition-colors">
<td className="px-6 py-4 font-medium text-zinc-100">{a.firstName} {a.lastName}</td>
<td className="px-6 py-4 text-zinc-400">{a.email}</td>
<td className="px-6 py-4">
<span className={`inline-flex items-center px-2 py-0.5 rounded-full text-xs font-medium ${ROLE_COLORS[a.role] ?? 'text-zinc-400 bg-zinc-800'}`}>
{a.role}
</span>
</td>
<td className="px-6 py-4 text-xs text-zinc-500">
{a.permissions && a.permissions.length > 0
? a.permissions.map((permission) => permission.resource).join(', ')
: 'Role-based only'}
</td>
<td className="px-6 py-4">
<span className={`inline-flex items-center px-2 py-0.5 rounded-full text-xs font-medium ${a.isActive ? 'text-emerald-400 bg-emerald-950/40' : 'text-zinc-500 bg-zinc-800'}`}>
{a.isActive ? 'Active' : 'Inactive'}
</span>
</td>
<td className="px-6 py-4 text-zinc-500 text-xs">{new Date(a.createdAt).toLocaleDateString()}</td>
</tr>
))}
</tbody>
</table>
</div>
</div>
{showModal && (
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/60 backdrop-blur-sm">
<div className="w-full max-w-md rounded-2xl border border-zinc-700 bg-zinc-900 p-8 shadow-2xl">
<div className="flex items-center justify-between mb-6">
<h2 className="text-lg font-semibold">New admin user</h2>
<button onClick={() => setShowModal(false)} className="text-zinc-500 hover:text-zinc-200"></button>
</div>
<form onSubmit={createAdmin} className="space-y-4">
<div className="grid grid-cols-2 gap-4">
<div>
<label className="block text-xs font-medium text-zinc-400 mb-1">First name</label>
<input
required
className="w-full px-3 py-2 rounded-xl bg-zinc-800 border border-zinc-700 text-zinc-100 text-sm focus:outline-none focus:ring-2 focus:ring-emerald-500"
value={form.firstName}
onChange={(e) => setForm({ ...form, firstName: e.target.value })}
/>
</div>
<div>
<label className="block text-xs font-medium text-zinc-400 mb-1">Last name</label>
<input
required
className="w-full px-3 py-2 rounded-xl bg-zinc-800 border border-zinc-700 text-zinc-100 text-sm focus:outline-none focus:ring-2 focus:ring-emerald-500"
value={form.lastName}
onChange={(e) => setForm({ ...form, lastName: e.target.value })}
/>
</div>
</div>
<div>
<label className="block text-xs font-medium text-zinc-400 mb-1">Email</label>
<input
type="email"
required
className="w-full px-3 py-2 rounded-xl bg-zinc-800 border border-zinc-700 text-zinc-100 text-sm focus:outline-none focus:ring-2 focus:ring-emerald-500"
value={form.email}
onChange={(e) => setForm({ ...form, email: e.target.value })}
/>
</div>
<div>
<label className="block text-xs font-medium text-zinc-400 mb-1">Password</label>
<input
type="password"
required
minLength={8}
className="w-full px-3 py-2 rounded-xl bg-zinc-800 border border-zinc-700 text-zinc-100 text-sm focus:outline-none focus:ring-2 focus:ring-emerald-500"
value={form.password}
onChange={(e) => setForm({ ...form, password: e.target.value })}
/>
</div>
<div>
<label className="block text-xs font-medium text-zinc-400 mb-1">Role</label>
<select
className="w-full px-3 py-2 rounded-xl bg-zinc-800 border border-zinc-700 text-zinc-100 text-sm focus:outline-none focus:ring-2 focus:ring-emerald-500"
value={form.role}
onChange={(e) => setForm({ ...form, role: e.target.value })}
>
{ROLES.map((r) => <option key={r} value={r}>{r}</option>)}
</select>
</div>
<div className="flex gap-3 pt-2">
<button type="button" onClick={() => setShowModal(false)} className="flex-1 py-2.5 rounded-xl bg-zinc-800 text-zinc-300 text-sm font-medium">Cancel</button>
<button type="submit" disabled={creating} className="flex-1 py-2.5 rounded-xl bg-emerald-700 hover:bg-emerald-600 text-white text-sm font-semibold disabled:opacity-50">
{creating ? 'Creating…' : 'Create admin'}
</button>
</div>
</form>
</div>
</div>
)}
</div>
)
}