58 lines
1.7 KiB
JavaScript
58 lines
1.7 KiB
JavaScript
import UploadDLockData from '../scenes/UploadDLockData';
|
|
import Home from '../scenes/Home';
|
|
import IncidentsReport from '../scenes/IncidentsReport';
|
|
import SpecificMemberIncidentsReport from '../scenes/SpecificMemberIncidentsReport';
|
|
import MemberPracticeSummaryReport from '../scenes/MemberPracticeSummaryReport';
|
|
import RoomOfficeNameMapping from '../scenes/RoomOfficeNameMapping';
|
|
|
|
export const mainMenuItems = [
|
|
{
|
|
id: 'home',
|
|
showInMenu: true,
|
|
title: 'Home',
|
|
url: '/',
|
|
component: Home,
|
|
},
|
|
{
|
|
id: 'memberPracticeSummaryReport',
|
|
showInMenu: true,
|
|
title: 'Member Practice Summary Report',
|
|
url: '/member-practice-summary-report',
|
|
component: MemberPracticeSummaryReport,
|
|
},
|
|
{
|
|
id: 'specificMemberIncidentsReport',
|
|
showInMenu: true,
|
|
title: 'Member Incidents Report',
|
|
url: '/specific-member-incidents-report',
|
|
component: SpecificMemberIncidentsReport,
|
|
},
|
|
{
|
|
id: 'specificMemberIncidentsReportWithMemberId',
|
|
showInMenu: false,
|
|
url: '/specific-member-incidents-report/:memberId',
|
|
component: SpecificMemberIncidentsReport,
|
|
},
|
|
{
|
|
id: 'report',
|
|
showInMenu: true,
|
|
title: 'Incidents Report',
|
|
url: '/incidents-report',
|
|
component: IncidentsReport,
|
|
},
|
|
{
|
|
id: 'uploadDLockData',
|
|
showInMenu: true,
|
|
title: 'DLock',
|
|
url: '/dlock',
|
|
component: UploadDLockData,
|
|
},
|
|
{
|
|
id: 'roomOfficeNameMapping',
|
|
showInMenu: true,
|
|
title: 'Room Office Name Mapping',
|
|
url: '/room-office-name-mapping',
|
|
component: RoomOfficeNameMapping,
|
|
}
|
|
];
|