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

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

Closed
wants to merge 1 commit into from

Conversation

juangabreil
Copy link
Contributor

Fixes #9566

@@ -91,6 +91,23 @@ describe('Filter: orderBy', function() {
.toEqualData([{"원": 31000}, {"원": 76000}, {"원": 156000}]);
});

it('should maintain order in an array of objects when no predicate is provided', function(){
Copy link
Contributor

Choose a reason for hiding this comment

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

nit: function() {

@caitp
Copy link
Contributor

caitp commented Oct 22, 2014

LGTM with nits

@caitp caitp added this to the 1.3.x milestone Oct 22, 2014
@caitp caitp self-assigned this Oct 22, 2014
@@ -130,6 +131,12 @@ function orderByFilter($parse){
}
if (predicate === '') {
// Effectively no predicate was passed so we compare identity
if (array.some(angular.isObject)) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

This should just be isObject similar to isArray above...

@caitp caitp removed the cla: maybe label Oct 23, 2014
@caitp
Copy link
Contributor

caitp commented Oct 24, 2014

@juangabreil you there? it needs a rebase and @jbedard / @gkalpak 's nits look right to me --- other than that I think it can land

@caitp
Copy link
Contributor

caitp commented Oct 24, 2014

So get that done and ping me alright? =)

@juangabreil
Copy link
Contributor Author

Hi! Sorry I'm not at home this week and my Internet access is very limited. I've fixed all the nits and made a rebase. It's my first rebase, if there is any problem, please tell me.

# The first commit's message is:
fix(orderBy): Mantain order in array of objects when predicate is not provided.

# This is the 2nd commit message:

style(*): Fix nits.

# This is the 3rd commit message:

fix(*): solve function nit.
@juangabreil
Copy link
Contributor Author

Actually, I did it wrong 😁 I forgot to get latest from master. I made it again, and it seems to be ok. Anyway, if there is something wrong, please tell me.

@Narretz
Copy link
Contributor

Narretz commented Oct 30, 2014

@caitp Does this PR obsolete #9566? It's two quite different approaches, as far as I can tell.

@caitp
Copy link
Contributor

caitp commented Oct 30, 2014

honestly I have no idea. isObject() won't distinguish between {} and [], so it's probably not what we want.

@caitp
Copy link
Contributor

caitp commented Dec 3, 2014

So this is still a bug http://plnkr.co/edit/0tnokZMrgNgDtmnFo8uQ?p=preview --- I think we should land one of these fixes. @Narretz which one do you like better?

@caitp
Copy link
Contributor

caitp commented Dec 3, 2014

I don't really feel like either one is correct, I'll try submitting something

caitp added a commit to caitp/angular.js that referenced this pull request Dec 3, 2014
…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
@caitp caitp closed this in 8bfeddb Dec 3, 2014
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.

6 participants