-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathangular-collection.js
489 lines (393 loc) · 13.8 KB
/
angular-collection.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
(function(angular, _){
'use strict';
// Create local references to array methods we'll want to use later.
var array = [];
var push = array.push;
var slice = array.slice;
var splice = array.splice;
var Model, Collection;
angular.module('ngCollection', [])
.directive('ngCollectionRepeat', ['$parse', '$animate', function($parse, $animate) {
return {
restrict: 'A',
transclude: 'element',
multiElement: true,
priority: 1000,
terminal: true,
$$tlb: true,
link: function($scope, $element, $attr, ctrl, $transclude){
var expression = $attr.ngCollectionRepeat;
var match = expression.match(/^\s*([\s\S]+?)\s+in\s+([\s\S]+?)?\s*$/);
var modelAlias, collectionName;
modelAlias = match[1]; // Expose model in child scope as this
collectionName = match[2]; // Name of the collection in the scope
// Store elements from previous run so we can destroy them
var previousElements = [];
$scope.$watchCollection(collectionName, function ngRepeatAction(collection){
var previousNode = $element[0];
// Dump existing DOM nodes
if (previousElements.length) {
_.each(previousElements, function(element){
$animate.leave(element, function(){
element = null;
});
});
// Clear array
previousElements = [];
}
if (collection) {
for (var index = 0, length = collection.length; index < length; index++) {
var model = collection.models[index];
var childScope = $scope.$new();
// Add model to the scope
childScope[modelAlias] = model.attributes;
// Add a reference to the model so you can use it in your controllers
childScope.$this = model;
// Add logic helpers to scope
childScope.$index = index;
childScope.$first = (index === 0);
childScope.$last = (index === (collection.length - 1));
childScope.$middle = !(childScope.$first || childScope.$last);
// jshint bitwise: false
childScope.$odd = !(childScope.$even = (index&1) === 0);
// jshint bitwise: true
// Build the DOM element
$transclude(childScope, function(clone) {
$animate.enter(clone, null, angular.element(previousNode));
previousNode = clone;
previousElements.push(clone);
});
}
}
});
}
};
}])
.factory('$model', ['$http', '$q', function($http, $q){
Model = function(url, model, options){
this.url = url || '/';
options = options || {};
var that = this;
// This allows a consumer to query a model without an id
// or, in some cases, specify an id to query like if a model is
// being instantiated without a collection
var generateURL = function(id) {
id = id || that.attributes.id || '';
return that.url + (id ? '/' + id : '');
};
// Store the model
this.attributes = model || {};
// Expose resource promise and resolved
this.$resolved = true;
// Immediately resolve a promise to use as this.$promise
var defer = $q.defer();
defer.resolve(this.attributes);
this.$promise = defer.promise;
this.get = function(id, config){
config = _.merge({}, options.httpConfig, _.get(config, 'httpConfig'));
var get = $http.get(generateURL(id), config);
var that = this;
// Update exposed promise and resolution indication
this.$resolved = false;
this.$promise = get;
get.then(function(response){
that.update(response.data);
});
get.finally(function(){
that.$resolved = true;
});
return this;
};
this.save = function(config){
config = _.merge({}, options.httpConfig, _.get(config, 'httpConfig'));
var save = (this.attributes.id) ? $http.put(generateURL(), this.attributes, config) : $http.post(generateURL(), this.attributes, config);
var that = this;
// Update exposed promise and resolution indication
this.$resolved = false;
this.$promise = save;
save.then(function(response){
that.update(response.data);
});
save.finally(function(){
that.$resolved = true;
});
return this;
};
// NOTE - it's possible we'll want to save the original attributes object
// but I can't think of good reason at the moment and this works fine
this.update = function(attributes) {
var keys = _.keys(attributes);
// Remove any keys not present in the new data
for (var key in this.attributes) {
if (keys.indexOf(key) < 0) {
delete this.attributes[key];
}
}
// Merge the new data into the model
_.extend(this.attributes, attributes);
return this;
};
this.remove = this.del = function(config){
config = _.merge({}, options.httpConfig, _.get(config, 'httpConfig'));
var remove;
var that = this;
if (this.attributes.id) {
remove = $http.delete(generateURL(), config);
} else {
var defer = $q.defer();
remove = defer.promise;
defer.resolve();
}
// Update exposed promise and resolution indication
this.$resolved = false;
this.$promise = remove;
remove.then(function(){
// Remove model from collection if it's in one
if (that.$collection) {
that.$collection.remove(that);
}
});
remove.finally(function(){
that.$resolved = true;
});
return this;
};
this.toJSON = function(){
return this.attributes;
};
};
// Return the constructor
return function(url, model, options){
return new Model(url, model, options);
};
}])
.factory('$collection', ['$http', '$q', '$model', function($http, $q, $model){
// Collection constructor
Collection = function(url, collection, options){
this.url = url || '/';
options = options || {};
var defaultParams = options.params || {};
// Store models for manipulation and display
this.models = [];
// Store length so we can look it up faster/more easily
this.length = 0;
// Expose resource promise and resolved
this.$resolved = true;
// Immediately resolve a promise to use as this.$promise
var defer = $q.defer();
defer.resolve(this.models);
this.$promise = defer.promise;
var updateLength = function(){
this.length = this.models.length;
};
// determines how old this data is since it returned from the server
this.getAge = function() {
return this.$resolved && this.resolvedAt ? new Date() - this.resolvedAt : -1;
};
// sets the resolvedAt time to determine the age of the data
var setAge = function(promise) {
var that = this;
this.requestedAt = +new Date();
promise.then(function () {
that.resolvedAt = +new Date();
});
return this;
};
// Expose method for querying collection of models
this.query = function(params, config){
params = $.extend({}, defaultParams, params);
var that = this;
var query = $http.get(this.url, _.merge({}, options.httpConfig, _.get(config, 'httpConfig'), { params: params }));
// Update data age info
setAge.call(this, query);
// Update exposed promise and resolution indication
this.$resolved = false;
this.$promise = query;
// Update models
query.then(function(response){
// Clear out models
that.models.length = 0;
that.length = 0;
var models = response.data;
// Loop through models
_.each(models, function(model){
// Push new model
that.push(model);
});
});
query.finally(function(){
that.$resolved = true;
});
return this;
};
this.sync = function(config) {
config = _.merge({}, options, config);
// If the consumer set a minimum age, let's just return
// if the data isn't old enough
if (config.minAge && config.minAge > this.getAge()) {
return this;
}
var that = this;
var sync = $http.get(this.url, _.merge({}, config.httpConfig, { params: defaultParams }));
// Update data age info
setAge.call(this, sync);
// Update exposed promise and resolution indication
this.$resolved = false;
this.$promise = sync;
// Update models
sync.then(function(response){
var ids = [];
_.each(response.data, function(attributes){
var id = attributes.id;
var model = that.find({id: id});
if (id) ids.push(id);
if (model) {
model.update(attributes);
} else {
that.add(attributes);
}
});
// Remove any models that aren't present in the lastest data
_.each(_.clone(that.models), function(model){
try {
if (ids.indexOf(model.attributes.id) < 0) {
that.remove(model);
}
} catch(e) {
throw 'Issue with model: ' + JSON.stringify(model);
}
});
});
sync.finally(function(){
that.$resolved = true;
});
return this;
};
this.create = function(attributes, config) {
var model = $model(this.url, attributes, _.merge({}, options, config));
// Add this collection reference to it
model.$collection = this;
return model;
};
this.push = this.add = function(model){
if (model instanceof Model) {
// Add the model if it doesn't exist
if (this.models.indexOf(model) < 0) {
// Add collection reference
model.$collection = this;
// Push it to the models
this.models.push(model);
}
} else if (model) {
// Instantiate new model
model = this.create(model);
// Push it to the models
this.models.push(model);
}
// Update length property
updateLength.apply(this);
return model;
};
// Remove a specific model from the collection
this.remove = function(model){
this.models.splice(this.models.indexOf(model), 1);
updateLength.apply(this);
return this;
};
// Save all models
this.save = function(config){
config = _.merge({}, options, config);
var that = this;
var defer = $q.defer();
var counter = 0;
// Update promise and resolved indicator
this.$resolved = false;
this.$promise = defer.promise;
if (this.length) {
// Save each model individually
this.each(function(model){
model.save(config).then(function(){
// Increment counter
counter++;
// If all saves have finished, resolve the promise
if (counter === that.length) {
defer.resolve(that.models);
that.$resolved = true;
}
});
});
} else {
// Resolve immediately if there are no models
defer.resolve();
}
defer.promise.finally(function(){
that.$resolved = true;
});
return this;
};
this.find = this.findWhere = function(attrs) {
if (_.isFunction(attrs)) {
return _.find(this.models, attrs);
}
return _.find(this.models, function(model){
for (var key in attrs) {
if (attrs[key] !== model.attributes[key]) return false;
}
return true;
});
};
this.pluck = function(property){
var values = [];
this.each(function(model){
if (model.attributes[property]){
values.push(model.attributes[property]);
}
});
return values;
};
this.at = function(index){
return this.models[index];
};
this.toJSON = function(){
var models = [];
this.each(function(model){
models.push(model.toJSON());
});
return models;
};
// If a collection has been supplied, let's use that
if (collection && collection.length) {
// Loop through models
_.each(collection, function(model){
// Push new model
this.push(model);
}, this);
}
};
// Stolen straight from Backbone
var methods = ['each', 'filter', 'first', 'forEach', 'indexOf', 'last', 'map', 'some'];
_.each(methods, function(method) {
Collection.prototype[method] = function() {
// Slice returns arguments as an array
var args = slice.call(arguments);
// Add the models as the first value in args
args.unshift(this.models);
// Return the _ method with appropriate context and arguments
return _[method].apply(_, args);
};
});
// Return the constructor
return function(url, collection, options){
var defaultParams;
// Add backwards compatibility for
// previous arguments: (url, defaultParams, collection)
if (_.isPlainObject(collection)) {
defaultParams = collection;
collection = options;
options = arguments[3] || {};
options.params = defaultParams;
}
return new Collection(url, collection, options);
};
}]);
})(window.angular, window._);