@@ -5,18 +5,25 @@ import {
5
5
RouteLocationNormalized ,
6
6
} from './types'
7
7
import { assign } from './utils'
8
+ import { PolySymbol } from './injectionSymbols'
8
9
9
10
/**
10
- * order is important to make it backwards compatible with v3
11
+ * Flags so we can combine them when checking for multiple errors
11
12
*/
12
13
export const enum ErrorTypes {
13
- MATCHER_NOT_FOUND = 0 ,
14
- NAVIGATION_GUARD_REDIRECT = 1 ,
15
- NAVIGATION_ABORTED = 2 ,
16
- NAVIGATION_CANCELLED = 3 ,
17
- NAVIGATION_DUPLICATED = 4 ,
14
+ // they must be literals to be used as values so we can't write
15
+ // 1 << 2
16
+ MATCHER_NOT_FOUND = 1 ,
17
+ NAVIGATION_GUARD_REDIRECT = 2 ,
18
+ NAVIGATION_ABORTED = 4 ,
19
+ NAVIGATION_CANCELLED = 8 ,
20
+ NAVIGATION_DUPLICATED = 16 ,
18
21
}
19
22
23
+ const NavigationFailureSymbol = PolySymbol (
24
+ __DEV__ ? 'navigation failure' : 'nf'
25
+ )
26
+
20
27
interface RouterErrorBase extends Error {
21
28
type : ErrorTypes
22
29
}
@@ -85,14 +92,42 @@ export function createRouterError<E extends RouterError>(
85
92
if ( __DEV__ || ! __BROWSER__ ) {
86
93
return assign (
87
94
new Error ( ErrorTypeMessages [ type ] ( params as any ) ) ,
88
- { type } ,
95
+ {
96
+ type,
97
+ [ NavigationFailureSymbol ] : true ,
98
+ } as { type : typeof type } ,
89
99
params
90
100
) as E
91
101
} else {
92
- return assign ( new Error ( ) , { type } , params ) as E
102
+ return assign (
103
+ new Error ( ) ,
104
+ {
105
+ type,
106
+ [ NavigationFailureSymbol ] : true ,
107
+ } as { type : typeof type } ,
108
+ params
109
+ ) as E
93
110
}
94
111
}
95
112
113
+ export function isNavigationFailure (
114
+ error : any ,
115
+ type : ErrorTypes . NAVIGATION_GUARD_REDIRECT
116
+ ) : error is NavigationRedirectError
117
+ export function isNavigationFailure (
118
+ error : any ,
119
+ type : ErrorTypes
120
+ ) : error is NavigationFailure
121
+ export function isNavigationFailure (
122
+ error : any ,
123
+ type ?: number
124
+ ) : error is NavigationFailure {
125
+ return (
126
+ NavigationFailureSymbol in error &&
127
+ ( type == null || ! ! ( ( error as NavigationFailure ) . type & type ) )
128
+ )
129
+ }
130
+
96
131
const propertiesToLog = [ 'params' , 'query' , 'hash' ] as const
97
132
98
133
function stringifyRoute ( to : RouteLocationRaw ) : string {
0 commit comments