Skip to content

Commit fdb5720

Browse files
casyalexkiaking
andauthoredJun 21, 2022
feat(theme): add active status to nav menu group (#820)
Co-authored-by: Kia King Ishii <kia.king.08@gmail.com>
1 parent 47f1df5 commit fdb5720

File tree

4 files changed

+31
-1
lines changed

4 files changed

+31
-1
lines changed
 

‎docs/config/theme-configs.md

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ type NavItemWithLink = {
8383
interface NavItemWithChildren {
8484
text?: string
8585
items: NavItemWithLink[]
86+
activeMatch?: string
8687
}
8788
```
8889

‎src/client/theme-default/components/VPFlyout.vue

+8
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,14 @@ function onBlur() {
7272
fill: var(--vp-c-text-2);
7373
}
7474
75+
.VPFlyout.active .text {
76+
color: var(--vp-c-brand);
77+
}
78+
79+
.VPFlyout.active:hover .text {
80+
color: var(--vp-c-brand-dark);
81+
}
82+
7583
.VPFlyout:hover .menu,
7684
.button[aria-expanded="true"] + .menu {
7785
opacity: 1;
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,27 @@
11
<script lang="ts" setup>
2+
import { useData } from 'vitepress'
23
import type { DefaultTheme } from 'vitepress/theme'
4+
import { isActive } from '../support/utils'
35
import VPFlyout from './VPFlyout.vue'
46
57
defineProps<{
68
item: DefaultTheme.NavItemWithChildren
79
}>()
10+
11+
const { page } = useData()
812
</script>
913

1014
<template>
11-
<VPFlyout :button="item.text" :items="item.items" />
15+
<VPFlyout
16+
:class="{
17+
VPNavBarMenuGroup: true,
18+
active: isActive(
19+
page.relativePath,
20+
item.activeMatch,
21+
!!item.activeMatch
22+
)
23+
}"
24+
:button="item.text"
25+
:items="item.items"
26+
/>
1227
</template>

‎types/default-theme.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,12 @@ export namespace DefaultTheme {
9494
export interface NavItemWithChildren {
9595
text?: string
9696
items: (NavItemChildren | NavItemWithLink)[]
97+
98+
/**
99+
* `activeMatch` is expected to be a regex string. We can't use actual
100+
* RegExp object here because it isn't serializable
101+
*/
102+
activeMatch?: string
97103
}
98104

99105
// image -----------------------------------------------------------------------

0 commit comments

Comments
 (0)
Please sign in to comment.