feat(tour): add onboarding tours for various admin pages
- Integrated TourButton component into SettingsMenuPage, SkillsPage, SmsWalletPage, StaffPage, StaffSessionDetailPage, StaffTreatmentSessionsPage, SubscriptionPage, TagsSettingsPage, TreatmentCasesPage to enhance user onboarding experience. - Created new tour definitions for appointments, clinics, staff management, financial management, and patient management, ensuring comprehensive guidance for users navigating the admin panel. - Updated documentation to reflect the addition of tours and their implementation details.
This commit is contained in:
@@ -158,6 +158,7 @@ export default function ClaimPatientDetailPage() {
|
||||
<FeatureGate feature="insurance">
|
||||
<PageHeader
|
||||
backTo="/admin/claims"
|
||||
tourId="claim-detail"
|
||||
title={patient?.full_name ?? 'پرونده بیمه بیمار'}
|
||||
description={[patient?.mobile, patient?.national_code].filter(Boolean).join(' · ') || undefined}
|
||||
breadcrumbs={[
|
||||
@@ -202,7 +203,8 @@ export default function ClaimPatientDetailPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<Modal open={!!selected} title="جزئیات مطالبه" size="lg" onClose={() => setSelected(null)}>
|
||||
<Modal open={!!selected} title="جزئیات مطالبه"
|
||||
size="lg" onClose={() => setSelected(null)}>
|
||||
{selected && (
|
||||
<div dir="rtl" style={{ display: 'flex', flexDirection: 'column', gap: 18 }}>
|
||||
<div style={{ display: 'grid', gridTemplateColumns: 'repeat(auto-fit, minmax(160px, 1fr))', gap: 12, fontSize: 13 }}>
|
||||
|
||||
Reference in New Issue
Block a user