mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
|
import { computed } from 'vue'
|
||
|
import { useData } from 'vitepress'
|
||
|
import {
|
||
|
isArray,
|
||
|
ensureStartingSlash,
|
||
|
removeExtention as removeExtension,
|
||
|
} from '../utils'
|
||
|
import { useLang } from './lang'
|
||
|
import { getSidebarConfig, getFlatSideBarLinks } from './sidebar'
|
||
|
|
||
|
export function usePageNav() {
|
||
|
const { page, theme } = useData()
|
||
|
const lang = useLang()
|
||
|
|
||
|
const path = computed(() => {
|
||
|
return removeExtension(ensureStartingSlash(page.value.relativePath))
|
||
|
})
|
||
|
|
||
|
const candidates = computed(() => {
|
||
|
const config = getSidebarConfig(
|
||
|
theme.value.sidebars,
|
||
|
path.value,
|
||
|
lang.value
|
||
|
)
|
||
|
return isArray(config) ? getFlatSideBarLinks(config) : []
|
||
|
})
|
||
|
|
||
|
const index = computed(() => {
|
||
|
return candidates.value.findIndex((item) => {
|
||
|
return item.link === path.value
|
||
|
})
|
||
|
})
|
||
|
const next = computed(() => {
|
||
|
if (
|
||
|
theme.value.nextLinks !== false &&
|
||
|
index.value > -1 &&
|
||
|
index.value < candidates.value.length - 1
|
||
|
) {
|
||
|
return candidates.value[index.value + 1]
|
||
|
}
|
||
|
})
|
||
|
const prev = computed(() => {
|
||
|
if (theme.value.prevLinks !== false && index.value > 0) {
|
||
|
return candidates.value[index.value - 1]
|
||
|
}
|
||
|
})
|
||
|
const hasLinks = computed(() => !!next.value || !!prev.value)
|
||
|
return {
|
||
|
next,
|
||
|
prev,
|
||
|
hasLinks,
|
||
|
}
|
||
|
}
|