mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
59 lines
1.2 KiB
Vue
59 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import type { MenuItem } from '../composables/outline'
|
|
|
|
defineProps<{
|
|
headers: MenuItem[]
|
|
root?: boolean
|
|
}>()
|
|
|
|
function onClick({ target: el }: Event) {
|
|
const id = (el as HTMLAnchorElement).href!.split('#')[1]
|
|
const heading = document.getElementById(decodeURIComponent(id))
|
|
heading?.focus({ preventScroll: true })
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<ul class="VPDocOutlineItem" :class="root ? 'root' : 'nested'">
|
|
<li v-for="{ children, link, title } in headers">
|
|
<a class="outline-link" :href="link" @click="onClick" :title="title">{{ title }}</a>
|
|
<template v-if="children?.length">
|
|
<VPDocOutlineItem :headers="children" />
|
|
</template>
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.root {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.nested {
|
|
padding-right: 16px;
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.outline-link {
|
|
display: block;
|
|
line-height: 32px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: var(--vp-c-text-2);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
transition: color 0.5s;
|
|
}
|
|
|
|
.outline-link:hover,
|
|
.outline-link.active {
|
|
color: var(--vp-c-text-1);
|
|
transition: color 0.25s;
|
|
}
|
|
|
|
.outline-link.nested {
|
|
padding-left: 13px;
|
|
}
|
|
</style>
|