@@ -139,13 +139,11 @@ export interface Router {
139
139
140
140
resolve ( to : RouteLocationRaw ) : RouteLocation & { href : string }
141
141
142
- push ( to : RouteLocationRaw ) : Promise < NavigationFailure | void >
143
- replace ( to : RouteLocationRaw ) : Promise < NavigationFailure | void >
144
- // TODO: return a promise when https://github.com/vuejs/rfcs/pull/150 is
145
- // merged
146
- back ( ) : void
147
- forward ( ) : void
148
- go ( delta : number ) : void
142
+ push ( to : RouteLocationRaw ) : Promise < NavigationFailure | void | undefined >
143
+ replace ( to : RouteLocationRaw ) : Promise < NavigationFailure | void | undefined >
144
+ back ( ) : Promise < NavigationFailure | void | undefined >
145
+ forward ( ) : Promise < NavigationFailure | void | undefined >
146
+ go ( delta : number ) : Promise < NavigationFailure | void | undefined >
149
147
150
148
beforeEach ( guard : NavigationGuardWithThis < undefined > ) : ( ) => void
151
149
beforeResolve ( guard : NavigationGuardWithThis < undefined > ) : ( ) => void
@@ -313,7 +311,7 @@ export function createRouter(options: RouterOptions): Router {
313
311
function pushWithRedirect (
314
312
to : RouteLocationRaw | RouteLocation ,
315
313
redirectedFrom ?: RouteLocation
316
- ) : Promise < NavigationFailure | void > {
314
+ ) : Promise < NavigationFailure | void | undefined > {
317
315
const targetLocation : RouteLocation = ( pendingLocation = resolve ( to ) )
318
316
const from = currentRoute . value
319
317
const data : HistoryState | undefined = ( to as RouteLocationOptions ) . state
@@ -346,7 +344,7 @@ export function createRouter(options: RouterOptions): Router {
346
344
const toLocation = targetLocation as RouteLocationNormalized
347
345
348
346
toLocation . redirectedFrom = redirectedFrom
349
- let failure : NavigationFailure | void
347
+ let failure : NavigationFailure | void | undefined
350
348
351
349
if ( ! force && isSameRouteLocation ( from , targetLocation ) )
352
350
failure = createRouterError < NavigationFailure > (
@@ -629,7 +627,7 @@ export function createRouter(options: RouterOptions): Router {
629
627
( error as NavigationRedirectError ) . to ,
630
628
toLocation
631
629
) . catch ( ( ) => {
632
- // TODO: in dev show warning, in prod noop , same as initial navigation
630
+ // TODO: in dev show warning, in prod triggerError , same as initial navigation
633
631
} )
634
632
// avoid the then branch
635
633
return Promise . reject ( )
@@ -659,7 +657,7 @@ export function createRouter(options: RouterOptions): Router {
659
657
)
660
658
} )
661
659
. catch ( ( ) => {
662
- // TODO: same as above: in dev show warning, in prod noop, same as initial navigation
660
+ // TODO: same as above
663
661
} )
664
662
} )
665
663
@@ -724,6 +722,25 @@ export function createRouter(options: RouterOptions): Router {
724
722
. then ( position => position && scrollToPosition ( position ) )
725
723
}
726
724
725
+ function go ( delta : number ) {
726
+ return new Promise < NavigationFailure | void | undefined > (
727
+ ( resolve , reject ) => {
728
+ let removeError = errorHandlers . add ( err => {
729
+ removeError ( )
730
+ removeAfterEach ( )
731
+ reject ( err )
732
+ } )
733
+ let removeAfterEach = afterGuards . add ( ( _to , _from , failure ) => {
734
+ removeError ( )
735
+ removeAfterEach ( )
736
+ resolve ( failure )
737
+ } )
738
+
739
+ routerHistory . go ( delta )
740
+ }
741
+ )
742
+ }
743
+
727
744
const router : Router = {
728
745
currentRoute,
729
746
@@ -736,9 +753,9 @@ export function createRouter(options: RouterOptions): Router {
736
753
737
754
push,
738
755
replace,
739
- go : routerHistory . go ,
740
- back : ( ) => routerHistory . go ( - 1 ) ,
741
- forward : ( ) => routerHistory . go ( 1 ) ,
756
+ go,
757
+ back : ( ) => go ( - 1 ) ,
758
+ forward : ( ) => go ( 1 ) ,
742
759
743
760
beforeEach : beforeGuards . add ,
744
761
beforeResolve : beforeResolveGuards . add ,
0 commit comments