File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -548,6 +548,7 @@ describe('Router', () => {
548
548
} )
549
549
} )
550
550
} )
551
+
551
552
describe ( 'Dynamic Routing' , ( ) => {
552
553
it ( 'resolves new added routes' , async ( ) => {
553
554
const { router } = await newRouter ( )
@@ -565,6 +566,19 @@ describe('Router', () => {
565
566
} )
566
567
} )
567
568
569
+ it ( 'checks if a route exists' , async ( ) => {
570
+ const { router } = await newRouter ( )
571
+ router . addRoute ( {
572
+ name : 'new-route' ,
573
+ path : '/new-route' ,
574
+ component : components . Foo ,
575
+ } )
576
+ expect ( router . hasRoute ( 'new-route' ) ) . toBe ( true )
577
+ expect ( router . hasRoute ( 'no' ) ) . toBe ( false )
578
+ router . removeRoute ( 'new-route' )
579
+ expect ( router . hasRoute ( 'new-route' ) ) . toBe ( false )
580
+ } )
581
+
568
582
it ( 'can redirect to children in the middle of navigation' , async ( ) => {
569
583
const { router } = await newRouter ( )
570
584
expect ( router . resolve ( '/new-route' ) ) . toMatchObject ( {
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ export interface Router {
87
87
addRoute ( parentName : RouteRecordName , route : RouteRecordRaw ) : ( ) => void
88
88
addRoute ( route : RouteRecordRaw ) : ( ) => void
89
89
removeRoute ( name : RouteRecordName ) : void
90
- // TODO: hasRoute()
90
+ hasRoute ( name : RouteRecordName ) : boolean
91
91
getRoutes ( ) : RouteRecord [ ]
92
92
93
93
resolve ( to : RouteLocationRaw ) : RouteLocation
@@ -163,6 +163,10 @@ export function createRouter({
163
163
return matcher . getRoutes ( ) . map ( routeMatcher => routeMatcher . record )
164
164
}
165
165
166
+ function hasRoute ( name : RouteRecordName ) : boolean {
167
+ return ! ! matcher . getRecordMatcher ( name )
168
+ }
169
+
166
170
function resolve (
167
171
location : RouteLocationRaw ,
168
172
currentLocation ?: RouteLocationNormalizedLoaded
@@ -545,6 +549,7 @@ export function createRouter({
545
549
546
550
addRoute,
547
551
removeRoute,
552
+ hasRoute,
548
553
getRoutes,
549
554
550
555
push,
You can’t perform that action at this time.
0 commit comments