-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Route inherited param fix #9731
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,10 +141,14 @@ function $RouteProvider(){ | |
* Adds a new route definition to the `$route` service. | ||
*/ | ||
this.when = function(path, route) { | ||
//copy original route object to preserve params inherited from proto chain | ||
var routeCopy = angular.copy(route); | ||
if (angular.isUndefined(routeCopy.reloadOnSearch)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
routeCopy.reloadOnSearch = true; | ||
} | ||
routes[path] = angular.extend( | ||
{reloadOnSearch: true}, | ||
route, | ||
path && pathRegExp(path, route) | ||
routeCopy, | ||
path && pathRegExp(path, routeCopy) | ||
); | ||
|
||
// create redirection for trailing slashes | ||
|
@@ -155,7 +159,7 @@ function $RouteProvider(){ | |
|
||
routes[redirectPath] = angular.extend( | ||
{redirectTo: path}, | ||
pathRegExp(redirectPath, route) | ||
pathRegExp(redirectPath, routeCopy) | ||
); | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -294,6 +294,23 @@ describe('$route', function() { | |
$rootScope.$digest(); | ||
expect($route.current).toBeDefined(); | ||
})); | ||
|
||
it("should use route params inherited from prototype chain", function() { | ||
var BaseRoute = function BaseRoute() { | ||
BaseRoute.prototype.templateUrl = 'foo.html'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. doing this in the constructor is weird There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would move this out of the constructor... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't care a whole lot about this in a test, but I suppose we should take this out of the constructor in case anyone ever wants to copy/paste from it |
||
}; | ||
var route = new BaseRoute(); | ||
|
||
module(function($routeProvider) { | ||
$routeProvider.when('/foo', route); | ||
}); | ||
|
||
inject(function($route, $location, $rootScope) { | ||
$location.path('/foo'); | ||
$rootScope.$digest(); | ||
expect($route.current.templateUrl).toBe('foo.html'); | ||
}); | ||
}); | ||
}); | ||
|
||
|
||
|
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.
it's weird that we're doing the copy() and extend() ... the reason for the copy() is just for the
Object.create(Object.getPrototypeOf(route))
--- but it takes some digging to figure out why it works.How about this:
That way it's clearer why it actually works
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.
Then again, that's wrong too... so I guess copy is okay, but we should explain clearly why it works.
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.
Explain in the comment to that code?
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.
yes, add a comment