Skip to content
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

Open
chimon2000 opened this issue Mar 16, 2017 · 21 comments
Open

Feature Request: Support for replaceUrl and skipLocationChange #705

chimon2000 opened this issue Mar 16, 2017 · 21 comments

Comments

@chimon2000
Copy link

chimon2000 commented Mar 16, 2017

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

this.routerExtensions.navigate(["/tab"], { replaceUrl: true }) 
//OR
this.routerExtensions.navigate(["/tab"], { skipLocationChange: true })

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.

@sis0k0 sis0k0 added this to the 3.1 TBD milestone May 5, 2017
@vakrilov vakrilov modified the milestones: 3.2 TBD, 3.1 Jun 8, 2017
@RobertGardner
Copy link

+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:

  • Home page that does not require login
  • Routing for nested page: { path: "foo", component: FooComponent, canActivate: [AuthGuard] }
  • AuthGuard:
  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.

@vakrilov vakrilov removed this from the 3.2 TBD milestone Jul 5, 2017
@MartinMitro
Copy link

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?

@mayureshjadhav
Copy link

Hi, Any updates on this features?

@ptdede
Copy link

ptdede commented Feb 14, 2018

any updates guys?

@bhavincb
Copy link
Contributor

any updates on skipLocationChange?

@anuragd7
Copy link

+1

1 similar comment
@Ross-Jo
Copy link

Ross-Jo commented Jun 18, 2018

+1

@neil-119
Copy link

neil-119 commented Jul 6, 2018

Anybody know any workarounds?

EDIT - not exactly what this feature request is asking for, but for those searching on Google:

import { RouterExtensions } from 'nativescript-angular/router';

...

this.router.navigate(['/somewhere'], { clearHistory: true }); // remove history after navigating

@neillin
Copy link

neillin commented Jul 15, 2018

+1

1 similar comment
@yonatann
Copy link

yonatann commented Dec 3, 2018

+1

@rickwalking
Copy link

+1

5 similar comments
@ErikWitkowski
Copy link

+1

@daweedm
Copy link

daweedm commented Aug 16, 2019

+1

@HazizKhan
Copy link

+1

@sabasanu
Copy link

+1

@mehtmehtsen
Copy link

+1

@MitchTalmadge
Copy link

Would love to see support for this.

@miladfm
Copy link

miladfm commented Dec 28, 2020

+1

@mwagnurr
Copy link

mwagnurr commented Aug 2, 2021

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

@jajatismail
Copy link

+1000000000

So excited got the new release of N8 with A12, but not without this features yet!

@justintoth
Copy link

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests