forked from jmorrell/backbone-filtered-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
228 lines (182 loc) · 5.8 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
var _ = require('underscore');
var Backbone = require('backbone');
var proxyCollection = require('backbone-collection-proxy');
var createFilter = require('./src/create-filter.js');
// Beware of `this`
// All of the following functions are meant to be called in the context
// of the FilteredCollection object, but are not public functions.
function invalidateCache() {
this._filterResultCache = {};
}
function invalidateCacheForFilter(filterName) {
for (var cid in this._filterResultCache) {
if (this._filterResultCache.hasOwnProperty(cid)) {
delete this._filterResultCache[cid][filterName];
}
}
}
function addFilter(filterName, filterObj) {
// If we've already had a filter of this name, we need to invalidate
// any and all of the cached results
if (this._filters[filterName]) {
invalidateCacheForFilter.call(this, filterName);
}
this._filters[filterName] = filterObj;
this.trigger('filtered:add', filterName);
}
function removeFilter(filterName) {
delete this._filters[filterName];
invalidateCacheForFilter.call(this, filterName);
this.trigger('filtered:remove', filterName);
}
function execFilterOnModel(model) {
if (!this._filterResultCache[model.cid]) {
this._filterResultCache[model.cid] = {};
}
var cache = this._filterResultCache[model.cid];
for (var filterName in this._filters) {
if (this._filters.hasOwnProperty(filterName)) {
// if we haven't already calculated this, calculate it and cache
if (!cache.hasOwnProperty(filterName)) {
cache[filterName] = this._filters[filterName].fn(model);
}
if (!cache[filterName]) {
return false;
}
}
}
return true;
}
function execFilter() {
var filtered = [];
// Filter the collection
if (this._superset) {
filtered = this._superset.filter(_.bind(execFilterOnModel, this));
}
this._collection.reset(filtered);
this.length = this._collection.length;
}
function onAddChange(model) {
// reset the cached results
this._filterResultCache[model.cid] = {};
if (execFilterOnModel.call(this, model)) {
if (!this._collection.get(model.cid)) {
var index = this.superset().indexOf(model);
// Find the index at which to insert the model in the
// filtered collection by finding the index of the
// previous non-filtered model in the filtered collection
var filteredIndex = null;
for (var i = index - 1; i >= 0; i -= 1) {
if (this.contains(this.superset().at(i))) {
filteredIndex = this.indexOf(this.superset().at(i)) + 1;
break;
}
}
filteredIndex = filteredIndex || 0;
this._collection.add(model, { at: filteredIndex });
}
} else {
if (this._collection.get(model.cid)) {
this._collection.remove(model);
}
}
this.length = this._collection.length;
}
// This fires on 'change:[attribute]' events. We only want to
// remove this model if it fails the test, but not add it if
// it does. If we remove it, it will prevent the 'change'
// events from being forwarded, and if we add it, it will cause
// an unneccesary 'change' event to be forwarded without the
// 'change:[attribute]' that goes along with it.
function onModelAttributeChange(model) {
// reset the cached results
this._filterResultCache[model.cid] = {};
if (!execFilterOnModel.call(this, model)) {
if (this._collection.get(model.cid)) {
this._collection.remove(model);
}
}
}
function onAll(eventName, model, value) {
if (eventName.slice(0, 7) === "change:") {
onModelAttributeChange.call(this, arguments[1]);
}
}
function onModelRemove(model) {
if (this.contains(model)) {
this._collection.remove(model);
}
this.length = this._collection.length;
}
function Filtered(superset) {
// Save a reference to the original collection
this._superset = superset;
// The idea is to keep an internal backbone collection with the filtered
// set, and expose limited functionality.
this._collection = new Backbone.Collection(superset.toArray());
proxyCollection(this._collection, this);
// Set up the filter data structures
this.resetFilters();
this.listenTo(this._superset, 'reset sort', execFilter);
this.listenTo(this._superset, 'add change', onAddChange);
this.listenTo(this._superset, 'remove', onModelRemove);
this.listenTo(this._superset, 'all', onAll);
}
var methods = {
defaultFilterName: '__default',
filterBy: function(filterName, filter) {
// Allow the user to skip the filter name if they're only using one filter
if (!filter) {
filter = filterName;
filterName = this.defaultFilterName;
}
addFilter.call(this, filterName, createFilter(filter));
execFilter.call(this);
return this;
},
removeFilter: function(filterName) {
if (!filterName) {
filterName = this.defaultFilterName;
}
removeFilter.call(this, filterName);
execFilter.call(this);
return this;
},
resetFilters: function() {
this._filters = {};
invalidateCache.call(this);
this.trigger('filtered:reset');
execFilter.call(this);
return this;
},
superset: function() {
return this._superset;
},
refilter: function(arg) {
if (typeof arg === "object" && arg.cid) {
// is backbone model, refilter that one
onAddChange.call(this, arg);
} else {
// refilter everything
invalidateCache.call(this);
execFilter.call(this);
}
return this;
},
getFilters: function() {
return _.keys(this._filters);
},
hasFilter: function(name) {
return _.contains(this.getFilters(), name);
},
destroy: function() {
this.stopListening();
this._collection.reset([]);
this._superset = this._collection;
this.length = 0;
this.trigger('filtered:destroy');
}
};
// Build up the prototype
_.extend(Filtered.prototype, methods, Backbone.Events);
module.exports = Filtered;