Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

feat($location/$route): support changing location without side effects/route reloading #14999

Closed
gkalpak opened this issue Aug 7, 2016 · 1 comment

Comments

@gkalpak
Copy link
Member

gkalpak commented Aug 7, 2016

There seem to be several issues that requests/discuss/implement the ability to make changes to the current location (URL/history API), without Angular "reacting" to the change. Below is a list of such issues I gathered from a very quick search that seem (more or less) related:

PRs:

#5860: feat(ngRoute): add method $route.silent(path) for change location path without triggering route controller

Issues:

#1699: Option on $location to allow hash/path change w/o reloading the route
#3789: Directly modifying the URL path & search without any side effects
#7925: Something along the lines of reloadOnPathParams in ngRoute
#11075: Changing the location outside of $location causes infdig and/or resets the original url
#12719: Do not force a reload when navigating out of the app base


I see two main categories/features:

  1. Change the location to something that is either outside of the Angular app (e.g. at a different base) or would map to a different route (assuming client-side routing is used).
  2. Change the location to something that would map to the same route (but with different route params).

While I think it would be possible to support both usecases, I haven't seen any (reasonably common) usecase for (1). Furthermore, if we implemented (1), it would make it too easy for people to unknowingly break their client-side routing/deep-linking. Based on that and the fact that it would further complicate what is one of the most complex services, I am not too keen on adding support for (1) - but can be convinced other wise 😃

In contrary, having the ability to update the route params (and having the change reflect back to the URL, so deep-linking continues to work as expected), but without having to reload the same route, re-compile the same template, re-instantiate the same controller, re-resolve all resolve values etc, sounds pretty reasonable and common.

It is essentially a variation of the reloadOnSearch configuration option, but for path segments. I.e. if the path changes, but the new path maps to the same route (with different route params) and that route is configured to not reload on path change, then we just emit a $routeUpdate event (the same we do for query param/hash changes on routes configured with reloadOnSearch: false) and not load the same route all over.

For routes configured to reload on path changes (probably the default), the behavior will be the same as it is today.

Also note that the Angular 2 router will support a similar feature (although there can't be a 1-to-1 match with ngRoute, since the former is hierarchical.

@gkalpak gkalpak added this to the Backlog milestone Aug 7, 2016
gkalpak added a commit to gkalpak/angular.js that referenced this issue Aug 7, 2016
Enables users to specify that a particular route should not be reloaded after a URL change
(including a change in `$location.path()`), if the new URL maps to the same route.
The default behavior is still to always load the matched route when any part of the URL changes.

Related to angular#1699, angular#5860, angular#14999 (potentially closing the first two).
@petebacondarwin petebacondarwin modified the milestones: Backlog, Backlog2 Oct 17, 2016
gkalpak added a commit to gkalpak/angular.js that referenced this issue Jan 3, 2017
Enables users to specify that a particular route should not be reloaded after a
URL change (including a change in `$location.path()`), if the new URL maps to
the same route.
The default behavior is still to always load the matched route when any part of
the URL changes.

Related to angular#1699, angular#5860, angular#14999 (potentially closing the first two).

Fixes angular#7925
gkalpak added a commit to gkalpak/angular.js that referenced this issue May 23, 2018
Enables users to specify that a particular route should not be reloaded after a
URL change (including a change in `$location.path()`), if the new URL maps to
the same route.
The default behavior is still to always load the matched route when any part of
the URL changes.

Related to angular#1699, angular#5860, angular#14999 (potentially closing the first two).

Fixes angular#7925
gkalpak added a commit to gkalpak/angular.js that referenced this issue May 26, 2018
Enables users to specify that a particular route should not be reloaded after a
URL change (including a change in `$location.path()`), if the new URL maps to
the same route.
The default behavior is still to always load the matched route when any part of
the URL changes.

Related to angular#1699, angular#5860, angular#14999 (potentially closing the first two).

Fixes angular#7925
gkalpak added a commit to gkalpak/angular.js that referenced this issue Jun 7, 2018
Enables users to specify that a particular route should not be reloaded after a
URL change (including a change in `$location.path()`), if the new URL maps to
the same route.
The default behavior is still to always load the matched route when any part of
the URL changes.

Related to angular#1699, angular#5860, angular#14999 (potentially closing the first two).

Fixes angular#7925
gkalpak added a commit that referenced this issue Jun 8, 2018
Enables users to specify that a particular route should not be reloaded after a
URL change (including a change in `$location.path()`), if the new URL maps to
the same route.
The default behavior is still to always load the matched route when any part of
the URL changes.

Related to #1699, #5860, #14999 (potentially closing the first two).

Fixes #7925

Closes #15002
gkalpak added a commit that referenced this issue Jun 8, 2018
Enables users to specify that a particular route should not be reloaded after a
URL change (including a change in `$location.path()`), if the new URL maps to
the same route.
The default behavior is still to always load the matched route when any part of
the URL changes.

Related to #1699, #5860, #14999 (potentially closing the first two).

Fixes #7925

Closes #15002
@gkalpak
Copy link
Member Author

gkalpak commented Jun 8, 2018

Usecase (2) addressed by #15002 and we do not intend to support usecase (1) atm.
Closing.

@gkalpak gkalpak closed this as completed Jun 8, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants