mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			186 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			186 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div v-if="hasSecondaryMenu" class="main-nav secondary-menu">
 | |
|     <transition-group name="menu-list" tag="ul" class="menu vertical">
 | |
|       <secondary-nav-item
 | |
|         v-for="menuItem in accessibleMenuItems"
 | |
|         :key="menuItem.toState"
 | |
|         :menu-item="menuItem"
 | |
|       />
 | |
|       <secondary-nav-item
 | |
|         v-for="menuItem in additionalSecondaryMenuItems[menuConfig.parentNav]"
 | |
|         :key="menuItem.key"
 | |
|         :menu-item="menuItem"
 | |
|         @add-label="showAddLabelPopup"
 | |
|       />
 | |
|     </transition-group>
 | |
|   </div>
 | |
| </template>
 | |
| <script>
 | |
| import { frontendURL } from '../../../helper/URLHelper';
 | |
| import SecondaryNavItem from './SecondaryNavItem.vue';
 | |
| 
 | |
| export default {
 | |
|   components: {
 | |
|     SecondaryNavItem,
 | |
|   },
 | |
|   props: {
 | |
|     accountId: {
 | |
|       type: Number,
 | |
|       default: 0,
 | |
|     },
 | |
|     labels: {
 | |
|       type: Array,
 | |
|       default: () => [],
 | |
|     },
 | |
|     inboxes: {
 | |
|       type: Array,
 | |
|       default: () => [],
 | |
|     },
 | |
|     teams: {
 | |
|       type: Array,
 | |
|       default: () => [],
 | |
|     },
 | |
|     menuConfig: {
 | |
|       type: Object,
 | |
|       default: () => {},
 | |
|     },
 | |
|     currentRole: {
 | |
|       type: String,
 | |
|       default: '',
 | |
|     },
 | |
|   },
 | |
|   computed: {
 | |
|     hasSecondaryMenu() {
 | |
|       return this.menuConfig.menuItems && this.menuConfig.menuItems.length;
 | |
|     },
 | |
|     accessibleMenuItems() {
 | |
|       if (!this.currentRole) {
 | |
|         return [];
 | |
|       }
 | |
|       return this.menuConfig.menuItems.filter(
 | |
|         menuItem =>
 | |
|           window.roleWiseRoutes[this.currentRole].indexOf(
 | |
|             menuItem.toStateName
 | |
|           ) > -1
 | |
|       );
 | |
|     },
 | |
|     inboxSection() {
 | |
|       return {
 | |
|         icon: 'folder',
 | |
|         label: 'INBOXES',
 | |
|         hasSubMenu: true,
 | |
|         newLink: true,
 | |
|         newLinkTag: 'NEW_INBOX',
 | |
|         key: 'inbox',
 | |
|         toState: frontendURL(`accounts/${this.accountId}/settings/inboxes/new`),
 | |
|         toStateName: 'settings_inbox_new',
 | |
|         newLinkRouteName: 'settings_inbox_new',
 | |
|         children: this.inboxes.map(inbox => ({
 | |
|           id: inbox.id,
 | |
|           label: inbox.name,
 | |
|           truncateLabel: true,
 | |
|           toState: frontendURL(`accounts/${this.accountId}/inbox/${inbox.id}`),
 | |
|           type: inbox.channel_type,
 | |
|           phoneNumber: inbox.phone_number,
 | |
|         })),
 | |
|       };
 | |
|     },
 | |
|     labelSection() {
 | |
|       return {
 | |
|         icon: 'number-symbol',
 | |
|         label: 'LABELS',
 | |
|         hasSubMenu: true,
 | |
|         newLink: true,
 | |
|         newLinkTag: 'NEW_LABEL',
 | |
|         key: 'label',
 | |
|         toState: frontendURL(`accounts/${this.accountId}/settings/labels`),
 | |
|         toStateName: 'labels_list',
 | |
|         showModalForNewItem: true,
 | |
|         modalName: 'AddLabel',
 | |
|         children: this.labels.map(label => ({
 | |
|           id: label.id,
 | |
|           label: label.title,
 | |
|           color: label.color,
 | |
|           truncateLabel: true,
 | |
|           toState: frontendURL(
 | |
|             `accounts/${this.accountId}/label/${label.title}`
 | |
|           ),
 | |
|         })),
 | |
|       };
 | |
|     },
 | |
|     contactLabelSection() {
 | |
|       return {
 | |
|         icon: 'number-symbol',
 | |
|         label: 'TAGGED_WITH',
 | |
|         hasSubMenu: true,
 | |
|         key: 'label',
 | |
|         newLink: true,
 | |
|         newLinkTag: 'NEW_LABEL',
 | |
|         toState: frontendURL(`accounts/${this.accountId}/settings/labels`),
 | |
|         toStateName: 'labels_list',
 | |
|         showModalForNewItem: true,
 | |
|         modalName: 'AddLabel',
 | |
|         children: this.labels.map(label => ({
 | |
|           id: label.id,
 | |
|           label: label.title,
 | |
|           color: label.color,
 | |
|           truncateLabel: true,
 | |
|           toState: frontendURL(
 | |
|             `accounts/${this.accountId}/labels/${label.title}/contacts`
 | |
|           ),
 | |
|         })),
 | |
|       };
 | |
|     },
 | |
|     teamSection() {
 | |
|       return {
 | |
|         icon: 'people-team',
 | |
|         label: 'TEAMS',
 | |
|         hasSubMenu: true,
 | |
|         newLink: true,
 | |
|         newLinkTag: 'NEW_TEAM',
 | |
|         key: 'team',
 | |
|         toState: frontendURL(`accounts/${this.accountId}/settings/teams/new`),
 | |
|         toStateName: 'settings_teams_new',
 | |
|         newLinkRouteName: 'settings_teams_new',
 | |
|         children: this.teams.map(team => ({
 | |
|           id: team.id,
 | |
|           label: team.name,
 | |
|           truncateLabel: true,
 | |
|           toState: frontendURL(`accounts/${this.accountId}/team/${team.id}`),
 | |
|         })),
 | |
|       };
 | |
|     },
 | |
|     additionalSecondaryMenuItems() {
 | |
|       let conversationMenuItems = [this.inboxSection, this.labelSection];
 | |
|       if (this.teams.length) {
 | |
|         conversationMenuItems = [this.teamSection, ...conversationMenuItems];
 | |
|       }
 | |
|       return {
 | |
|         conversations: conversationMenuItems,
 | |
|         contacts: [this.contactLabelSection],
 | |
|       };
 | |
|     },
 | |
|   },
 | |
|   methods: {
 | |
|     showAddLabelPopup() {
 | |
|       this.$emit('add-label');
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| <style lang="scss" scoped>
 | |
| .secondary-menu {
 | |
|   background: var(--white);
 | |
|   border-right: 1px solid var(--s-50);
 | |
|   height: 100vh;
 | |
|   width: 19rem;
 | |
|   flex-shrink: 0;
 | |
|   overflow: hidden;
 | |
|   padding: var(--space-small);
 | |
| 
 | |
|   &:hover {
 | |
|     overflow: auto;
 | |
|   }
 | |
| }
 | |
| </style>
 | 
