88 lines
2.3 KiB
Vue
88 lines
2.3 KiB
Vue
<template>
|
|
<button
|
|
class="flex h-7 cursor-pointer items-center rounded text-gray-700 duration-300 ease-in-out focus:outline-none focus:transition-none focus-visible:rounded focus-visible:ring-2 focus-visible:ring-gray-400"
|
|
:class="isActive ? 'bg-white shadow-sm' : 'hover:bg-gray-100'"
|
|
@click="handleClick"
|
|
>
|
|
<div
|
|
class="flex w-full items-center justify-between duration-300 ease-in-out"
|
|
:class="isCollapsed ? 'ml-[3px] p-1' : 'px-2 py-1'"
|
|
>
|
|
<div class="flex items-center truncate">
|
|
<Tooltip :text="label" placement="right" :disabled="!isCollapsed">
|
|
<slot name="icon">
|
|
<span class="grid flex-shrink-0 place-items-center">
|
|
<FeatherIcon
|
|
v-if="typeof icon == 'string'"
|
|
:name="icon"
|
|
class="size-4.5 text-gray-700"
|
|
/>
|
|
<component v-else :is="icon" class="size-4.5 text-gray-700" />
|
|
</span>
|
|
</slot>
|
|
</Tooltip>
|
|
<Tooltip :text="label" placement="right" :disabled="isCollapsed" hoverDelay="1.5">
|
|
<span
|
|
class="flex-1 flex-shrink-0 truncate text-base duration-300 ease-in-out"
|
|
:class="
|
|
isCollapsed
|
|
? 'ml-0 w-0 overflow-hidden opacity-0'
|
|
: 'ml-2 w-auto opacity-100'
|
|
"
|
|
>
|
|
{{ label }}
|
|
</span>
|
|
</Tooltip>
|
|
</div>
|
|
<slot name="right" />
|
|
</div>
|
|
</button>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Tooltip } from 'frappe-ui'
|
|
import { computed } from 'vue'
|
|
import { useRouter, useRoute } from 'vue-router'
|
|
import { isMobileView, mobileSidebarOpened } from '@/stores/settings'
|
|
|
|
const router = useRouter()
|
|
const route = useRoute()
|
|
|
|
const props = defineProps({
|
|
icon: {
|
|
type: Object,
|
|
},
|
|
label: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
to: {
|
|
type: [Object, String],
|
|
default: '',
|
|
},
|
|
isCollapsed: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
})
|
|
|
|
function handleClick() {
|
|
if (!props.to) return
|
|
if (typeof props.to === 'object') {
|
|
router.push(props.to)
|
|
} else {
|
|
router.push({ name: props.to })
|
|
}
|
|
if (isMobileView.value) {
|
|
mobileSidebarOpened.value = false
|
|
}
|
|
}
|
|
|
|
let isActive = computed(() => {
|
|
if (route.query.view) {
|
|
return route.query.view == props.to?.query?.view
|
|
}
|
|
return route.name === props.to
|
|
})
|
|
</script>
|