-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathToc.vue
65 lines (58 loc) · 1.59 KB
/
Toc.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<script setup lang="ts">
import type { PropType } from 'vue'
import type { MarkdownItHeader } from '@mdit-vue/types'
const props = defineProps({
/**
* Table of contents
*
* @type { MarkdownItHeader[] }
*/
toc: {
type: Array as PropType<MarkdownItHeader[]>,
default: () => [],
},
})
const hasHeadings = computed(() => props.toc.length > 0)
const { t } = useI18n()
const tocCssClass = ref('')
const tocAnchor = ref(null)
const tocContent = ref(null)
const handleScroll = () => {
const e: HTMLElement = tocContent?.value
const offsetTop = tocAnchor?.value?.offsetTop - 24
if (typeof window !== 'undefined' && window.scrollY > offsetTop) {
e.classList.add('fixed')
e.style.top = '1.5rem'
}
else {
e.classList.remove('fixed')
e.style.top = ''
}
}
if (typeof window !== 'undefined') {
window.addEventListener('scroll', handleScroll)
}
onUnmounted(() => {
if (typeof window !== 'undefined') {
window.removeEventListener('scroll', handleScroll)
}
})
</script>
<template>
<!-- Ported from Nextra Docs Theme with customizations -->
<div class="site-toc order-last hidden shrink-0 px-4 text-sm xl:block">
<div ref="tocAnchor" class="h-0 m-0 p-0" />
<div
ref="tocContent"
class="max-h-[calc(100vh-4rem-env(safe-area-inset-bottom))] overflow-y-auto"
:class="tocCssClass"
>
<ul v-if="hasHeadings">
<p class="mb-4 font-semibold tracking-tight">
{{ t('table_of_contents') }}
</p>
<TocItem v-for="heading in toc" :key="heading.slug" v-bind="heading" />
</ul>
</div>
</div>
</template>