File tree 4 files changed +31
-1
lines changed
src/client/theme-default/components
4 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ type NavItemWithLink = {
83
83
interface NavItemWithChildren {
84
84
text? : string
85
85
items: NavItemWithLink []
86
+ activeMatch? : string
86
87
}
87
88
```
88
89
Original file line number Diff line number Diff line change @@ -72,6 +72,14 @@ function onBlur() {
72
72
fill : var (--vp-c-text-2 );
73
73
}
74
74
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
+
75
83
.VPFlyout :hover .menu ,
76
84
.button [aria-expanded = " true" ] + .menu {
77
85
opacity : 1 ;
Original file line number Diff line number Diff line change 1
1
<script lang="ts" setup>
2
+ import { useData } from ' vitepress'
2
3
import type { DefaultTheme } from ' vitepress/theme'
4
+ import { isActive } from ' ../support/utils'
3
5
import VPFlyout from ' ./VPFlyout.vue'
4
6
5
7
defineProps <{
6
8
item: DefaultTheme .NavItemWithChildren
7
9
}>()
10
+
11
+ const { page } = useData ()
8
12
</script >
9
13
10
14
<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
+ />
12
27
</template >
Original file line number Diff line number Diff line change @@ -94,6 +94,12 @@ export namespace DefaultTheme {
94
94
export interface NavItemWithChildren {
95
95
text ?: string
96
96
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
97
103
}
98
104
99
105
// image -----------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments