117 lines
4.4 KiB
TypeScript
117 lines
4.4 KiB
TypeScript
'use client';
|
|
|
|
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
|
|
import { api } from '@/lib/api';
|
|
import { Card, CardContent } from '@/components/ui/card';
|
|
import { Skeleton } from '@/components/ui/skeleton';
|
|
import { Badge } from '@/components/ui/badge';
|
|
import { UserPlus } from 'lucide-react';
|
|
|
|
interface User {
|
|
id: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
email: string;
|
|
isActive: boolean;
|
|
roles: Array<{ role: string }>;
|
|
}
|
|
|
|
const roleColors: Record<string, string> = {
|
|
ADMIN: 'bg-purple-100 text-purple-700',
|
|
STAFF: 'bg-blue-100 text-blue-700',
|
|
TECHNICIAN: 'bg-orange-100 text-orange-700',
|
|
COLLECTOR: 'bg-green-100 text-green-700',
|
|
};
|
|
|
|
export default function UsersSettingsPage() {
|
|
const qc = useQueryClient();
|
|
|
|
const { data: users, isLoading } = useQuery<User[]>({
|
|
queryKey: ['users'],
|
|
queryFn: async () => {
|
|
const res = await api.get('/api/v1/users');
|
|
return res.data;
|
|
},
|
|
});
|
|
|
|
const toggleActive = useMutation({
|
|
mutationFn: async ({ id, isActive }: { id: string; isActive: boolean }) => {
|
|
await api.patch(`/api/v1/users/${id}`, { isActive: !isActive });
|
|
},
|
|
onSuccess: () => qc.invalidateQueries({ queryKey: ['users'] }),
|
|
});
|
|
|
|
return (
|
|
<div>
|
|
<div className="flex items-center justify-between mb-6">
|
|
<div>
|
|
<h1 className="text-2xl font-bold text-slate-800">Users</h1>
|
|
<p className="text-slate-500 text-sm mt-1">Manage staff access and roles</p>
|
|
</div>
|
|
<button
|
|
className="flex items-center gap-2 px-4 py-2 rounded-lg text-sm font-medium text-white"
|
|
style={{ backgroundColor: '#0891B2' }}
|
|
>
|
|
<UserPlus size={16} />
|
|
Add User
|
|
</button>
|
|
</div>
|
|
|
|
<Card className="border shadow-sm">
|
|
<CardContent className="p-0">
|
|
<table className="w-full text-sm">
|
|
<thead>
|
|
<tr className="border-b bg-slate-50">
|
|
<th className="text-left px-4 py-3 font-medium text-slate-500">Name</th>
|
|
<th className="text-left px-4 py-3 font-medium text-slate-500 hidden md:table-cell">Email</th>
|
|
<th className="text-left px-4 py-3 font-medium text-slate-500">Role</th>
|
|
<th className="text-left px-4 py-3 font-medium text-slate-500">Status</th>
|
|
<th className="px-4 py-3"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{isLoading
|
|
? Array.from({ length: 4 }).map((_, i) => (
|
|
<tr key={i} className="border-b">
|
|
{[...Array(5)].map((_, j) => (
|
|
<td key={j} className="px-4 py-3"><Skeleton className="h-4 w-20" /></td>
|
|
))}
|
|
</tr>
|
|
))
|
|
: users?.map((u) => {
|
|
const role = u.roles?.[0]?.role ?? 'STAFF';
|
|
return (
|
|
<tr key={u.id} className="border-b hover:bg-slate-50">
|
|
<td className="px-4 py-3 font-medium text-slate-800">
|
|
{u.firstName} {u.lastName}
|
|
</td>
|
|
<td className="px-4 py-3 text-slate-600 hidden md:table-cell">{u.email}</td>
|
|
<td className="px-4 py-3">
|
|
<span className={`px-2 py-0.5 rounded-full text-xs font-medium ${roleColors[role] ?? 'bg-gray-100 text-gray-500'}`}>
|
|
{role}
|
|
</span>
|
|
</td>
|
|
<td className="px-4 py-3">
|
|
<span className={`px-2 py-0.5 rounded-full text-xs font-medium ${u.isActive ? 'bg-green-100 text-green-700' : 'bg-red-100 text-red-700'}`}>
|
|
{u.isActive ? 'Active' : 'Inactive'}
|
|
</span>
|
|
</td>
|
|
<td className="px-4 py-3">
|
|
<button
|
|
onClick={() => toggleActive.mutate({ id: u.id, isActive: u.isActive })}
|
|
className="text-xs text-slate-500 hover:text-slate-800 underline"
|
|
>
|
|
{u.isActive ? 'Deactivate' : 'Activate'}
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
);
|
|
})}
|
|
</tbody>
|
|
</table>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|