e6460de4d0
Build & Deploy / Build & Push Docker Image (push) Failing after 7s
Build & Deploy / Deploy to VPS (push) Has been skipped
Test / Type Check (all packages) (push) Failing after 26s
Test / API Unit Tests (push) Has been skipped
Test / Homepage Unit Tests (push) Has been skipped
Test / Storefront Unit Tests (push) Has been skipped
Test / Admin Unit Tests (push) Has been skipped
Test / Dashboard Unit Tests (push) Has been skipped
Test / API Integration Tests (push) Has been skipped
300 lines
13 KiB
TypeScript
300 lines
13 KiB
TypeScript
'use client'
|
|
|
|
import { useEffect, useState } from 'react'
|
|
import { ADMIN_API_BASE } from '@/lib/api'
|
|
|
|
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']
|
|
const EMPTY_FORM = {
|
|
firstName: '',
|
|
lastName: '',
|
|
email: '',
|
|
password: '',
|
|
role: 'SUPPORT',
|
|
isActive: true,
|
|
}
|
|
|
|
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 [editingAdminId, setEditingAdminId] = useState<string | null>(null)
|
|
const [form, setForm] = useState(EMPTY_FORM)
|
|
const [showPassword, setShowPassword] = useState(false)
|
|
const [saving, setSaving] = useState(false)
|
|
|
|
async function fetchAdmins() {
|
|
try {
|
|
const res = await fetch(`${ADMIN_API_BASE}/admin/admins`, {
|
|
cache: 'no-store',
|
|
credentials: 'include',
|
|
})
|
|
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() }, [])
|
|
|
|
function openCreateModal() {
|
|
setEditingAdminId(null)
|
|
setForm(EMPTY_FORM)
|
|
setShowPassword(false)
|
|
setError(null)
|
|
setShowModal(true)
|
|
}
|
|
|
|
function openEditModal(admin: AdminUser) {
|
|
setEditingAdminId(admin.id)
|
|
setForm({
|
|
firstName: admin.firstName,
|
|
lastName: admin.lastName,
|
|
email: admin.email,
|
|
password: '',
|
|
role: admin.role,
|
|
isActive: admin.isActive,
|
|
})
|
|
setError(null)
|
|
setShowModal(true)
|
|
}
|
|
|
|
function closeModal() {
|
|
setShowModal(false)
|
|
setEditingAdminId(null)
|
|
setShowPassword(false)
|
|
setForm(EMPTY_FORM)
|
|
}
|
|
|
|
async function saveAdmin(e: React.FormEvent) {
|
|
e.preventDefault()
|
|
setSaving(true)
|
|
setError(null)
|
|
try {
|
|
const isEditing = Boolean(editingAdminId)
|
|
const payload = {
|
|
firstName: form.firstName,
|
|
lastName: form.lastName,
|
|
email: form.email,
|
|
role: form.role,
|
|
isActive: form.isActive,
|
|
...(form.password ? { password: form.password } : {}),
|
|
}
|
|
|
|
const res = await fetch(`${ADMIN_API_BASE}/admin/admins${editingAdminId ? `/${editingAdminId}` : ''}`, {
|
|
method: isEditing ? 'PATCH' : 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
credentials: 'include',
|
|
body: JSON.stringify(payload),
|
|
})
|
|
const json = await res.json()
|
|
if (!res.ok) throw new Error(json?.message ?? `Failed to ${isEditing ? 'update' : 'create'} admin`)
|
|
closeModal()
|
|
await fetchAdmins()
|
|
} catch (err: any) {
|
|
setError(err.message)
|
|
} finally {
|
|
setSaving(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-orange-400 bg-orange-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={openCreateModal}
|
|
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>
|
|
<th className="text-left px-6 py-3 text-xs font-medium text-zinc-500 uppercase tracking-wider">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody className="divide-y divide-zinc-800/60">
|
|
{loading ? (
|
|
<tr><td colSpan={7} className="px-6 py-12 text-center text-zinc-500">Loading…</td></tr>
|
|
) : admins.length === 0 ? (
|
|
<tr><td colSpan={7} 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>
|
|
<td className="px-6 py-4">
|
|
<button
|
|
type="button"
|
|
onClick={() => openEditModal(a)}
|
|
className="rounded-lg border border-zinc-700 px-3 py-1.5 text-xs font-medium text-zinc-300 transition-colors hover:border-zinc-500 hover:text-white"
|
|
>
|
|
Edit
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
{showModal && (
|
|
<div className="fixed inset-0 z-50 flex items-center justify-center bg-[#07101e]/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">{editingAdminId ? 'Edit admin user' : 'New admin user'}</h2>
|
|
<button onClick={closeModal} className="text-zinc-500 hover:text-zinc-200">✕</button>
|
|
</div>
|
|
<form onSubmit={saveAdmin} 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 {editingAdminId ? <span className="text-zinc-500">(leave blank to keep current)</span> : null}
|
|
</label>
|
|
<div className="relative">
|
|
<input
|
|
type={showPassword ? 'text' : 'password'}
|
|
required={!editingAdminId}
|
|
minLength={editingAdminId ? undefined : 8}
|
|
className="w-full px-3 py-2 pr-10 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 })}
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => setShowPassword((v) => !v)}
|
|
className="absolute inset-y-0 right-3 flex items-center text-zinc-500 hover:text-zinc-200"
|
|
tabIndex={-1}
|
|
>
|
|
{showPassword ? (
|
|
<svg xmlns="http://www.w3.org/2000/svg" className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M13.875 18.825A10.05 10.05 0 0112 19c-4.478 0-8.268-2.943-9.543-7a9.97 9.97 0 011.563-3.029m5.858.908a3 3 0 114.243 4.243M9.878 9.878l4.242 4.242M9.88 9.88l-3.29-3.29m7.532 7.532l3.29 3.29M3 3l3.59 3.59m0 0A9.953 9.953 0 0112 5c4.478 0 8.268 2.943 9.543 7a10.025 10.025 0 01-4.132 5.411m0 0L21 21" />
|
|
</svg>
|
|
) : (
|
|
<svg xmlns="http://www.w3.org/2000/svg" className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
|
</svg>
|
|
)}
|
|
</button>
|
|
</div>
|
|
</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>
|
|
<label className="block text-xs font-medium text-zinc-400 mb-1">Status</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.isActive ? 'active' : 'inactive'}
|
|
onChange={(e) => setForm({ ...form, isActive: e.target.value === 'active' })}
|
|
>
|
|
<option value="active">Active</option>
|
|
<option value="inactive">Inactive</option>
|
|
</select>
|
|
</div>
|
|
<div className="flex gap-3 pt-2">
|
|
<button type="button" onClick={closeModal} className="flex-1 py-2.5 rounded-xl bg-zinc-800 text-zinc-300 text-sm font-medium">Cancel</button>
|
|
<button type="submit" disabled={saving} className="flex-1 py-2.5 rounded-xl bg-emerald-700 hover:bg-emerald-600 text-white text-sm font-semibold disabled:opacity-50">
|
|
{saving ? (editingAdminId ? 'Saving…' : 'Creating…') : (editingAdminId ? 'Save changes' : 'Create admin')}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|