// models import { NavigationItem } from '../models'; // enums import { SelectedModule } from '../enums'; export class CaRightSidePanelConfig { static getNavigationItems(): NavigationItem[] { return [ { icon: 'assets/ca-components/svg/common/ic_document.svg', title: SelectedModule.DOCUMENT, companyName: null, isLastInList: false, }, { icon: 'assets/ca-components/svg/common/ic_location_map.svg', title: SelectedModule.LOCATION, companyName: null, isLastInList: false, }, { icon: 'assets/ca-components/svg/right-side-panel/ic_accident_insurance_policy.svg', title: SelectedModule.INSURANCE_POLICY, companyName: null, isLastInList: false, }, { icon: 'assets/ca-components/svg/common/ic_debtor.svg', title: SelectedModule.FACTORING_COMPANY, companyName: null, isLastInList: true, }, { icon: 'assets/ca-components/svg/right-side-panel/ic_chat.svg', title: SelectedModule.CHAT, companyName: null, isLastInList: false, }, { icon: 'assets/ca-components/svg/right-side-panel/ic_widget.svg', title: SelectedModule.WIDGET, companyName: null, isLastInList: false, }, { icon: 'assets/ca-components/svg/note/Note.svg', title: SelectedModule.NOTES, companyName: null, isLastInList: false, }, { icon: 'assets/ca-components/svg/right-side-panel/ic_activity_log.svg', title: SelectedModule.ACTIVITY_LOG, companyName: null, isLastInList: false, }, { icon: 'assets/ca-components/svg/right-side-panel/ic_notification.svg', title: SelectedModule.NOTIFICATIONS, companyName: null, isLastInList: false, }, ]; } }