jointrashposs/components/docs/TocLinks.vue

76 lines
2.0 KiB
Vue
Raw Normal View History

2023-07-11 19:19:32 +02:00
<template>
<ul class="toc-links mb-4 space-y-2">
<li
v-for="link in links"
:key="link.text"
:class="[`depth-${link.depth}`]"
>
<a
:href="`#${link.id}`"
@click.prevent="scrollToHeading(link.id)"
:class="['hover:text-accent-600', activeHeadings.includes(link.id) ? 'font-bold text-accent-600' : '']"
>
{{ link.text }}
</a>
<TocLinks
class="mt-2"
v-if="link.children"
:links="link.children"
@move="childMove($event)"
/>
</li>
</ul>
</template>
<script setup lang="ts">
import type { PropType } from 'vue'
import type { TocLink } from '@nuxt/content/dist/runtime/types'
const props = defineProps({
links: {
type: Array as PropType<TocLink[]>,
default: () => []
}
});
const emit = defineEmits(['move'])
const { activeHeadings, updateHeadings } = useScrollspy();
if (process.client) {
setTimeout(() => {
updateHeadings([
...document.querySelectorAll('.markdown-body h1'),
...document.querySelectorAll('.markdown-body h2'),
...document.querySelectorAll('.markdown-body h3'),
...document.querySelectorAll('.markdown-body h4'),
]);
}, 300);
}
function scrollToHeading (id: string) {
if (process.client) {
if (!decodeURIComponent(location.href).includes(`#${id}`)) {
// ページ遷移させずにハッシュだけ置き換えるために、history APIに直接書き込み
history.pushState({}, '', `#${id}`);
}
document.getElementById(id)?.scrollIntoView({
behavior: 'smooth'
});
}
emit('move', id)
}
function childMove(id: string) {
emit('move', id)
}
</script>
<style scoped>
.toc-links ::v-deep(.depth-3) {
@apply ml-2;
}
.toc-links ::v-deep(.depth-4) {
@apply ml-4;
}
</style>