elk/components/nav/NavSideItem.vue

41 lines
1 KiB
Vue
Raw Normal View History

2022-11-27 02:35:26 +00:00
<script setup lang="ts">
const props = defineProps<{
2022-11-27 16:59:33 +00:00
text?: string
2022-11-27 02:35:26 +00:00
icon: string
to: string | Record<string, string>
2022-11-27 02:35:26 +00:00
}>()
2022-11-27 16:59:33 +00:00
defineSlots<{
icon: {}
default: {}
}>()
const router = useRouter()
useCommand({
scope: 'Navigation',
2022-12-01 13:45:13 +00:00
name: () => props.text ?? (typeof props.to === 'string' ? props.to as string : props.to.name),
icon: () => props.icon,
onActivate() {
router.push(props.to)
},
})
2022-11-27 02:35:26 +00:00
</script>
<template>
<NuxtLink :to="to" :active-class="isMastoInitialised ? 'text-primary' : ''" group focus:outline-none @click="$scrollToTop">
<CommonTooltip :disabled="!isMediumScreen" :content="text" placement="right">
<div flex w-fit px2 mx3 lg:mx0 lg:px5 py2 gap4 items-center transition-100 rounded-full group-hover:bg-active group-focus-visible:ring="2 current">
<slot name="icon">
<div :class="icon" text-xl />
</slot>
<slot>
2022-12-21 12:30:51 +00:00
<span block sm:hidden lg:block>{{ text }}</span>
</slot>
</div>
</CommonTooltip>
2022-11-27 02:35:26 +00:00
</NuxtLink>
</template>