f214c9c47c
Co-authored-by: Sojan <sojan@pepalo.com> Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
122 lines
3.5 KiB
JavaScript
122 lines
3.5 KiB
JavaScript
import { frontendURL } from '../helper/URLHelper';
|
|
|
|
export const getSidebarItems = accountId => ({
|
|
common: {
|
|
routes: [
|
|
'home',
|
|
'inbox_dashboard',
|
|
'inbox_conversation',
|
|
'conversation_through_inbox',
|
|
'contacts_dashboard',
|
|
'settings_account_reports',
|
|
'profile_settings',
|
|
'profile_settings_index',
|
|
'label_conversations',
|
|
'conversations_through_label',
|
|
],
|
|
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-stalker',
|
|
label: 'CONTACTS',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/contacts`),
|
|
toStateName: 'contacts_dashboard',
|
|
},
|
|
report: {
|
|
icon: 'ion-arrow-graph-up-right',
|
|
label: 'REPORTS',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/reports`),
|
|
toStateName: 'settings_account_reports',
|
|
},
|
|
settings: {
|
|
icon: 'ion-settings',
|
|
label: 'SETTINGS',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/settings`),
|
|
toStateName: 'settings_home',
|
|
},
|
|
},
|
|
},
|
|
settings: {
|
|
routes: [
|
|
'agent_list',
|
|
'canned_list',
|
|
'labels_list',
|
|
'settings_inbox',
|
|
'settings_inbox_new',
|
|
'settings_inbox_list',
|
|
'settings_inbox_show',
|
|
'settings_inboxes_page_channel',
|
|
'settings_inboxes_add_agents',
|
|
'settings_inbox_finish',
|
|
'settings_integrations',
|
|
'settings_integrations_webhook',
|
|
'settings_integrations_integration',
|
|
'general_settings',
|
|
'general_settings_index',
|
|
],
|
|
menuItems: {
|
|
back: {
|
|
icon: 'ion-ios-arrow-back',
|
|
label: 'HOME',
|
|
hasSubMenu: false,
|
|
toStateName: 'home',
|
|
toState: frontendURL(`accounts/${accountId}/dashboard`),
|
|
},
|
|
agents: {
|
|
icon: 'ion-person-stalker',
|
|
label: 'AGENTS',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/settings/agents/list`),
|
|
toStateName: 'agent_list',
|
|
},
|
|
inboxes: {
|
|
icon: 'ion-archive',
|
|
label: 'INBOXES',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/settings/inboxes/list`),
|
|
toStateName: 'settings_inbox_list',
|
|
},
|
|
labels: {
|
|
icon: 'ion-pricetags',
|
|
label: 'LABELS',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/settings/labels/list`),
|
|
toStateName: 'labels_list',
|
|
},
|
|
cannedResponses: {
|
|
icon: 'ion-chatbox-working',
|
|
label: 'CANNED_RESPONSES',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(
|
|
`accounts/${accountId}/settings/canned-response/list`
|
|
),
|
|
toStateName: 'canned_list',
|
|
},
|
|
settings_integrations: {
|
|
icon: 'ion-flash',
|
|
label: 'INTEGRATIONS',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/settings/integrations`),
|
|
toStateName: 'settings_integrations',
|
|
},
|
|
general_settings_index: {
|
|
icon: 'ion-gear-a',
|
|
label: 'ACCOUNT_SETTINGS',
|
|
hasSubMenu: false,
|
|
toState: frontendURL(`accounts/${accountId}/settings/general`),
|
|
toStateName: 'general_settings_index',
|
|
},
|
|
},
|
|
},
|
|
});
|