@@ -13,6 +13,7 @@ import {
13
13
RouteLocationOptions ,
14
14
MatcherLocationRaw ,
15
15
RouteParams ,
16
+ NavigationGuardReturn ,
16
17
} from './types'
17
18
import { RouterHistory , HistoryState , NavigationType } from './history/common'
18
19
import {
@@ -778,6 +779,14 @@ export function createRouter(options: RouterOptions): Router {
778
779
return error ? Promise . reject ( error ) : Promise . resolve ( )
779
780
}
780
781
782
+ function runWithContext < T > ( fn : ( ) => T ) : T {
783
+ const app : App | undefined = installedApps . values ( ) . next ( ) . value
784
+ // support Vue < 3.3
785
+ return app && typeof app . runWithContext === 'function'
786
+ ? app . runWithContext ( fn )
787
+ : fn ( )
788
+ }
789
+
781
790
// TODO: refactor the whole before guards by internally using router.beforeEach
782
791
783
792
function navigate (
@@ -907,7 +916,9 @@ export function createRouter(options: RouterOptions): Router {
907
916
) : void {
908
917
// navigation is confirmed, call afterGuards
909
918
// TODO: wrap with error handlers
910
- for ( const guard of afterGuards . list ( ) ) guard ( to , from , failure )
919
+ for ( const guard of afterGuards . list ( ) ) {
920
+ runWithContext ( ( ) => guard ( to , from , failure ) )
921
+ }
911
922
}
912
923
913
924
/**
@@ -1263,14 +1274,15 @@ export function createRouter(options: RouterOptions): Router {
1263
1274
} ,
1264
1275
}
1265
1276
1266
- return router
1267
- }
1277
+ // TODO: type this as NavigationGuardReturn or similar instead of any
1278
+ function runGuardQueue ( guards : Lazy < any > [ ] ) : Promise < any > {
1279
+ return guards . reduce (
1280
+ ( promise , guard ) => promise . then ( ( ) => runWithContext ( guard ) ) ,
1281
+ Promise . resolve ( )
1282
+ )
1283
+ }
1268
1284
1269
- function runGuardQueue ( guards : Lazy < any > [ ] ) : Promise < void > {
1270
- return guards . reduce (
1271
- ( promise , guard ) => promise . then ( ( ) => guard ( ) ) ,
1272
- Promise . resolve ( )
1273
- )
1285
+ return router
1274
1286
}
1275
1287
1276
1288
function extractChangingRecords (
0 commit comments