Skip to content

Commit db267be

Browse files
committed
fix(router): do not restore history when ...
navigating back or forward and a navigation guard triggers a redirect Related to #662
1 parent d55e51c commit db267be

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/router.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -934,8 +934,14 @@ export function createRouter(options: RouterOptions): Router {
934934
if (
935935
isNavigationFailure(error, ErrorTypes.NAVIGATION_GUARD_REDIRECT)
936936
) {
937-
// do not restore history on unknown direction
938-
if (info.delta) routerHistory.go(-info.delta, false)
937+
// Here we could call if (info.delta) routerHistory.go(-info.delta,
938+
// false) but this is bug prone as we have no way to wait the
939+
// navigation to be finished before calling pushWithRedirect. Using
940+
// a setTimeout of 16ms seems to work but there is not guarantee for
941+
// it to work on every browser. So Instead we do not restore the
942+
// history entry and trigger a new navigation as requested by the
943+
// navigation guard.
944+
939945
// the error is already handled by router.push we just want to avoid
940946
// logging the error
941947
pushWithRedirect(

0 commit comments

Comments
 (0)