-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTocItem.vue
95 lines (90 loc) · 2.01 KB
/
TocItem.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<script lang="ts">
import type { PropType } from 'vue'
import type { MarkdownItHeader } from '@mdit-vue/types'
const headingCssClassMap: Record<number, string> = {
1: '',
2: '',
3: 'ml-4',
4: 'ml-8',
5: 'ml-12',
6: 'ml-16',
}
export default defineComponent({
props: {
/**
* Section title
*
* @type { string }
*/
title: {
type: String,
default: '',
},
/**
* Section slug
*
* @type { string }
*/
slug: {
type: String,
default: '',
},
/**
* Section level
*
* @type { Number }
*/
level: {
type: Number,
default: 1,
},
/**
* Children table of contents
*
* @type { MarkdownItHeader[] }
*/
children: {
type: Array as PropType<MarkdownItHeader[]>,
default: () => [],
},
},
setup(props) {
const itemRef = ref(null)
const route = useRoute()
const isActive = computed(() => route.hash === `#${decodeURIComponent(props.slug)}`)
const headingOffsetCssClass = computed(() => headingCssClassMap[props.level])
watchEffect(() => {
if (typeof document !== 'undefined') {
const el = document.getElementById(props.slug)
if (isActive.value && el) {
el.scrollIntoView({ behavior: 'smooth' })
}
}
})
return { headingOffsetCssClass, itemRef, isActive }
},
})
</script>
<template>
<!-- Copied from Nextra Docs Theme with customizations -->
<li
ref="itemRef"
class="scroll-my-6 scroll-py-6 leading-7"
:class="headingOffsetCssClass"
>
<Link
:href="`#${slug}`"
class="inline-block no-underline"
:class="[
level === 2 && 'font-semibold',
isActive
? 'text-primary-500 subpixel-antialiased'
: 'text-gray-500 hover:text-gray-900 dark:text-gray-400 dark:hover:text-gray-300',
]"
:aria-selected="isActive"
>
{{ title }}
</Link>
</li>
<TocItem v-for="item in children" :key="item.slug" v-bind="item" />
</template>