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

fix(orderBy): maintain order in array of objects when predicate is not provided #10311

Closed
wants to merge 2 commits into from

Conversation

caitp
Copy link
Contributor

@caitp caitp commented Dec 3, 2014

In ES262, there are two properties which are used to get a primitive value from an Object:

  • valueOf() -- a method which returns a primitive value represented by the Object
  • toString() -- a method which returns a string value representing the Object.

When comparing objects using relational operators, the abstract operation ToPrimitive(O, TypeHint) is used,
which will use these methods to retrieve a value.

This CL emulates the behaviour of ToPrimitive(), and ensures that no ordering occurs if the retrieved value
is identical.

This behaviour was previously used for Date objects, however it can be safely made generic as it applies to
all objects.

Closes #9566
Closes #9747

…t provided

In ES262, there are two properties which are used to get a primitive value from an Object:

- valueOf() -- a method which returns a primitive value represented by the Object
- toString() -- a method which returns a string value representing the Object.

When comparing objects using relational operators, the abstract operation ToPrimitive(O, TypeHint) is used,
which will use these methods to retrieve a value.

This CL emulates the behaviour of ToPrimitive(), and ensures that no ordering occurs if the retrieved value
is identical.

This behaviour was previously used for Date objects, however it can be safely made generic as it applies to
all objects.

Closes angular#9566
Closes angular#9747
@googlebot
Copy link

CLAs look good, thanks!

@caitp
Copy link
Contributor Author

caitp commented Dec 3, 2014

The reason I prefer this to the other PRs is, I don't think we want to implicitly switch to "reverse" sorting mode, that doesn't make any sense --- and we also don't want to special-case objects outside of the comparator function.

The reasons why it results in array reversal has to do with the comparison between ToPrimitive(v1) and ToPrimtive(v2).

So for instance, ToPrimtiive({}) < ToPrimitive({}) === "[object Object]" < "[object Object]" === false.

The algorithm will thus reverse the two items. But really we should be returning 0 here to not reverse them. It also generalizes a behaviour which was already in the code.

@caitp
Copy link
Contributor Author

caitp commented Dec 3, 2014

@lgalfaso / @gkalpak / @petebacondarwin comments? lets land one.

@petebacondarwin
Copy link
Contributor

OK! I like this one. LGTM
@caitp can you add in a detailed comment to the source that explains why you are doing it this way - i.e. summarize what you have said in this PR?

@Narretz
Copy link
Contributor

Narretz commented Dec 16, 2014

Did we backport this fix to 1.2.x? The cause of the bug is in 1.2, too: 45b896a

@caitp
Copy link
Contributor Author

caitp commented Dec 16, 2014

It was not back ported

@petebacondarwin
Copy link
Contributor

I think it is a097aa9 that should be backported if anything.
It does have a minor breaking change.
@Narretz - has there been an issue raised against 1.2 for this problem or are you just being diligent?

@Narretz
Copy link
Contributor

Narretz commented Dec 17, 2014

Yes, there was an issue: #10488

Now closed, because an update to 1.3 fixed the issue.

@petebacondarwin
Copy link
Contributor

My impression is that the issue was not really needing it for 1.2 - since this would create a minor breaking change I would prefer not to backport unless people start requesting it.

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.

4 participants