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
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/ng/filter/orderBy.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ function orderByFilter($parse) {
sortPredicate = isArray(sortPredicate) ? sortPredicate: [sortPredicate];
if (sortPredicate.length === 0) { sortPredicate = ['+']; }
sortPredicate = sortPredicate.map(function(predicate) {
predicate = predicate || '';
var descending = false, get = predicate || identity;
if (isString(predicate)) {
if ((predicate.charAt(0) == '+' || predicate.charAt(0) == '-')) {
Expand All @@ -130,6 +131,12 @@ function orderByFilter($parse) {
}
if (predicate === '') {
// Effectively no predicate was passed so we compare identity
if (array.some(isObject)) {
return function() {
return descending ? 1 : 0;
};
}

return reverseComparator(function(a, b) {
return compare(a, b);
}, descending);
Expand Down
14 changes: 14 additions & 0 deletions test/ng/filter/orderBySpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,20 @@ describe('Filter: orderBy', function() {
.toEqualData([{"원": 31000}, {"원": 76000}, {"원": 156000}]);
});

it('should maintain order in an array of objects when no predicate is provided', function() {
var array = [{a: 1}, {b: 2}, {c: 3}];

expect(orderBy(array)).toEqualData(array);
expect(orderBy(array, '')).toEqualData(array);
expect(orderBy(array, [])).toEqualData(array);
expect(orderBy(array, [''])).toEqualData(array);
expect(orderBy(array, ['+'])).toEqualData(array);
});

it('should inverse order in an array of objects when minus is provided without predicate', function() {
expect(orderBy([{a: 1}, {b: 2}, {c: 3}], ['-'])).toEqualData([{c: 3}, {b: 2}, {a: 1}]);
});

it('should throw if quoted string predicate is quoted incorrectly', function() {
/*jshint -W008 */
expect(function() {
Expand Down