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

fix(select): assign result of track exp to element value #9726

Closed
wants to merge 2 commits into from

Conversation

juangabreil
Copy link
Contributor

Fixes a regression where the option/select values would always be set to
the key or index of a value within the corresponding collection. Prior to
some 1.3.0 refactoring, the result of the track expression would be bound
to the value, but this behavior was not documented or explicitly tested. A
cache was added in order to improve performance getting the associated
value for a given track expression.

This commit adds one explicit test for this behavior, and changes several
other trackBy tests to reflect the desired behavior as well.

Fixes #9592 and it's related to PR #9718 (@jeffbcross)

Fixes a regression where the option/select values would always be set to
the key or index of a value within the corresponding collection. Prior to
some 1.3.0 refactoring, the result of the track expression would be bound
to the value, but this behavior was not documented or explicitly tested. A
cache was added in order to improve performance getting the associated
value for a given track expression.

This commit adds one explicit test for this behavior, and changes several
other trackBy tests to reflect the desired behavior as well.
@mary-poppins
Copy link

CLA verified

@@ -726,6 +726,19 @@ describe('select', function() {
});


it('should use the tracked expression as option value', function () {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2 space indentation plz --- this is angular not chromium :p

@caitp
Copy link
Contributor

caitp commented Oct 22, 2014

part of this fix looks like a revert of test case changes added in 1.3 --- it would be better to document those as reverts --- but otherwise I think it's okay with the indentation nit fixed

@juangabreil
Copy link
Contributor Author

My fault, I've fixed the indentation.
Where should I document that revert?

@caitp
Copy link
Contributor

caitp commented Oct 22, 2014

I just meant that doing an actual git revert would probably be better --- but don't worry about it

@caitp
Copy link
Contributor

caitp commented Oct 22, 2014

@jeffbcross can I assign this to you since you've been working on this lately? it basically looks good to me

@jeffbcross
Copy link
Contributor

LGTM. I added a test from my PR and squashed commits. Restarted flaky Travis job to make sure we're green before merging.

@caitp
Copy link
Contributor

caitp commented Oct 29, 2014

oh yeah --- @hzoo added some extra jscs strictness a while ago, so this is now breaking the style rules a tiny bit.

@@ -556,9 +561,14 @@ var selectDirective = ['$compile', '$parse', function($compile, $parse) {

// doing displayFn(scope, locals) || '' overwrites zero values
label = isDefined(label) ? label : '';
optionId = trackFn ? trackFn(scope, locals) : (keyName ? keys[index] : index);
if (trackFn){
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

space after (trackFn) before {

@caitp
Copy link
Contributor

caitp commented Oct 29, 2014

(these are nits, can be fixed up during landing if it looks good)

@jeffbcross
Copy link
Contributor

Thanks @caitp I'll run Travis again with those fixes

@jeffbcross
Copy link
Contributor

Landed! 4b4098b

Thanks for the PR @juangabreil (and nice to meet you last week)

@jeffbcross jeffbcross closed this Oct 29, 2014
@juangabreil
Copy link
Contributor Author

My pleasure!

Nice to meet you too @jeffbcross!

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

Successfully merging this pull request may close these issues.

track By no longer working
4 participants