Skip to content

Commit 41bffda

Browse files
committed
fix(guards): remove registered update guards after leaving
1 parent dc476ec commit 41bffda

File tree

3 files changed

+44
-13
lines changed

3 files changed

+44
-13
lines changed

__tests__/guards/onBeforeRouteUpdate.spec.ts

+43
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,47 @@ describe('onBeforeRouteUpdate', () => {
5252
await router.push('/foo?q')
5353
expect(spy).toHaveBeenCalledTimes(1)
5454
})
55+
56+
it('removes update guards when leaving', async () => {
57+
expect.assertions(3)
58+
const spy = jest
59+
.fn()
60+
.mockImplementation(function (this: any, to, from, next) {
61+
expect(typeof this.counter).toBe('number')
62+
next()
63+
})
64+
const WithLeave = defineComponent({
65+
template: `text`,
66+
// we use data to check if the context is the right one because saving `this` in a variable logs a few warnings
67+
data: () => ({ counter: 0 }),
68+
setup() {
69+
onBeforeRouteUpdate(spy)
70+
},
71+
})
72+
73+
const router = createRouter({
74+
history: createMemoryHistory(),
75+
routes: [
76+
{ path: '/', component },
77+
{ path: '/foo', component: WithLeave as any },
78+
],
79+
})
80+
const app = createApp({
81+
template: `
82+
<router-view />
83+
`,
84+
})
85+
app.use(router)
86+
const rootEl = document.createElement('div')
87+
document.body.appendChild(rootEl)
88+
app.mount(rootEl)
89+
90+
await router.isReady()
91+
await router.push('/foo')
92+
await router.push('/foo?q')
93+
await router.push('/')
94+
await router.push('/foo')
95+
await router.push('/foo?q')
96+
expect(spy).toHaveBeenCalledTimes(2)
97+
})
5598
})

src/navigationGuards.ts

-13
Original file line numberDiff line numberDiff line change
@@ -260,16 +260,3 @@ function isRouteComponent(
260260
'__vccOpts' in component
261261
)
262262
}
263-
264-
/**
265-
* 1. beforeRouteEnter callbacks
266-
* 2. Dictionary of instances per view name
267-
*/
268-
export type GuardManagerEntry = [
269-
NavigationGuardNextCallback[],
270-
Record<string, ComponentPublicInstance | undefined | null>
271-
]
272-
273-
export function createGuardManager() {
274-
return new Map<RouteRecordNormalized, GuardManagerEntry>()
275-
}

src/router.ts

+1
Original file line numberDiff line numberDiff line change
@@ -691,6 +691,7 @@ export function createRouter(options: RouterOptions): Router {
691691
for (const record of leavingRecords) {
692692
// remove registered guards from removed matched records
693693
record.leaveGuards = []
694+
record.updateGuards = []
694695
// free the references
695696
record.instances = {}
696697
record.enterCallbacks = {}

0 commit comments

Comments
 (0)