Skip to content

Commit 9697134

Browse files
committed
feat(router): add beforeResolve
1 parent 1d75ff3 commit 9697134

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { createDom, noGuard, newRouter as createRouter } from '../utils'
2+
import { RouteRecordRaw } from '../../src/types'
3+
4+
const Home = { template: `<div>Home</div>` }
5+
const Foo = { template: `<div>Foo</div>` }
6+
7+
const routes: RouteRecordRaw[] = [
8+
{ path: '/', component: Home },
9+
{ path: '/foo', component: Foo },
10+
]
11+
12+
describe('router.beforeEach', () => {
13+
beforeAll(() => {
14+
createDom()
15+
})
16+
17+
it('calls beforeEach guards on navigation', async () => {
18+
const spy = jest.fn()
19+
const router = createRouter({ routes })
20+
router.beforeResolve(spy)
21+
spy.mockImplementationOnce(noGuard)
22+
await router.push('/foo')
23+
expect(spy).toHaveBeenCalledTimes(1)
24+
})
25+
})

src/router.ts

+11
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ export interface Router {
147147
go(distance: number): void
148148

149149
beforeEach(guard: NavigationGuardWithThis<undefined>): () => void
150+
beforeResolve(guard: NavigationGuardWithThis<undefined>): () => void
150151
afterEach(guard: PostNavigationGuard): () => void
151152

152153
onError(handler: ErrorHandler): () => void
@@ -170,6 +171,7 @@ export function createRouter({
170171
const matcher = createRouterMatcher(routes, {})
171172

172173
const beforeGuards = useCallbacks<NavigationGuardWithThis<undefined>>()
174+
const beforeResolveGuards = useCallbacks<NavigationGuardWithThis<undefined>>()
173175
const afterGuards = useCallbacks<PostNavigationGuard>()
174176
const currentRoute = ref<RouteLocationNormalizedLoaded>(
175177
START_LOCATION_NORMALIZED
@@ -452,6 +454,14 @@ export function createRouter({
452454

453455
// run the queue of per route beforeEnter guards
454456
await runGuardQueue(guards)
457+
458+
// check global guards beforeEach
459+
guards = []
460+
for (const guard of beforeResolveGuards.list()) {
461+
guards.push(guardToPromiseFn(guard, to, from))
462+
}
463+
464+
await runGuardQueue(guards)
455465
}
456466

457467
function triggerAfterEach(
@@ -660,6 +670,7 @@ export function createRouter({
660670
forward: () => history.go(1),
661671

662672
beforeEach: beforeGuards.add,
673+
beforeResolve: beforeResolveGuards.add,
663674
afterEach: afterGuards.add,
664675

665676
onError: errorHandlers.add,

0 commit comments

Comments
 (0)