-
Notifications
You must be signed in to change notification settings - Fork 27.4k
improve interpolation of params in ngRoute #8200
Conversation
Thanks for the PR! Please check the items below to help us merge this faster. See the contributing docs for more information.
If you need to make changes to your pull request, you can update the commit with Thanks again for your help! |
How to reproduce points to a commit, is this intentional? |
I'm not sure what you're asking here. Are you talking about the commit reference I gave? What did you expect in place of it? Basically, you just check out that commit as usual |
@avdv I think what he's saying is, please provide some actual steps to reproduce this (IE, code to run). Posting a revision to test is helpful, but we need more than that. edit: I see there are instructions, but a minimal code example on plnkr or heroku would be better |
Oh, that's what you mean @avdv .As a reproduction I understand a runnable example, such as in a plnkr.co or maybe even a git repo to check out. |
Got it. If you want that I could probably do it tomorrow... |
Here you go: http://plnkr.co/edit/gO7kz2UICfErehcFPhOu?p=preview
|
I have this bug too.
|
Interesting --- this might be a regression, because this is documented as a feature which should work. Surprised tests aren't broken because of it. (I haven't looked too closely at the repro yet, it could be that something is just wrong there) but so far this doesn't look unreasonable. |
@@ -813,6 +813,32 @@ describe('$route', function() { | |||
}); | |||
|
|||
|
|||
it('should interpolate optional and long route vars in the redirected path from original path', function() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what the heck does "long route vars" mean here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what the heck does "long route vars" mean here?
I mean those vars with an asterisk at the end. How do you call them? Greedy route vars?
May be it's a bit confusing that the documentation calls those things "named groups", but throughout the code the term "route params" as well as "route vars" is used?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test case for that feature calls it a "catch-all" parameter, but the documentation refers to it as "eagerly matches all characters" (whereas without the '*', we match until the next slash).
So, if you could address those comments, that would be helpful -- if someone else says this looks good (with comments addressed) I think we can merge it |
Have you tried this patch and did it fix it this problem for you? |
@avdv yes, it`s fix this problem. I`m not sure about this pull request. the new spec looks like about path resolution. I just fix this bug ,to avoid route tread the "?" after ":option" as a "/.*/" https://gist.github.com/loddit/2e97ea12a32f12d7427f |
$rootScope.$digest(); | ||
|
||
expect($location.path()).toEqual('/bar/id1/23'); | ||
expect($location.search()).toEqual({extraId: 'gah'}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should test that $route.current.params
equal what we expect, not just $location.search()
(for each of these cases).
I do expect this change to be a little bit slower than the current implementation, so it would be good to consider alternative ways of implementing it. But the test case is good stuff, just needs to be broken into smaller pieces. |
@caitp Thanks for your review. I think I (hopefully) addressed all of your complains. \edit: seems the Travis build is a bit flaky at times. Is there some way to trigger a re-run? |
Make sure that :name? and :name* vars are properly interpolated in redirectUrl.
When the redirect path contains optional or special parameters the interpolation function misses to remove them. This is also the case for the auto-generated redirection where a slash is appended or removed to a route. Change the way parameters are interpolated in a string. Remove undefined optional named groups and properly prepend a slash in case the named group was starting with one. Related to angular#5746.
9fcdb38
to
0336d57
Compare
I did just rebase to upstream master which triggered a new Travis CI build. Any comments on the current patch set? |
02dc2aa
to
fd2d6c0
Compare
cad9560
to
f294244
Compare
This bug also causes problems when using recently added Getting Will it be merged to 1.3.0 ? |
Problem already fixed in angular/angular.js#8200 , but still doesn't merged to upstream. This commit fixes bug in bower package for deployment-only. Hope fix mentioned above will be merged soon, and this repo will be purged.
Problem already fixed in angular/angular.js#8200 , but still doesn't merged to upstream. This commit fixes bug in bower package for deployment-only. Hope fix mentioned above will be merged soon, and this repo will be purged.
abdaab7
to
30996f8
Compare
e8dc429
to
e83fab9
Compare
4dd5a20
to
998c61c
Compare
Easier approach that's probably not working (#5746 (comment)) as-is here #5746 |
This was fixed by 891acf4 back in November |
Request Type: bug
How to reproduce: 6f77610
Component(s): ngRoute
Impact: medium
Complexity: small
This issue is related to:
Detailed Description:
In line with #5746, this changes how parameters are interpolated in redirectTo strings.
First, I added a test case (it's my first in Javascript ever, so bear with me) which exhibits the failure:
Alas, the fix from Pasvaz in #5746 lead to an error too:
Note the doubled slash, which is kind of awkward. So, a slash should be removed when the optional parameter is missing.
Now string interpolation is done similar to the generation of the regexp in route, using a replace function.
All good, tests pass.
Other Comments:
I don't know what your preference is, should I reorder the commits in order to keep the tests passing for every single commit?