2019-06-17 13:24:34 +02:00
|
|
|
import UploadDLockData from '../scenes/UploadDLockData';
|
|
|
|
|
import Home from '../scenes/Home';
|
|
|
|
|
import IncidentsReport from '../scenes/IncidentsReport';
|
2019-08-08 04:56:46 +02:00
|
|
|
import SpecificMemberIncidentsReport from '../scenes/SpecificMemberIncidentsReport';
|
|
|
|
|
import MemberPracticeSummaryReport from '../scenes/MemberPracticeSummaryReport';
|
2019-05-28 13:48:58 +02:00
|
|
|
|
|
|
|
|
export const mainMenuItems = [
|
|
|
|
|
{
|
|
|
|
|
id: 'home',
|
2019-06-25 15:44:46 +02:00
|
|
|
showInMenu: true,
|
2019-05-28 13:48:58 +02:00
|
|
|
title: 'Home',
|
|
|
|
|
url: '/',
|
|
|
|
|
component: Home,
|
|
|
|
|
},
|
2019-06-19 11:23:58 +02:00
|
|
|
{
|
2019-08-08 04:56:46 +02:00
|
|
|
id: 'memberPracticeSummaryReport',
|
2019-06-25 15:44:46 +02:00
|
|
|
showInMenu: true,
|
2019-08-08 04:56:46 +02:00
|
|
|
title: 'Member Practice Summary Report',
|
|
|
|
|
url: '/member-practice-summary-report',
|
|
|
|
|
component: MemberPracticeSummaryReport,
|
2019-06-19 11:23:58 +02:00
|
|
|
},
|
2019-06-25 15:44:46 +02:00
|
|
|
{
|
2019-08-08 04:56:46 +02:00
|
|
|
id: 'specificMemberIncidentsReport',
|
|
|
|
|
showInMenu: true,
|
|
|
|
|
title: 'Member Incidents Report',
|
|
|
|
|
url: '/specific-member-incidents-report',
|
|
|
|
|
component: SpecificMemberIncidentsReport,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'specificMemberIncidentsReportWithMemberId',
|
2019-06-25 15:44:46 +02:00
|
|
|
showInMenu: false,
|
2019-08-08 04:56:46 +02:00
|
|
|
url: '/specific-member-incidents-report/:memberId',
|
|
|
|
|
component: SpecificMemberIncidentsReport,
|
2019-06-25 15:44:46 +02:00
|
|
|
},
|
2019-06-17 13:24:34 +02:00
|
|
|
{
|
|
|
|
|
id: 'report',
|
2019-06-25 15:44:46 +02:00
|
|
|
showInMenu: true,
|
2019-06-17 13:24:34 +02:00
|
|
|
title: 'Incidents Report',
|
|
|
|
|
url: '/incidents-report',
|
|
|
|
|
component: IncidentsReport,
|
|
|
|
|
},
|
2019-05-28 13:48:58 +02:00
|
|
|
{
|
|
|
|
|
id: 'uploadDLockData',
|
2019-06-25 15:44:46 +02:00
|
|
|
showInMenu: true,
|
2019-05-28 13:48:58 +02:00
|
|
|
title: 'DLock',
|
|
|
|
|
url: '/dlock',
|
|
|
|
|
component: UploadDLockData,
|
|
|
|
|
},
|
|
|
|
|
];
|