mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
107 lines
2.6 KiB
Vue
107 lines
2.6 KiB
Vue
<template>
|
|
<div
|
|
class="h-full w-16 bg-white dark:bg-slate-900 border-r border-slate-50 dark:border-slate-800/50 rtl:border-l rtl:border-r-0 flex justify-between flex-col"
|
|
>
|
|
<div class="flex flex-col items-center">
|
|
<logo
|
|
:source="logoSource"
|
|
:name="installationName"
|
|
:account-id="accountId"
|
|
class="m-4 mb-10"
|
|
/>
|
|
<primary-nav-item
|
|
v-for="menuItem in menuItems"
|
|
:key="menuItem.toState"
|
|
:icon="menuItem.icon"
|
|
:name="menuItem.label"
|
|
:to="menuItem.toState"
|
|
:is-child-menu-active="menuItem.key === activeMenuItem"
|
|
/>
|
|
</div>
|
|
<div class="flex flex-col items-center justify-end pb-6">
|
|
<primary-nav-item
|
|
v-if="!isACustomBrandedInstance"
|
|
icon="book-open-globe"
|
|
name="DOCS"
|
|
:open-in-new-page="true"
|
|
:to="helpDocsURL"
|
|
/>
|
|
<notification-bell @open-notification-panel="openNotificationPanel" />
|
|
<agent-details @toggle-menu="toggleOptions" />
|
|
<options-menu
|
|
:show="showOptionsMenu"
|
|
@toggle-accounts="toggleAccountModal"
|
|
@show-support-chat-window="toggleSupportChatWindow"
|
|
@key-shortcut-modal="$emit('key-shortcut-modal')"
|
|
@close="toggleOptions"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Logo from './Logo';
|
|
import PrimaryNavItem from './PrimaryNavItem';
|
|
import OptionsMenu from './OptionsMenu';
|
|
import AgentDetails from './AgentDetails';
|
|
import NotificationBell from './NotificationBell';
|
|
import wootConstants from 'dashboard/constants/globals';
|
|
import { frontendURL } from 'dashboard/helper/URLHelper';
|
|
|
|
export default {
|
|
components: {
|
|
Logo,
|
|
PrimaryNavItem,
|
|
OptionsMenu,
|
|
AgentDetails,
|
|
NotificationBell,
|
|
},
|
|
props: {
|
|
isACustomBrandedInstance: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
logoSource: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
installationName: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
accountId: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
menuItems: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
activeMenuItem: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
helpDocsURL: wootConstants.DOCS_URL,
|
|
showOptionsMenu: false,
|
|
};
|
|
},
|
|
methods: {
|
|
frontendURL,
|
|
toggleOptions() {
|
|
this.showOptionsMenu = !this.showOptionsMenu;
|
|
},
|
|
toggleAccountModal() {
|
|
this.$emit('toggle-accounts');
|
|
},
|
|
toggleSupportChatWindow() {
|
|
window.$chatwoot.toggle();
|
|
},
|
|
openNotificationPanel() {
|
|
this.$emit('open-notification-panel');
|
|
},
|
|
},
|
|
};
|
|
</script>
|