feat: highlight nav by default when one of the items is matched (#2893)

pull/2937/head
Evan Liu 1 year ago committed by GitHub
parent cb4967313e
commit b1fbece047
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,14 +1,29 @@
<script lang="ts" setup>
import type { DefaultTheme } from 'vitepress/theme'
import { computed } from 'vue'
import { useData } from '../composables/data'
import { isActive } from '../../shared'
import VPFlyout from './VPFlyout.vue'
defineProps<{
const props = defineProps<{
item: DefaultTheme.NavItemWithChildren
}>()
const { page } = useData()
const isChildActive = (navItem: DefaultTheme.NavItem) => {
if ('link' in navItem) {
return isActive(
page.value.relativePath,
navItem.link,
!!props.item.activeMatch
)
} else {
return navItem.items.some(isChildActive)
}
}
const childrenActive = computed(() => isChildActive(props.item))
</script>
<template>
@ -19,7 +34,7 @@ const { page } = useData()
page.relativePath,
item.activeMatch,
!!item.activeMatch
)
) || childrenActive
}"
:button="item.text"
:items="item.items"

Loading…
Cancel
Save