Sha256: 578ea37e1067ead899ef86c4b86a9f8c9a496d2ad2ab93583748853a5e02ef39

Contents?: true

Size: 1.17 KB

Versions: 6

Compression:

Stored size: 1.17 KB

Contents

pageflow.SubsetCollection = Backbone.Collection.extend({
  mixins: [pageflow.orderedCollection],

  constructor: function(options) {
    var adding = false;

    options = options || {};

    this.filter = options.filter || function(item) { return true; };
    this.parent = options.parent;
    this.parentModel = options.parentModel;

    delete options.filter;
    delete options.parent;

    this.model = this.parent.model;
    this.comparator = options.comparator || this.parent.comparator;

    this.listenTo(this.parent, 'add', function(model, collection, options) {
      if (!adding && this.filter(model)) {
        this.add(model, collection, options);
      }
    });

    this.listenTo(this, 'add', function(model, collection, options) {
      adding = true;
      this.parent.add(model);
      adding = false;
    });

    this.listenTo(this, 'sort', function() {
      this.parent.sort();
    });

    Backbone.Collection.prototype.constructor.call(this, this.parent.filter(this.filter), options);
  },

  clear: function() {
    this.parent.remove(this.models);
    this.reset();
  },

  url: function() {
    return this.parentModel.url() + _.result(this.parent, 'url');
  }
});

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pageflow-0.1.0 app/assets/javascripts/pageflow/editor/collections/subset_collection.js
pageflow-0.0.5 app/assets/javascripts/pageflow/editor/collections/subset_collection.js
pageflow-0.0.4 app/assets/javascripts/pageflow/editor/collections/subset_collection.js
pageflow-0.0.3 app/assets/javascripts/pageflow/editor/collections/subset_collection.js
pageflow-0.0.2 app/assets/javascripts/pageflow/editor/collections/subset_collection.js
pageflow-0.0.1 app/assets/javascripts/pageflow/editor/collections/subset_collection.js