88 lines
1.8 KiB
Vue
Executable File
88 lines
1.8 KiB
Vue
Executable File
<template>
|
|
<DropdownTransition>
|
|
<ul class="toc-sidebar-links" v-if="items[0].children.length">
|
|
|
|
<li v-for="(item, i) in items[0].children" :key="i">
|
|
<PageSidebarTocLink :sidebarDepth="sidebarDepth" :item="item"/>
|
|
</li>
|
|
</ul>
|
|
</DropdownTransition>
|
|
</template>
|
|
|
|
<script>
|
|
import PageSidebarTocLink from '@theme/components/PageSidebarTocLink.vue'
|
|
import DropdownTransition from '@theme/components/DropdownTransition.vue'
|
|
import { isActive } from '../util'
|
|
|
|
export default {
|
|
name: 'PageSidebarToc',
|
|
|
|
components: { PageSidebarTocLink, DropdownTransition },
|
|
|
|
props: [
|
|
'items',
|
|
'depth', // depth of current sidebar links
|
|
'sidebarDepth' // depth of headers to be extracted
|
|
],
|
|
|
|
data () {
|
|
return {
|
|
openGroupIndex: 0
|
|
}
|
|
},
|
|
|
|
created () {
|
|
this.refreshIndex()
|
|
},
|
|
|
|
watch: {
|
|
'$route' () {
|
|
this.refreshIndex()
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
refreshIndex () {
|
|
const index = resolveOpenGroupIndex(
|
|
this.$route,
|
|
this.items[0].children
|
|
)
|
|
if (index > -1) {
|
|
this.openGroupIndex = index
|
|
}
|
|
},
|
|
|
|
toggleGroup (index) {
|
|
this.openGroupIndex = index === this.openGroupIndex ? -1 : index
|
|
},
|
|
|
|
isActive (page) {
|
|
return isActive(this.$route, page.regularPath)
|
|
}
|
|
}
|
|
}
|
|
|
|
function resolveOpenGroupIndex (route, items) {
|
|
for (let i = 0; i < items.length; i++) {
|
|
const item = items[i]
|
|
if (descendantIsActive(route, item)) {
|
|
return i
|
|
}
|
|
}
|
|
return -1
|
|
}
|
|
|
|
function descendantIsActive (route, item) {
|
|
if (item.type === 'group') {
|
|
return item.children.some(child => {
|
|
if (child.type === 'group') {
|
|
return descendantIsActive(route, child)
|
|
} else {
|
|
return child.type === 'page' && isActive(route, child.path)
|
|
}
|
|
})
|
|
}
|
|
return false
|
|
}
|
|
</script>
|