Added back version check on ajaxSuccess

This commit is contained in:
Keivan Beigi
2015-02-07 10:25:38 -08:00
parent 8f8fe99a16
commit 8d03850de7
6 changed files with 42 additions and 25 deletions
+9
View File
@@ -2,6 +2,7 @@ var _ = require('underscore');
var Backbone = require('backbone');
module.exports = function(){
this.prototype.setFilter = function(filter, options){
options = _.extend({reset : true}, options || {});
this.state.filterKey = filter[0];
@@ -15,10 +16,13 @@ module.exports = function(){
}
}
};
this.prototype.setFilterMode = function(mode, options){
return this.setFilter(this.filterModes[mode], options);
};
var originalMakeFullCollection = this.prototype._makeFullCollection;
this.prototype._makeFullCollection = function(models, options){
var self = this;
self.shadowCollection = originalMakeFullCollection.call(this, models, options);
@@ -30,18 +34,23 @@ module.exports = function(){
return model.get(self.state.filterKey) === self.state.filterValue;
}
};
self.shadowCollection.filtered = function(){
return this.filter(filterModel);
};
var filteredModels = self.shadowCollection.filtered();
var fullCollection = originalMakeFullCollection.call(this, filteredModels, options);
fullCollection.resetFiltered = function(options){
Backbone.Collection.prototype.reset.call(this, self.shadowCollection.filtered(), options);
};
fullCollection.reset = function(models, options){
self.shadowCollection.reset(models, options);
self.fullCollection.resetFiltered();
};
return fullCollection;
};
_.extend(this.prototype.state, {