Skip to content

Commit d0514e1

Browse files
committed
fix(guards): free instances only if navigation is confirmed
1 parent ba40b8f commit d0514e1

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

src/components/Link.ts

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export function useLink(props: UseLinkOptions) {
3131
const href = computed(() => router.createHref(route.value))
3232

3333
const activeRecordIndex = computed<number>(() => {
34+
// TODO: handle children with empty path: they should relate to their parent
3435
const currentMatched = route.value.matched[route.value.matched.length - 1]
3536
return router.currentRoute.value.matched.findIndex(
3637
isSameRouteRecord.bind(null, currentMatched)

src/router.ts

+8-3
Original file line numberDiff line numberDiff line change
@@ -275,9 +275,6 @@ export function createRouter({
275275
for (const guard of record.leaveGuards) {
276276
guards.push(guardToPromiseFn(guard, to, from))
277277
}
278-
279-
// free the references
280-
record.instances = {}
281278
}
282279

283280
// run the queue of per route beforeRouteLeave guards
@@ -333,6 +330,14 @@ export function createRouter({
333330

334331
// run the queue of per route beforeEnter guards
335332
await runGuardQueue(guards)
333+
334+
// TODO: add tests
335+
// this should be done only if the navigation succeeds
336+
// if we redirect, it shouldn't be done because we don't know
337+
for (const record of leavingRecords) {
338+
// free the references
339+
record.instances = {}
340+
}
336341
}
337342

338343
/**

0 commit comments

Comments
 (0)