-
-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Support for replaceUrl and skipLocationChange #705
Comments
+1 Hopefully this really gets done in 3.2 and the 3.2 release isn't too far away! This seems to be the only way to successfully add an interstitial login page that doesn't get added to History. For example:
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean {
if (LoginService.isLoggedIn()) {
return true;
} else {
this.redirectUrl = state.url;
this.router.navigate(["/login"], { skipLocationChange: true });
return false;
}
} and redirect code once login is successful: this.router.navigate([this.redirectUrl]); Issue #284 suggests to use a modal dialog, but I don't think I can do that in this scenario: the AuthGuard can't display it and there are 4 or 5 pages I want to protect with login, so implementing it for each page is untenable. |
Hi there. I was looking for 3.2 release to fix this feature, but as I see it is not there. Do you have any info when can this be implemented? Or is it any workaround? |
Hi, Any updates on this features? |
any updates guys? |
any updates on skipLocationChange? |
+1 |
1 similar comment
+1 |
Anybody know any workarounds? EDIT - not exactly what this feature request is asking for, but for those searching on Google:
|
+1 |
1 similar comment
+1 |
+1 |
5 similar comments
+1 |
+1 |
+1 |
+1 |
+1 |
Would love to see support for this. |
+1 |
any updates regarding this feature request? the use case would be important for us and I don't see a good workaround for this yet |
+1000000000 So excited got the new release of N8 with A12, but not without this features yet! |
+1 |
The options for replaceUrl and skipLocationChange are available in the router's ExtendedNavigationExtras, but they are not being implemented in the PageRouterOutlet. When you try to use either of them
Navigation fails to skip the a page in the stack, and navigates back to the page that the application was on.
These features would be nice for when an application wants to route to a new page while removing part of the router location history.
The text was updated successfully, but these errors were encountered: