Files
clinicpro/assets/admin/pages/UsersPage.tsx
T
hamed 942634c98e refactor: update UI components for consistency and dark mode support
- Refactored PaymentsPage, RatingsPage, RepresentationDetailPage, RepresentationsPage, SecretariesPage, SettlementsPage, SmsPage, UserDetailPage, and UsersPage to use consistent class names for styling.
- Updated button styles to use new utility classes for primary, secondary, and danger buttons.
- Enhanced dark mode support across various components by adjusting text and background colors.
- Introduced new utility classes for form inputs, labels, and info rows to standardize styling.
- Implemented Zustand for persistent UI state management, including dark mode toggle functionality.
- Updated CSS to include new styles for skeleton loading and animations.
- Added optional dependencies for improved compatibility with different platforms.
2026-06-10 12:30:14 +03:30

143 lines
4.8 KiB
TypeScript

import React, { useState } from 'react';
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
import { useNavigate } from 'react-router-dom';
import { EyeIcon, TrashIcon, PencilIcon } from '@heroicons/react/24/outline';
import { toast } from 'sonner';
import { api } from '../lib/api';
import type { ApiResponse, PaginatedResponse } from '../lib/api';
import type { User } from '../types';
import { formatDate, maskMobile } from '../lib/utils';
import PageHeader from '../components/ui/PageHeader';
import DataTable, { Column } from '../components/ui/DataTable';
import { ActiveBadge } from '../components/ui/StatusBadge';
import Pagination from '../components/ui/Pagination';
import ConfirmDialog from '../components/ui/ConfirmDialog';
export default function UsersPage() {
const navigate = useNavigate();
const qc = useQueryClient();
const [page, setPage] = useState(1);
const [search, setSearch] = useState('');
const [deleteTarget, setDeleteTarget] = useState<User | null>(null);
const limit = 15;
const { data, isLoading } = useQuery({
queryKey: ['users', page, search],
queryFn: () =>
api.get<PaginatedResponse<User>>(
`/api/v1/admin/users?page=${page}&limit=${limit}${search ? `&search=${encodeURIComponent(search)}` : ''}`,
),
});
const deleteMutation = useMutation({
mutationFn: (user: User) => api.delete<ApiResponse<null>>(`/api/v1/user/${user.id}`),
onSuccess: () => {
toast.success('کاربر حذف شد');
setDeleteTarget(null);
qc.invalidateQueries({ queryKey: ['users'] });
},
onError: (err: Error) => toast.error(err.message),
});
const columns: Column<User>[] = [
{
key: 'name',
header: 'نام',
render: (u) => (
<span className="font-medium text-slate-800 dark:text-slate-100">
{u.name || (u.first_name || u.last_name ? `${u.first_name ?? ''} ${u.last_name ?? ''}`.trim() : '—')}
</span>
),
},
{
key: 'mobile_number',
header: 'موبایل',
render: (u) => <span dir="ltr">{maskMobile(u.mobile_number)}</span>,
},
{
key: 'roles',
header: 'نقش',
render: (u) => (
<span className="text-xs bg-slate-100 dark:bg-slate-700 text-slate-700 dark:text-slate-200 px-2 py-0.5 rounded-full">
{u.roles.includes('ROLE_ADMIN')
? 'ادمین'
: u.roles.includes('ROLE_DOCTOR')
? 'پزشک'
: 'کاربر'}
</span>
),
},
{
key: 'is_active',
header: 'وضعیت',
render: (u) => <ActiveBadge active={u.is_active} />,
},
{
key: 'created_at',
header: 'تاریخ ثبت',
render: (u) => formatDate(u.created_at),
},
];
const items = data?.data ?? [];
const total = data?.meta?.totalRecords ?? 0;
return (
<div>
<PageHeader
title="کاربران"
breadcrumbs={[{ label: 'داشبورد', to: '/admin/dashboard' }, { label: 'کاربران' }]}
/>
<div className="cp-card p-6">
<DataTable<User>
columns={columns}
data={items}
loading={isLoading}
searchValue={search}
onSearchChange={(v) => { setSearch(v); setPage(1); }}
searchPlaceholder="جستجو بر اساس نام یا موبایل..."
emptyMessage="هیچ کاربری یافت نشد"
actions={(user) => (
<>
<button
onClick={() => navigate(`/admin/users/${user.uuid}`)}
className="cp-action-view"
title="مشاهده"
>
<EyeIcon className="w-4 h-4" />
</button>
<button
onClick={() => navigate(`/admin/users/${user.uuid}?edit=1`)}
className="cp-action-edit"
title="ویرایش"
>
<PencilIcon className="w-4 h-4" />
</button>
<button
onClick={() => setDeleteTarget(user)}
className="cp-action-delete"
title="حذف"
>
<TrashIcon className="w-4 h-4" />
</button>
</>
)}
/>
<Pagination page={page} total={total} limit={limit} onPageChange={setPage} />
</div>
<ConfirmDialog
open={!!deleteTarget}
title="حذف کاربر"
message={`آیا از حذف کاربر "${deleteTarget?.name ?? deleteTarget?.mobile_number}" اطمینان دارید؟ این عمل قابل بازگشت نیست.`}
confirmLabel="حذف"
danger
loading={deleteMutation.isPending}
onConfirm={() => deleteTarget && deleteMutation.mutate(deleteTarget)}
onCancel={() => setDeleteTarget(null)}
/>
</div>
);
}