a1563917ba
* Adds filter for agents, labels and inboxes * Added Inboxes Reports Feature * Fixed populating of filter dropdown issue * If applied, fixes code climate style-lint warnings * Fixes codeclimate warnings * if applied, Refactors sidebar file to fix codclimate warnings * if applied, fixes the download reports button for filtered report-data * If applied, replaces native img tag with thumbnail component * If applied, replaces hardcoded color string with variable * If applied, adds a11y labels to multiselect dropdowns * If applied, Renames reports methods to generic names * If applied, Adds test cases for Labels and Inboxes * If applied, write a test spec for fileDownload helper * if applied, Moves fileDownload method to a utils folder * If applied, Fixes the report file name type * Test Spec for Reports Store module * Fix specs - add restoreAllMocks Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
66 lines
1.8 KiB
JavaScript
66 lines
1.8 KiB
JavaScript
import { frontendURL } from '../../helper/URLHelper';
|
|
|
|
const common = accountId => ({
|
|
routes: [
|
|
'home',
|
|
'inbox_dashboard',
|
|
'inbox_conversation',
|
|
'conversation_through_inbox',
|
|
'notifications_dashboard',
|
|
'profile_settings',
|
|
'profile_settings_index',
|
|
'label_conversations',
|
|
'conversations_through_label',
|
|
'team_conversations',
|
|
'conversations_through_team',
|
|
'notifications_index',
|
|
],
|
|
menuItems: {
|
|
assignedToMe: {
|
|
icon: 'ion-chatbox-working',
|
|
label: 'CONVERSATIONS',
|
|
hasSubMenu: false,
|
|
key: '',
|
|
toState: frontendURL(`accounts/${accountId}/dashboard`),
|
|
toolTip: 'Conversation from all subscribed inboxes',
|
|
toStateName: 'home',
|
|
},
|
|
contacts: {
|
|
icon: 'ion-person',
|
|
label: 'CONTACTS',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/contacts`),
|
|
toStateName: 'contacts_dashboard',
|
|
},
|
|
notifications: {
|
|
icon: 'ion-ios-bell',
|
|
label: 'NOTIFICATIONS',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/notifications`),
|
|
toStateName: 'notifications_dashboard',
|
|
},
|
|
report: {
|
|
icon: 'ion-arrow-graph-up-right',
|
|
label: 'REPORTS',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/reports`),
|
|
toStateName: 'settings_account_reports',
|
|
},
|
|
campaigns: {
|
|
icon: 'ion-speakerphone',
|
|
label: 'CAMPAIGNS',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/campaigns`),
|
|
toStateName: 'settings_account_campaigns',
|
|
},
|
|
settings: {
|
|
icon: 'ion-settings',
|
|
label: 'SETTINGS',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/settings`),
|
|
toStateName: 'settings_home',
|
|
},
|
|
},
|
|
});
|
|
|
|
export default common;
|