Say I have these Backbone.js Model:

var Truck = Backbone.Model.extend({});

var truck1 = new Truck();
var truck2 = new Truck();

truck1.set("brand", "Ford");
truck2.set("brand", "Toyota");
truck3.set("brand", "Honda");
truck4.set("brand", "Ford");

Then, let's say we have a Backbone.js Collection:

var TruckList = Backbone.Collection.extend({
  model: Truck,
  comparator: function(truck) {
     return truck.get("brand");
  };

});

I'm a car collector, so time to add each car to my collection:

Trucks = new TruckList();
Trucks.add(truck1);
Trucks.add(truck2);
Trucks.add(truck3);
Trucks.add(truck4);

Just focusing on the brand attribute, truck4 is a duplicate of truck1. I can't have duplicates in my Collection. I need my collection to have unique values.

My question is, How do I remove duplicate items from my Backbone.js Collection?

Should I use Underscore.js for this? If so, can someone please provide a working/runnable example of how to do this.

Assume the following:

1.Collection is not sorted

  1. Removal must be done on brand attribute value

  2. Ajax call to populate each instance of a Truck. This means when adding to a collection, you don't have access to the Truck properties.

link|improve this question
You probably don't want duplicates to get into the collection in the first place. If that's the case, maybe TruckList needs its own add function which guards this condition. – Bill Eisenhauer Jun 20 '11 at 20:26
Note that you can't assign attributes like that. You should use the set method: truck1.set('brand', 'Ford'). Then you can later do: Trucks.pluck('brand') == ['Ford', 'Toyota', ...] – Samuel Clay Jun 20 '11 at 21:04
@Bill Sounds like a good idea. Anyone have a working example? – Keven Ruggish Jun 20 '11 at 21:31
@Samuel Thanks for the clarification - typo on my part. Nice use of _.pluck – Keven Ruggish Jun 20 '11 at 21:32
Still looking for an example that works! – Keven Ruggish Jun 20 '11 at 23:08
feedback

5 Answers

I would override the add method in your TruckList collection and use underscore to detect duplicates there and reject the duplicate. Something like.

TruckList.prototype.add = function(truck) {
    //Using isDupe routine from @Bill Eisenhauer's answer
    var isDupe = this.any(function(_truck) { 
        return _truck.get('brand') === truck.get('brand');
    });
    if (isDupe) {
        //Up to you either return false or throw an exception or silently ignore
        return false;
    }
    Backbone.Collection.prototype.add.call(this, truck);
}
link|improve this answer
Can anyone actually get this work? I like it, but truck.brand returns undefined. Weird part is truck has the json attribute. Also the pluck call doesn't return anything either. – Keven Ruggish Jun 20 '11 at 23:07
Oops, sorry in my own subclasses of Backbone.Model I do some metaprogramming so I don't need to use the get method. I updated it to do truck.get('brand') which should work with normal Backbone.Model. I'll need to tweak the _.pluck to use .get as well... – Peter Lyons Jun 21 '11 at 1:58
I see where "truck" is passed - that is the model being added. But where is "_truck" coming from? Also, does this code assume the list is sorted? Cause it's not yet. – Keven Ruggish Jun 22 '11 at 14:34
_truck is just to avoid a name collision. It is used in the anonymous function we pass to this.any when we're matching on brand. It's just a local variable that only spans 2 lines of scope. – Peter Lyons Jun 22 '11 at 20:58
1  
you missed the closing braces of any function – XMen Jul 23 '11 at 9:38
show 3 more comments
feedback

Try this. It uses the any underscore method to detect the potential duplicate and then dumps out if so. Of course, you might want to dress this up with an exception to be more robust:

TruckList.prototype.add = function(newTruck) {
  var isDupe = this.any(function(truck) { 
    return truck.get('brand') === newTruck.get('brand');
  }
  if (isDupe) return;
  Backbone.Collection.prototype.add.call(this, truck);
}

As an aside, I would probably write a function on Truck to do the dupe checking so that the collection doesn't know too much about this condition.

link|improve this answer
feedback

Underscore.js, a pre-req for backbone.js, provides a function for this: http://documentcloud.github.com/underscore/#uniq

Example:

_.uniq([1,1,1,1,1,2,3,4,5]); // returns [1,2,3,4,5]
link|improve this answer
_.uniq is an Array utility. I need to operate on a Collection. Is there a way to apply _.uniq to a Collection? – Keven Ruggish Jun 20 '11 at 21:30
I am not a backbone.js user, just an underscore.js user. I am not sure. – Teddy Jun 21 '11 at 12:58
You could actually use toArray from a collection do unique and then reset the collection. :P – Trevor Jan 31 at 18:37
feedback

I'm doing a FileUpload thing with the same issue, and here's how I did it (coffeescript):

File = Backbone.Model.extend
    validate: (args) ->
        result
        if !@collection.isUniqueFile(args)
            result = 'File already in list'
        result

Files = Backbone.Collection.extend
    model: File

    isUniqueFile: (file) ->
        found
        for f in @models
            if f.get('name') is file.name
                found = f
                break
        if found
            false
        else
            true

... and that's it. The collection object is automatically referenced in File, and Validation is automatically called when an action is invoked on the collection which in this case is Add.

link|improve this answer
feedback

Try this...

var TruckList = Backbone.Collection.extend({
  model: Truck,
  comparator: function(truck) {
     return truck.get("brand");
  },
  wherePartialUnique: function(attrs) {
    // this method is really only tolerant of string values.  you can't do partial
    // matches on arrays, objects, etc.  use collection.where for that
      if (_.isEmpty(attrs)) return [];
      var seen = [];
      return this.filter(function(model) {
        for (var key in attrs) {
          // sometimes keys are empty. that's bad, so let's not include it in a unique result set
          // you might want empty keys though, so comment the next line out if you do.
          if ( _.isEmpty(model.get(key).trim()) ) return false;
          // on to the filtering...
          if (model.get(key).toLowerCase().indexOf(attrs[key].toLowerCase()) >= 0) {
            if (seen.indexOf( model.get(key) ) >= 0 ) return false;
            seen.push(model.get(key));
            return true;
          } else {
            return false;
          }
        }
        return true;
      });
    }
});

A few things to remember:

  1. this is based on the backbone.collection.where method and unlike that method, it will attempt partial matches on model attributes within a collection. If you don't want that, you'll need to modify it to only match exactly. Just mimic what you see in the original method.

  2. it should be able to accept multiple attribute matches, so if you have model attributes of foo and bar, you should be able to do collection.wherePartialUnique({foo:"you",bar:"dude"}). I have not tested that though. :) I have only ever done one key/value pair.

  3. i also strip out empty model attributes from consideration. I don't care about them, but you might.

  4. this method doesn't require a collection of unique model properties that the comparator depends. It's more like a sql distinct query, but I'm not an sql guy so don't shoot me if that's a bad example :)

  5. your collection is sorted by way of the comparator function, so one of your assumptions about it not being sorted is incorrect.

I believe this also addresses all of your goals:

  1. Collection is not sorted
  2. Removal must be done on brand attribute value
  3. Ajax call to populate each instance of a Truck. This means when adding to a collection, you don't have access to the Truck properties.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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