@@ -70,9 +70,17 @@ import { addDevtools } from './devtools'
70
70
71
71
/**
72
72
* Internal type to define an ErrorHandler
73
+ *
74
+ * @param error - error thrown
75
+ * @param to - location we were navigating to when the error happened
76
+ * @param from - location we were navigating from when the error happened
73
77
* @internal
74
78
*/
75
- export type _ErrorHandler = ( error : any ) => any
79
+ export type _ErrorHandler = (
80
+ error : any ,
81
+ to : RouteLocationNormalized ,
82
+ from : RouteLocationNormalizedLoaded
83
+ ) => any
76
84
// resolve, reject arguments of Promise constructor
77
85
type OnReadyCallback = [ ( ) => void , ( reason ?: any ) => void ]
78
86
@@ -664,7 +672,7 @@ export function createRouter(options: RouterOptions): Router {
664
672
isNavigationFailure ( error )
665
673
? error
666
674
: // reject any unknown error
667
- triggerError ( error )
675
+ triggerError ( error , toLocation , from )
668
676
)
669
677
. then ( ( failure : NavigationFailure | NavigationRedirectError | void ) => {
670
678
if ( failure ) {
@@ -979,7 +987,7 @@ export function createRouter(options: RouterOptions): Router {
979
987
// do not restore history on unknown direction
980
988
if ( info . delta ) routerHistory . go ( - info . delta , false )
981
989
// unrecognized error, transfer to the global handler
982
- return triggerError ( error )
990
+ return triggerError ( error , toLocation , from )
983
991
} )
984
992
. then ( ( failure : NavigationFailure | void ) => {
985
993
failure =
@@ -1012,14 +1020,21 @@ export function createRouter(options: RouterOptions): Router {
1012
1020
1013
1021
/**
1014
1022
* Trigger errorHandlers added via onError and throws the error as well
1023
+ *
1015
1024
* @param error - error to throw
1025
+ * @param to - location we were navigating to when the error happened
1026
+ * @param from - location we were navigating from when the error happened
1016
1027
* @returns the error as a rejected promise
1017
1028
*/
1018
- function triggerError ( error : any ) : Promise < unknown > {
1029
+ function triggerError (
1030
+ error : any ,
1031
+ to : RouteLocationNormalized ,
1032
+ from : RouteLocationNormalizedLoaded
1033
+ ) : Promise < unknown > {
1019
1034
markAsReady ( error )
1020
1035
const list = errorHandlers . list ( )
1021
1036
if ( list . length ) {
1022
- list . forEach ( handler => handler ( error ) )
1037
+ list . forEach ( handler => handler ( error , to , from ) )
1023
1038
} else {
1024
1039
if ( __DEV__ ) {
1025
1040
warn ( 'uncaught error during route navigation:' )
@@ -1072,7 +1087,7 @@ export function createRouter(options: RouterOptions): Router {
1072
1087
return nextTick ( )
1073
1088
. then ( ( ) => scrollBehavior ( to , from , scrollPosition ) )
1074
1089
. then ( position => position && scrollToPosition ( position ) )
1075
- . catch ( triggerError )
1090
+ . catch ( err => triggerError ( err , to , from ) )
1076
1091
}
1077
1092
1078
1093
const go = ( delta : number ) => routerHistory . go ( delta )
0 commit comments