135 lines
3.5 KiB
Vue
135 lines
3.5 KiB
Vue
<template>
|
|
<Dropdown :options="dropdownOptions" v-bind="$attrs">
|
|
<template v-slot="{ open }">
|
|
<button
|
|
class="flex h-12 items-center rounded-md py-2 duration-300 ease-in-out"
|
|
:class="
|
|
isCollapsed
|
|
? 'w-auto px-0'
|
|
: open
|
|
? 'w-52 bg-white px-2 shadow-sm'
|
|
: 'w-52 px-2 hover:bg-gray-200'
|
|
"
|
|
>
|
|
<CRMLogo class="size-8 flex-shrink-0 rounded" />
|
|
<div
|
|
class="flex flex-1 flex-col text-left duration-300 ease-in-out"
|
|
:class="
|
|
isCollapsed
|
|
? 'ml-0 w-0 overflow-hidden opacity-0'
|
|
: 'ml-2 w-auto opacity-100'
|
|
"
|
|
>
|
|
<div class="text-base font-medium leading-none text-gray-900">
|
|
{{ __('CRM') }}
|
|
</div>
|
|
<div class="mt-1 text-sm leading-none text-gray-700">
|
|
{{ user.full_name }}
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="duration-300 ease-in-out"
|
|
:class="
|
|
isCollapsed
|
|
? 'ml-0 w-0 overflow-hidden opacity-0'
|
|
: 'ml-2 w-auto opacity-100'
|
|
"
|
|
>
|
|
<FeatherIcon
|
|
name="chevron-down"
|
|
class="size-4 text-gray-600"
|
|
aria-hidden="true"
|
|
/>
|
|
</div>
|
|
</button>
|
|
</template>
|
|
</Dropdown>
|
|
</template>
|
|
|
|
<script setup>
|
|
import CRMLogo from '@/components/Icons/CRMLogo.vue'
|
|
import Apps from '@/components/Apps.vue'
|
|
import { sessionStore } from '@/stores/session'
|
|
import { usersStore } from '@/stores/users'
|
|
import { showSettings } from '@/composables/settings'
|
|
import { Dropdown } from 'frappe-ui'
|
|
import { useStorage } from '@vueuse/core'
|
|
import { computed, ref, markRaw, inject, onMounted } from 'vue'
|
|
|
|
const props = defineProps({
|
|
isCollapsed: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
})
|
|
|
|
const { logout } = sessionStore()
|
|
const { getUser } = usersStore()
|
|
|
|
const user = computed(() => getUser() || {})
|
|
|
|
const isFCSite = inject('isFCSite')
|
|
const theme = useStorage('theme', 'light')
|
|
|
|
let dropdownOptions = ref([
|
|
{
|
|
group: 'Manage',
|
|
hideLabel: true,
|
|
items: [
|
|
{
|
|
component: markRaw(Apps),
|
|
},
|
|
{
|
|
icon: computed(() => (theme.value === 'dark' ? 'sun' : 'moon')),
|
|
label: computed(() => __('Toggle theme')),
|
|
onClick: toggleTheme,
|
|
},
|
|
{
|
|
icon: 'life-buoy',
|
|
label: computed(() => __('Support')),
|
|
onClick: () => window.open('https://t.me/frappecrm', '_blank'),
|
|
},
|
|
{
|
|
icon: 'book-open',
|
|
label: computed(() => __('Docs')),
|
|
onClick: () => window.open('https://docs.frappe.io/crm', '_blank'),
|
|
},
|
|
],
|
|
},
|
|
{
|
|
group: 'Others',
|
|
hideLabel: true,
|
|
items: [
|
|
{
|
|
icon: 'credit-card',
|
|
label: computed(() => __('Billing')),
|
|
onClick: () => (window.location.href = '/billing'),
|
|
condition: () => isFCSite.data,
|
|
},
|
|
{
|
|
icon: 'settings',
|
|
label: computed(() => __('Settings')),
|
|
onClick: () => (showSettings.value = true),
|
|
},
|
|
{
|
|
icon: 'log-out',
|
|
label: computed(() => __('Log out')),
|
|
onClick: () => logout.submit(),
|
|
},
|
|
],
|
|
},
|
|
])
|
|
|
|
function toggleTheme() {
|
|
const currentTheme = document.documentElement.getAttribute('data-theme')
|
|
theme.value = currentTheme === 'dark' ? 'light' : 'dark'
|
|
document.documentElement.setAttribute('data-theme', theme.value)
|
|
}
|
|
|
|
onMounted(() => {
|
|
if (['light', 'dark'].includes(theme.value)) {
|
|
document.documentElement.setAttribute('data-theme', theme.value)
|
|
}
|
|
})
|
|
</script>
|