With Backbone.js I've got a collection set up with a comparator function. It's nicely sorting the models, but I'd like to reverse the order. How can I have the models be sorted in a descending rather than ascending manner?

link|improve this question

78% accept rate
For reverse sorting on Strings (including the created_at fields), see this answer on another question – Eric Hu Oct 18 '11 at 0:12
feedback

4 Answers

up vote 30 down vote accepted

Well, you can return negative values from comparator. If we take, for example, the example from Backbone's site and want to reverse the order, it will look like this:

var Chapter  = Backbone.Model;
var chapters = new Backbone.Collection;

chapters.comparator = function(chapter) {
  return -chapter.get("page"); // Note the minus!
};

chapters.add(new Chapter({page: 9, title: "The End"}));
chapters.add(new Chapter({page: 5, title: "The Middle"}));
chapters.add(new Chapter({page: 1, title: "The Beginning"}));

alert(chapters.pluck('title'));
link|improve this answer
1  
hi5 for using same example code as mine !, and within 15 seconds difference. Like minded i must say. – DhruvPathak Feb 16 '11 at 8:24
Oh, of course, just a minus sign. Thank you both for your quick responses! – Drew Dara-Abrams Feb 16 '11 at 8:27
Be aware this only works if your criteria is a number. – radicand Apr 15 at 15:09
feedback

Backbone.js's collection comparator relies on the Underscore.js method _.sortBy. The way sortBy is implemented ends up "wrapping" up javascript .sort() in a way that makes sorting strings in reverse difficult. Simple negation of the string ends up returning NaN and breaks the sort.

If you need to perform a reverse sort with Strings, such as reverse alphabetical sort, here's a really hackish way of doing it:

comparator: function (Model) {
  var str = Model.get("name");
  str = str.toLowerCase();
  str = str.split("");
  str = _.map(str, function(letter) { 
    return String.fromCharCode(-(letter.charCodeAt(0)));
  });
  return str;
}

It's by no means pretty, but it is a "string negator". If you don't have any qualms with modifying native object types in javascript, you could make you code clearer by extracting the string negator and adding it as a method on String.Prototype. However you probably only want to do this if you know what you are doing, because modifying native object types in javascript can have unforeseen consequences.

link|improve this answer
This is very handy. Thanks Andrew! – Abel Martin Aug 10 '11 at 6:12
No prob. I would just add that you should ask yourself why you are implementing a reverse alphabetical sort and if there is perhaps a more elegant solution from a user experience perspective. – Andrew De Andrade Aug 17 '11 at 21:56
1  
@AndrewDeAndrade On why: I want to sort a collection by the 'created_at' attribute, serving up the newest ones first. This attribute is one of Backbone's default ones, and is stored as String. Your answer comes closest to what I want. Thanks! – Eric Hu Oct 17 '11 at 23:50
feedback

Modify your comparator function to return some reversely proporitional value instead of returning the data that you are currently. Some code from : http://documentcloud.github.com/backbone/#Collection-comparator

Example:

var Chapter  = Backbone.Model;
var chapters = new Backbone.Collection;

/* Method 1: This sorts by page number */
chapters.comparator = function(chapter) {
  return chapter.get("page");
};

/* Method 2: This sorts by page number in reverse */
chapters.comparator = function(chapter) {
  return -chapter.get("page");
};

chapters.add(new Chapter({page: 9, title: "The End"}));
chapters.add(new Chapter({page: 5, title: "The Middle"}));
chapters.add(new Chapter({page: 1, title: "The Beginning"}));
link|improve this answer
feedback

My solution was to reverse results after sort.

To prevent double rendering first sort with silent, then trigger 'reset'.

collections.sort({silent:true})
collections.models = collections.models.reverse();
collections.trigger('reset', collections, {});
link|improve this answer
1  
A better solution is to negate the result of the comparator. – Daniel X Moore Dec 24 '11 at 18:35
2  
Daniel, that isn't always possible, for instance when sorting strings or Dates. – Gavin Schulz Feb 27 at 2:31
Sure it is. For Date you can have the comparator return -Date.getTime(), possibly with some extra hacking if you believe dates in your system will cross the unix epoch. For alphabetical, look at Andrew's answer above. – asparagino May 16 at 16:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.