@@ -19,6 +19,7 @@ const records = {
19
19
homeAlias : { } as RouteRecordNormalized ,
20
20
foo : { } as RouteRecordNormalized ,
21
21
parent : { } as RouteRecordNormalized ,
22
+ childEmpty : { } as RouteRecordNormalized ,
22
23
child : { } as RouteRecordNormalized ,
23
24
parentAlias : { } as RouteRecordNormalized ,
24
25
childAlias : { } as RouteRecordNormalized ,
@@ -33,14 +34,20 @@ records.childAlias = { aliasOf: records.child } as RouteRecordNormalized
33
34
34
35
type RouteLocationResolved = RouteLocationNormalized & { href : string }
35
36
36
- const locations : Record <
37
- string ,
38
- {
39
- string : string
40
- normalized : RouteLocationResolved
41
- toResolve ?: MatcherLocationRaw & Required < RouteQueryAndHash >
42
- }
43
- > = {
37
+ function createLocations <
38
+ T extends Record <
39
+ string ,
40
+ {
41
+ string : string
42
+ normalized : RouteLocationResolved
43
+ toResolve ?: MatcherLocationRaw & Required < RouteQueryAndHash >
44
+ }
45
+ >
46
+ > ( locs : T ) {
47
+ return locs
48
+ }
49
+
50
+ const locations = createLocations ( {
44
51
basic : {
45
52
string : '/home' ,
46
53
// toResolve: { path: '/home', fullPath: '/home', undefined, query: {}, hash: '' },
@@ -167,6 +174,21 @@ const locations: Record<
167
174
} ,
168
175
} ,
169
176
177
+ childEmpty : {
178
+ string : '/parent' ,
179
+ normalized : {
180
+ fullPath : '/parent' ,
181
+ href : '/parent' ,
182
+ path : '/parent' ,
183
+ params : { } ,
184
+ meta : { } ,
185
+ query : { } ,
186
+ hash : '' ,
187
+ matched : [ records . parent , records . childEmpty ] ,
188
+ redirectedFrom : undefined ,
189
+ name : undefined ,
190
+ } ,
191
+ } ,
170
192
child : {
171
193
string : '/parent/child' ,
172
194
normalized : {
@@ -257,6 +279,14 @@ const locations: Record<
257
279
name : undefined ,
258
280
} ,
259
281
} ,
282
+ } )
283
+
284
+ // add paths to records because they are used to check isActive
285
+ for ( let record in records ) {
286
+ let location = locations [ record as keyof typeof locations ]
287
+ if ( location ) {
288
+ records [ record as keyof typeof records ] . path = location . normalized . path
289
+ }
260
290
}
261
291
262
292
async function factory (
@@ -461,6 +491,18 @@ describe('RouterLink', () => {
461
491
)
462
492
} )
463
493
494
+ it ( 'empty path child is active as if it was the parent when on adjacent child' , async ( ) => {
495
+ const { wrapper } = await factory (
496
+ locations . child . normalized ,
497
+ { to : locations . childEmpty . string } ,
498
+ locations . childEmpty . normalized
499
+ )
500
+ expect ( wrapper . find ( 'a' ) ! . className ) . toContain ( 'router-link-active' )
501
+ expect ( wrapper . find ( 'a' ) ! . className ) . not . toContain (
502
+ 'router-link-exact-active'
503
+ )
504
+ } )
505
+
464
506
it ( 'alias parent is active if the child is an absolute path' , async ( ) => {
465
507
const { wrapper } = await factory (
466
508
locations . childAsAbsolute . normalized ,
0 commit comments