36 lines
1.4 KiB
Vue
36 lines
1.4 KiB
Vue
<template>
|
|
<NuxtLink class="text-accent-blue inline-flex items-center" :to="overview ? { name: 'explore-path', params: { path: overview.path }, hash: hash } : href" :class="class">
|
|
<HoverCard nuxt-client class="min-w-[200px] min-h-[150px] max-w-[600px] max-h-[600px] w-full overflow-auto z-[45]" :class="{'overflow-hidden !p-0': overview?.type === 'canvas'}" :disabled="!overview">
|
|
<template #content>
|
|
<Markdown v-if="overview?.type === 'markdown'" class="!px-6" :path="pathname" :filter="hash.substring(1)" popover />
|
|
<template v-else-if="overview?.type === 'canvas'"><div class="w-[600px] h-[600px] relative"><Canvas :path="pathname" /></div></template>
|
|
</template>
|
|
<span>
|
|
<slot v-bind="$attrs"></slot>
|
|
<Icon class="w-4 h-4 inline-block" v-if="overview && overview.type !== 'markdown'" :icon="iconByType[overview.type]" />
|
|
</span>
|
|
</HoverCard>
|
|
</NuxtLink>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { parseURL } from 'ufo';
|
|
import { Icon } from '@iconify/vue/dist/iconify.js';
|
|
import { iconByType } from '#shared/content.util';
|
|
|
|
const { href } = defineProps<{
|
|
href: string
|
|
class?: string
|
|
}>();
|
|
|
|
const { hash, pathname } = parseURL(href);
|
|
|
|
const { content } = useContent();
|
|
const overview = computed(() => content.value.find(e => e.path === pathname));
|
|
</script>
|
|
|
|
<style>
|
|
.cm-link {
|
|
@apply text-accent-blue inline-flex items-center cursor-pointer hover:text-opacity-85;
|
|
}
|
|
</style> |