-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathfilter.js
276 lines (257 loc) · 7.25 KB
/
filter.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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
var util = require('../util');
var Model = require('./Model');
var defaultFns = require('./defaultFns');
Model.INITS.push(function(model) {
model.root._filters = new Filters(model);
model.on('all', filterListener);
function filterListener(segments, eventArgs) {
var pass = eventArgs[eventArgs.length - 1];
var map = model.root._filters.fromMap;
for (var path in map) {
var filter = map[path];
if (pass.$filter === filter) continue;
if (
util.mayImpact(filter.segments, segments) ||
(filter.inputsSegments && util.mayImpactAny(filter.inputsSegments, segments))
) {
filter.update(pass);
}
}
}
});
function parseFilterArguments(model, args) {
var fn = args.pop();
var options;
if (!model.isPath(args[args.length - 1])) {
options = args.pop();
}
var path = model.path(args.shift());
var i = args.length;
while (i--) {
args[i] = model.path(args[i]);
}
return {
path: path,
inputPaths: (args.length) ? args : null,
options: options,
fn: fn
};
}
Model.prototype.filter = function() {
var args = Array.prototype.slice.call(arguments);
var parsed = parseFilterArguments(this, args);
return this.root._filters.add(
parsed.path,
parsed.fn,
null,
parsed.inputPaths,
parsed.options
);
};
Model.prototype.sort = function() {
var args = Array.prototype.slice.call(arguments);
var parsed = parseFilterArguments(this, args);
return this.root._filters.add(
parsed.path,
null,
parsed.fn || 'asc',
parsed.inputPaths,
parsed.options
);
};
Model.prototype.removeAllFilters = function(subpath) {
var segments = this._splitPath(subpath);
this._removeAllFilters(segments);
};
Model.prototype._removeAllFilters = function(segments) {
var filters = this.root._filters.fromMap;
for (var from in filters) {
if (util.contains(segments, filters[from].fromSegments)) {
filters[from].destroy();
}
}
};
function FromMap() {}
function Filters(model) {
this.model = model;
this.fromMap = new FromMap();
}
Filters.prototype.add = function(path, filterFn, sortFn, inputPaths, options) {
return new Filter(this, path, filterFn, sortFn, inputPaths, options);
};
Filters.prototype.toJSON = function() {
var out = [];
for (var from in this.fromMap) {
var filter = this.fromMap[from];
// Don't try to bundle if functions were passed directly instead of by name
if (!filter.bundle) continue;
var args = [from, filter.path, filter.filterName, filter.sortName, filter.inputPaths];
if (filter.options) args.push(filter.options);
out.push(args);
}
return out;
};
function Filter(filters, path, filterFn, sortFn, inputPaths, options) {
this.filters = filters;
this.model = filters.model.pass({$filter: this});
this.path = path;
this.segments = path.split('.');
this.filterName = null;
this.sortName = null;
this.bundle = true;
this.filterFn = null;
this.sortFn = null;
this.inputPaths = inputPaths;
this.inputsSegments = null;
if (inputPaths) {
this.inputsSegments = [];
for (var i = 0; i < this.inputPaths.length; i++) {
var segments = this.inputPaths[i].split('.');
this.inputsSegments.push(segments);
}
}
this.options = options;
this.skip = options && options.skip;
this.limit = options && options.limit;
if (filterFn) this.filter(filterFn);
if (sortFn) this.sort(sortFn);
this.idsSegments = null;
this.from = null;
this.fromSegments = null;
}
Filter.prototype.filter = function(fn) {
if (typeof fn === 'function') {
this.filterFn = fn;
this.bundle = false;
return this;
} else if (typeof fn === 'string') {
this.filterName = fn;
this.filterFn = this.model.root._namedFns[fn] || defaultFns[fn];
if (!this.filterFn) {
throw new TypeError('Filter function not found: ' + fn);
}
}
return this;
};
Filter.prototype.sort = function(fn) {
if (!fn) fn = 'asc';
if (typeof fn === 'function') {
this.sortFn = fn;
this.bundle = false;
return this;
} else if (typeof fn === 'string') {
this.sortName = fn;
this.sortFn = this.model.root._namedFns[fn] || defaultFns[fn];
if (!this.sortFn) {
throw new TypeError('Sort function not found: ' + fn);
}
}
return this;
};
Filter.prototype._slice = function(results) {
if (this.skip == null && this.limit == null) return results;
var skip;
if (this.skip instanceof Model) {
skip = parseInt(this.skip.get());
} else if (typeof this.skip === 'function') {
skip = this.skip();
} else {
skip = this.skip;
}
var begin = skip || 0;
// A limit of zero is equivalent to setting no limit
var end;
if (this.limit) {
var limit;
if (this.limit instanceof Model) {
limit = parseInt(this.limit.get());
} else if (typeof this.limit === 'function') {
limit = this.limit();
} else {
limit = this.limit;
}
end = begin + limit;
}
return results.slice(begin, end);
};
Filter.prototype.getInputs = function() {
if (!this.inputsSegments) return;
var inputs = [];
for (var i = 0, len = this.inputsSegments.length; i < len; i++) {
var input = this.model._get(this.inputsSegments[i]);
inputs.push(input);
}
return inputs;
};
Filter.prototype.callFilter = function(items, key, inputs) {
var item = items[key];
return (inputs) ?
this.filterFn.apply(this.model, [item, key, items].concat(inputs)) :
this.filterFn.call(this.model, item, key, items);
};
Filter.prototype.ids = function() {
var items = this.model._get(this.segments);
var ids = [];
if (!items) return ids;
if (Array.isArray(items)) {
throw new Error('model.filter is not currently supported on arrays');
}
if (this.filterFn) {
var inputs = this.getInputs();
for (var key in items) {
if (items.hasOwnProperty(key) && this.callFilter(items, key, inputs)) {
ids.push(key);
}
}
} else {
ids = Object.keys(items);
}
var sortFn = this.sortFn;
if (sortFn) {
ids.sort(function(a, b) {
return sortFn(items[a], items[b]);
});
}
return this._slice(ids);
};
Filter.prototype.get = function() {
var items = this.model._get(this.segments);
var results = [];
if (Array.isArray(items)) {
throw new Error('model.filter is not currently supported on arrays');
}
if (this.filterFn) {
var inputs = this.getInputs();
for (var key in items) {
if (items.hasOwnProperty(key) && this.callFilter(items, key, inputs)) {
results.push(items[key]);
}
}
} else {
for (var key in items) {
if (items.hasOwnProperty(key)) {
results.push(items[key]);
}
}
}
if (this.sortFn) results.sort(this.sortFn);
return this._slice(results);
};
Filter.prototype.update = function(pass) {
var ids = this.ids();
this.model.pass(pass, true)._setArrayDiff(this.idsSegments, ids);
};
Filter.prototype.ref = function(from) {
from = this.model.path(from);
this.from = from;
this.fromSegments = from.split('.');
this.filters.fromMap[from] = this;
this.idsSegments = ['$filters', from.replace(/\./g, '|')];
this.update();
return this.model.refList(from, this.path, this.idsSegments.join('.'));
};
Filter.prototype.destroy = function() {
delete this.filters.fromMap[this.from];
this.model._removeRef(this.idsSegments);
this.model._del(this.idsSegments);
};