OrderBy Filter

Description

Returns an array containing the items from the specified collection, ordered by a comparator function based on the values computed using the expression predicate.

For example, [{id: 'foo'}, {id: 'bar'}] | orderBy:'id' would result in [{id: 'bar'}, {id: 'foo'}].

The collection can be an Array or array-like object (e.g., NodeList, jQuery object, TypedArray, String, etc).

The expression can be a single predicate or a list of predicates, each serving as a tie-breaker for the preceding one. The expression is evaluated against each item and the output is used for comparing with other items.

You can change the sorting order by setting reverse to true. By default, items are sorted in ascending order.

The comparison is done using the comparator function. If none is specified, a default, built-in comparator is used (see below for details - in a nutshell, it compares numbers numerically and strings alphabetically).

Under the Hood

Ordering the specified collection happens in two phases:

  1. All items are passed through the predicate (or predicates), and the returned values are saved along with their type (string, number, etc). For example, an item {label: 'foo'}, passed through a predicate that extracts the value of the label property, would be transformed to:
    {
      value: 'foo',
      type: 'string',
      index: ...
    }
    

Note: null values use ’null’ as their type. 2. The comparator function is used to sort the items, based on the derived values, types, and indices.

If you use a custom comparator, it will be called with pairs of objects of the form {value: …, type: ‘…’, index: …} and is expected to return 0 if the objects are equal (as far as the comparator is concerned), -1 if the 1st one should be ranked higher than the second, or 1 otherwise.

To ensure that the sorting will be deterministic across platforms, if none of the specified predicates can distinguish between two items, orderBy will automatically introduce a dummy predicate that returns the item’s index as value. (If you are using a custom comparator, make sure it can handle this predicate as well.)

If a custom comparator still can’t distinguish between two items, then they will be sorted based on their index using the built-in comparator.

Finally, in an attempt to simplify things, if a predicate returns an object as the extracted value for an item, orderBy will try to convert that object to a primitive value before passing it to the comparator. The following rules govern the conversion:

If the object has a valueOf() method that returns a primitive, its return value will be used instead. (If the object has a valueOf() method that returns another object, then the returned object will be used in subsequent steps.) If the object has a custom toString() method (i.e., not the one inherited from Object) that returns a primitive, its return value will be used instead. (If the object has a toString() method that returns another object, then the returned object will be used in subsequent steps.) No conversion; the object itself is used. The Default Comparator The default, built-in comparator should be sufficient for most use cases. In short, it compares numbers numerically, strings alphabetically (and case-insensitively), for objects falls back to using their index in the original collection, sorts values of different types by type, and puts undefined and null values at the end of the sorted list.

More specifically, it follows these steps to determine the relative order of items:

If the compared values are of different types: If one of the values is undefined, consider it “greater than” the other. Else if one of the values is null, consider it “greater than” the other. Else compare the types themselves alphabetically. If both values are of type string, compare them alphabetically in a case- and locale-insensitive way. If both values are objects, compare their indices instead. Otherwise, return: 0, if the values are equal (by strict equality comparison, i.e., using ===). -1, if the 1st value is “less than” the 2nd value (compared using the < operator). 1, otherwise. Note: If you notice numbers not being sorted as expected, make sure they are actually being saved as numbers and not strings. Note: For the purpose of sorting, null and undefined are considered “greater than” any other value (with undefined “greater than” null). This effectively means that null and undefined values end up at the end of a list sorted in ascending order. Note: null values use ’null’ as their type to be able to distinguish them from objects.

Parameters collection {Array|ArrayLike}: The collection (array or array-like object) to sort.

expression {(Function|string|Array.<Function|string>)=}: A predicate (or list of predicates) to be used by the comparator to determine the order of elements.

Can be one of:

Function: A getter function. This function will be called with each item as an argument and the return value will be used for sorting. string: An AngularTS expression. This expression will be evaluated against each item and the result will be used for sorting. For example, use ’label’ to sort by a property called label or ’label.substring(0, 3)’ to sort by the first 3 characters of the label property. (The result of a constant expression is interpreted as a property name to be used for comparison. For example, use ‘“special name”’ (note the extra pair of quotes) to sort by a property called special name.) An expression can be optionally prefixed with + or - to control the sorting direction, ascending or descending. For example, ‘+label’ or ‘-label’. If no property is provided, (e.g., ‘+’ or ‘-’), the collection element itself is used in comparisons. Array: An array of function and/or string predicates. If a predicate cannot determine the relative order of two items, the next predicate is used as a tie-breaker. Note: If the predicate is missing or empty, then it defaults to ‘+’.

reverse {boolean=}: If true, reverse the sorting order.

comparator {(Function)=}: The comparator function used to determine the relative order of value pairs. If omitted, the built-in comparator will be used.

Returns {Array}: The sorted array.