Skip to content

Commit ca02444

Browse files
committed
feat(router): hasRoute
1 parent f1c2e01 commit ca02444

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

__tests__/router.spec.ts

+14
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,7 @@ describe('Router', () => {
548548
})
549549
})
550550
})
551+
551552
describe('Dynamic Routing', () => {
552553
it('resolves new added routes', async () => {
553554
const { router } = await newRouter()
@@ -565,6 +566,19 @@ describe('Router', () => {
565566
})
566567
})
567568

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+
568582
it('can redirect to children in the middle of navigation', async () => {
569583
const { router } = await newRouter()
570584
expect(router.resolve('/new-route')).toMatchObject({

src/router.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export interface Router {
8787
addRoute(parentName: RouteRecordName, route: RouteRecordRaw): () => void
8888
addRoute(route: RouteRecordRaw): () => void
8989
removeRoute(name: RouteRecordName): void
90-
// TODO: hasRoute()
90+
hasRoute(name: RouteRecordName): boolean
9191
getRoutes(): RouteRecord[]
9292

9393
resolve(to: RouteLocationRaw): RouteLocation
@@ -163,6 +163,10 @@ export function createRouter({
163163
return matcher.getRoutes().map(routeMatcher => routeMatcher.record)
164164
}
165165

166+
function hasRoute(name: RouteRecordName): boolean {
167+
return !!matcher.getRecordMatcher(name)
168+
}
169+
166170
function resolve(
167171
location: RouteLocationRaw,
168172
currentLocation?: RouteLocationNormalizedLoaded
@@ -545,6 +549,7 @@ export function createRouter({
545549

546550
addRoute,
547551
removeRoute,
552+
hasRoute,
548553
getRoutes,
549554

550555
push,

0 commit comments

Comments
 (0)