Files
clinicpro/assets/admin/pages/UserDetailPage.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

104 lines
3.9 KiB
TypeScript

import React from 'react';
import { useParams, useNavigate } from 'react-router-dom';
import { useQuery } from '@tanstack/react-query';
import { ArrowRightIcon } from '@heroicons/react/24/outline';
import { api } from '../lib/api';
import type { ApiResponse } from '../lib/api';
import type { User } from '../types';
import { formatDate, formatDateTime } from '../lib/utils';
import PageHeader from '../components/ui/PageHeader';
import { ActiveBadge } from '../components/ui/StatusBadge';
function InfoRow({ label, value }: { label: string; value: React.ReactNode }) {
return (
<div className="cp-info-row">
<span className="cp-info-label text-sm">{label}</span>
<span className="cp-info-value">{value ?? '—'}</span>
</div>
);
}
export default function UserDetailPage() {
const { uuid } = useParams<{ uuid: string }>();
const navigate = useNavigate();
const { data, isLoading } = useQuery({
queryKey: ['user', uuid],
queryFn: () => api.get<ApiResponse<User>>(`/api/v1/user-profile/${uuid}`),
enabled: !!uuid,
});
const user = data?.data;
return (
<div>
<PageHeader
title="جزئیات کاربر"
breadcrumbs={[
{ label: 'داشبورد', to: '/admin/dashboard' },
{ label: 'کاربران', to: '/admin/users' },
{ label: 'جزئیات' },
]}
action={
<button
onClick={() => navigate('/admin/users')}
className="flex items-center gap-2 text-sm text-slate-500 dark:text-slate-400 hover:text-slate-800 dark:hover:text-slate-100 transition-colors"
>
<ArrowRightIcon className="w-4 h-4" />
بازگشت
</button>
}
/>
{isLoading ? (
<div className="cp-card p-6 space-y-3">
{Array.from({ length: 6 }).map((_, i) => (
<div key={i} className="h-8 rounded-lg skeleton" />
))}
</div>
) : user ? (
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6">
<div className="bg-white rounded-2xl border border-gray-100 shadow-sm p-6">
<h3 className="font-semibold text-gray-800 mb-4">اطلاعات پایه</h3>
<InfoRow label="شناسه" value={<span dir="ltr" className="font-mono text-xs">{user.uuid}</span>} />
<InfoRow
label="نام و نام خانوادگی"
value={`${user.first_name ?? ''} ${user.last_name ?? ''}`.trim() || '—'}
/>
<InfoRow label="موبایل" value={<span dir="ltr">{user.mobile_number}</span>} />
<InfoRow label="ایمیل" value={user.email} />
<InfoRow
label="نقش"
value={
user.roles.includes('ROLE_ADMIN')
? 'ادمین'
: user.roles.includes('ROLE_DOCTOR')
? 'پزشک'
: 'کاربر'
}
/>
<InfoRow label="وضعیت" value={<ActiveBadge active={user.is_active} />} />
<InfoRow label="تاریخ ثبت‌نام" value={formatDate(user.created_at)} />
<InfoRow label="آخرین بروزرسانی" value={formatDateTime(user.updated_at)} />
</div>
<div className="bg-white rounded-2xl border border-gray-100 shadow-sm p-6">
<h3 className="font-semibold text-gray-800 mb-4">نقش‌ها و دسترسی‌ها</h3>
<div className="flex flex-wrap gap-2">
{user.roles.map((role) => (
<span key={role} className="px-3 py-1 bg-primary-50 text-primary-700 text-xs rounded-full font-medium">
{role}
</span>
))}
</div>
</div>
</div>
) : (
<div className="bg-white rounded-2xl border border-gray-100 p-16 text-center text-gray-400">
کاربری یافت نشد
</div>
)}
</div>
);
}