Skip to content

Commit d76c6aa

Browse files
committed
feat: allow true in next
1 parent 5dce7bc commit d76c6aa

File tree

5 files changed

+30
-8
lines changed

5 files changed

+30
-8
lines changed

__tests__/guards/component-beforeRouteEnter.spec.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,8 @@ describe('beforeRouteEnter', () => {
215215
expect(router.currentRoute.value.fullPath).toBe('/foo')
216216
})
217217

218-
// not implemented yet as it depends on Vue 3 Suspense
219-
it.skip('calls next callback', done => {
218+
// TODO:
219+
it.skip('calls next callback', async done => {
220220
const router = createRouter({ routes })
221221
beforeRouteEnter.mockImplementationOnce((to, from, next) => {
222222
next(vm => {
@@ -225,6 +225,9 @@ describe('beforeRouteEnter', () => {
225225
done()
226226
})
227227
})
228+
229+
await router.push('/')
230+
await router.push('/guard/2')
228231
})
229232

230233
it.skip('calls next callback after waiting', async done => {

playground/views/User.vue

+8
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,13 @@ export default defineComponent({
1010
props: {
1111
id: String,
1212
},
13+
14+
beforeRouteUpdate(to, from, next) {
15+
// TODO: these do not work yet
16+
console.log('this', this)
17+
next(vm => {
18+
console.log('in next', vm)
19+
})
20+
},
1321
})
1422
</script>

src/types/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,12 @@ export interface MatcherLocationRedirect {
217217
export interface NavigationGuardCallback {
218218
(): void
219219
(location: RouteLocation): void
220-
(valid: false): void
220+
(valid: boolean): void
221221
(cb: (vm: any) => void): void
222222
}
223223

224+
export type NavigationGuardNextCallback = (vm: any) => any
225+
224226
export interface NavigationGuard<V = void> {
225227
(
226228
this: V,

src/utils/guardToPromiseFn.ts

+12-4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import {
33
RouteLocationNormalized,
44
NavigationGuardCallback,
55
RouteLocation,
6+
RouteLocationNormalizedResolved,
7+
NavigationGuardNextCallback,
68
} from '../types'
79

810
import { isRouteLocation } from '../types'
@@ -11,18 +13,24 @@ import { NavigationGuardRedirect, NavigationAborted } from '../errors'
1113
export function guardToPromiseFn(
1214
guard: NavigationGuard,
1315
to: RouteLocationNormalized,
14-
from: RouteLocationNormalized
16+
from: RouteLocationNormalizedResolved
17+
// record?: RouteRecordNormalized
1518
): () => Promise<void> {
1619
return () =>
1720
new Promise((resolve, reject) => {
1821
const next: NavigationGuardCallback = (
19-
valid?: boolean | RouteLocation
22+
valid?: boolean | RouteLocation | NavigationGuardNextCallback
2023
) => {
21-
// TODO: handle callback
2224
if (valid === false) reject(new NavigationAborted(to, from))
2325
else if (isRouteLocation(valid)) {
2426
reject(new NavigationGuardRedirect(to, valid))
25-
} else resolve()
27+
} else if (!valid || valid === true) {
28+
resolve()
29+
} else {
30+
// TODO: call the in component enter callbacks. Maybe somewhere else
31+
// record && record.enterCallbacks.push(valid)
32+
resolve()
33+
}
2634
}
2735

2836
guard(to, from, next)

src/utils/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import {
33
RouteParams,
44
Immutable,
55
RouteComponent,
6+
RouteLocationNormalizedResolved,
67
} from '../types'
78
import { guardToPromiseFn } from './guardToPromiseFn'
89
import { RouteRecordNormalized } from '../matcher/types'
@@ -23,7 +24,7 @@ export function extractComponentsGuards(
2324
matched: RouteRecordNormalized[],
2425
guardType: GuardType,
2526
to: RouteLocationNormalized,
26-
from: RouteLocationNormalized
27+
from: RouteLocationNormalizedResolved
2728
) {
2829
const guards: Array<() => Promise<void>> = []
2930

0 commit comments

Comments
 (0)