0:a02e94c5b96b
Anton Shestakov <engored@ya.ru>, Sun, 16 Dec 2012 19:00:48 +0900
Made public.

next change 33:9dfe8668e7fe

static/js/backbone.shard.js

Permissions: -rw-r--r--

Other formats: Feeds:
/*
* backbone.shard.js.
*
* (c) 2012 Anton Shestakov.
*
* This extension to Backbone may be freely distributed
* under the MIT license:
* http://opensource.org/licenses/mit-license.php
*/
Backbone.Shard = function(options) {
this._collection = options.collection;
this._filter = options.filter;
this.models = this._collection.filter(this._filter);
this._collection
.on('all', function(event, model) {
if (event == 'change') {
if (this._filter(model) && _(this.models).contains(model)) {
this.trigger.apply(this, arguments);
}
if (this._filter(model) && !_(this.models).contains(model)) {
this.models.push(model);
this.trigger('add', model);
}
if (!this._filter(model) && _(this.models).contains(model)) {
this.models = _.without(this.models, model);
this.trigger('remove', model);
}
} else if (/^change:/.test(event) && this._filter(model) && _(this.models).contains(model)) {
this.trigger.apply(this, arguments);
}
}, this)
.on('add', function(model) {
if (this._filter(model) && !_(this.models).contains(model)) {
this.models.push(model);
this.trigger('add', model);
}
}, this)
.on('remove', function(model) {
if (this._filter(model) && _(this.models).contains(model)) {
this.models = _.without(this.models, model);
this.trigger('remove', model);
}
}, this)
.on('reset', function() {
this.models = this._collection.filter(this._filter);
this.trigger('reset');
}, this);
this.initialize.apply(this, arguments);
};
_.extend(Backbone.Shard.prototype, Backbone.Events, {
initialize: function() {},
pluck: function(attr) {
return _.map(this.models, function(model) { return model.get(attr); });
},
chain: function () {
return _(this.models).chain();
}
});
// Underscore methods that we want to implement on the Shard.
var methods = ['forEach', 'each', 'map', 'reduce', 'reduceRight', 'find',
'detect', 'filter', 'select', 'reject', 'every', 'all', 'some', 'any',
'include', 'contains', 'invoke', 'max', 'min', 'sortBy', 'sortedIndex',
'toArray', 'size', 'first', 'initial', 'rest', 'last', 'without', 'indexOf',
'shuffle', 'lastIndexOf', 'isEmpty', 'groupBy'];
// Mix in each Underscore method as a proxy to `Shard#models`.
_.each(methods, function(method) {
Backbone.Shard.prototype[method] = function() {
return _[method].apply(_, [this.models].concat(_.toArray(arguments)));
};
});