Last active
March 20, 2019 21:25
-
-
Save arturovt/3f0a90ac4be79ab3158afcfce3194ef9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.transitions = new BehaviorSubject<NavigationTransition>({ | |
id: 0, | |
currentUrlTree: this.currentUrlTree, | |
currentRawUrl: this.currentUrlTree, | |
extractedUrl: this.urlHandlingStrategy.extract(this.currentUrlTree), | |
urlAfterRedirects: this.urlHandlingStrategy.extract(this.currentUrlTree), | |
rawUrl: this.currentUrlTree, | |
extras: {}, | |
resolve: null, | |
reject: null, | |
promise: Promise.resolve(true), | |
source: 'imperative', | |
state: null, | |
currentSnapshot: this.routerState.snapshot, | |
targetSnapshot: null, | |
currentRouterState: this.routerState, | |
targetRouterState: null, | |
guards: { canActivateChecks: [], canDeactivateChecks: [] }, | |
guardsResult: null | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment