collection.js
23.3 KB
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
'use strict';
var _lodash = require('lodash');
var _lodash2 = _interopRequireDefault(_lodash);
var _inherits = require('inherits');
var _inherits2 = _interopRequireDefault(_inherits);
var _events = require('./events');
var _events2 = _interopRequireDefault(_events);
var _promise = require('./promise');
var _promise2 = _interopRequireDefault(_promise);
var _model = require('./model');
var _model2 = _interopRequireDefault(_model);
var _extend = require('../extend');
var _extend2 = _interopRequireDefault(_extend);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
// All components that need to be referenced in this scope.
// Base Collection
// ---------------
// All exernal dependencies required in this scope.
var _Array$prototype = Array.prototype,
splice = _Array$prototype.splice,
slice = _Array$prototype.slice;
/**
* @class CollectionBase
* @extends Events
* @inheritdoc
*/
function CollectionBase(models, options) {
if (options) _lodash2.default.extend(this, _lodash2.default.pick(options, collectionProps));
this._reset();
this.initialize.apply(this, arguments);
if (!_lodash2.default.isFunction(this.model)) {
throw new Error('A valid `model` constructor must be defined for all collections.');
}
if (models) this.reset(models, _lodash2.default.extend({ silent: true }, options));
}
/**
* @method CollectionBase#on
* @example
*
* const ships = new bookshelf.Collection;
* ships.on('fetched', function(collection, response) {
* // Do something after the data has been fetched from the database
* })
*
* @see Events#on
*/
/**
* @method CollectionBase#off
* @example
*
* ships.off('fetched') // Remove the 'fetched' event listener
*
* @see Events#off
*/
/**
* @method CollectionBase#trigger
* @example
*
* ships.trigger('fetched')
*
* @see Events#trigger
*/
(0, _inherits2.default)(CollectionBase, _events2.default);
// List of attributes attached directly from the constructor's options object.
//
// RE: 'relatedData'
// It's okay for two `Collection`s to share a `Relation` instance.
// `relatedData` does not mutate itself after declaration. This is only
// here because `clone` needs to duplicate this property. It should not
// be documented as a valid argument for consumer code.
//
// RE: 'attach', 'detach', 'updatePivot', 'withPivot', '_processPivot', '_processPlainPivot', '_processModelPivot'
// It's okay to whitelist also given method references to be copied when cloning
// a collection. These methods are present only when `relatedData` is present and
// its `type` is 'belongsToMany'. So it is safe to put them in the list and use them
// without any additional verification.
// These should not be documented as a valid arguments for consumer code.
var collectionProps = ['model', 'comparator', 'relatedData',
// `belongsToMany` pivotal collection properties
'attach', 'detach', 'updatePivot', 'withPivot', '_processPivot', '_processPlainPivot', '_processModelPivot'];
// Copied over from Backbone.
var setOptions = { add: true, remove: true, merge: true };
var addOptions = { add: true, remove: false };
/**
* @method CollectionBase#initialize
* @description
* Custom initialization function.
* @see Collection
*/
CollectionBase.prototype.initialize = _lodash.noop;
/**
* @method
* @private
* @description
* The `tableName` on the associated Model, used in relation building.
* @returns {string} The {@link Model#tableName tableName} of the associated model.
*/
CollectionBase.prototype.tableName = function () {
return _lodash2.default.result(this.model.prototype, 'tableName');
};
/**
* @method
* @private
* @description
* The `idAttribute` on the associated Model, used in relation building.
* @returns {string} The {@link Model#idAttribute idAttribute} of the associated model.
*/
CollectionBase.prototype.idAttribute = function () {
return this.model.prototype.idAttribute;
};
CollectionBase.prototype.toString = function () {
return '[Object Collection]';
};
/**
* @method
* @description
*
* Return a raw array of the collection's {@link Model#attributes
* attributes} for JSON stringification. If the {@link Model models} have any
* relations defined, this will also call {@link Model#toJSON toJSON} on
* each of the related objects, and include them on the object unless
* `{shallow: true}` is passed as an option.
*
* `serialize` is called internally by {@link Collection#toJSON toJSON}.
* Override this function if you want to customize its output.
*
* @param {Object=} options
* @param {bool} [options.shallow=false] Exclude relations.
* @param {bool} [options.omitPivot=false] Exclude pivot values.
* @param {bool} [options.omitNew=false] Exclude models that return true for isNew.
* @returns {Object} Serialized model as a plain object.
*/
CollectionBase.prototype.serialize = function (options) {
return (0, _lodash.invokeMap)(this.models, 'toJSON', options).filter((0, _lodash.negate)(_lodash.isNull));
};
/**
* @method
* @description
*
* Called automatically by {@link
* https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#toJSON()_behavior
* `JSON.stringify`}. To customize serialization, override {@link
* Collection#serialize serialize}.
*
* @param {options} Options passed to {@link Collection#serialize}.
*/
CollectionBase.prototype.toJSON = function (options) {
return this.serialize(options);
};
/**
* @method
* @description
*
* The set method performs a "smart" update of the collection with the passed
* model or list of models. If a model in the list isn't yet in the
* collection it will be added; if the model is already in the collection
* its attributes will be merged; and if the collection contains any models
* that aren't present in the list, they'll be removed. If you'd like to
* customize the behavior, you can disable it with options: `{add: false}`,
* `{remove: false}`, or `{merge: false}`.
*
* @example
*
* var vanHalen = new bookshelf.Collection([eddie, alex, stone, roth]);
* vanHalen.set([eddie, alex, stone, hagar]);
*
* @param {Object[]|Model[]|Object|Model} models One or more models or raw
* attribute objects.
* @param {Object=} options See description.
* @returns {Collection} Self, this method is chainable.
*/
CollectionBase.prototype.set = function (models, options) {
options = _lodash2.default.defaults({}, options, setOptions);
if (!_lodash2.default.isArray(models)) models = models ? [models] : [];
if (options.parse) models = this.parse(models, options);
var i = void 0,
l = void 0,
id = void 0,
model = void 0,
attrs = void 0;
var at = options.at;
var targetModel = this.model;
var toAdd = [];
var toRemove = [];
var modelMap = {};
var _options = options,
add = _options.add,
merge = _options.merge,
remove = _options.remove;
var order = add && remove ? [] : false;
// Turn bare objects into model references, and prevent invalid models
// from being added.
for (i = 0, l = models.length; i < l; i++) {
attrs = models[i];
if (attrs instanceof _model2.default) {
id = model = attrs;
} else {
id = attrs[targetModel.prototype.idAttribute];
}
// If a duplicate is found, prevent it from being added and
// optionally merge it into the existing model.
var existing = this.get(id);
if (existing) {
if (remove) {
modelMap[existing.cid] = true;
}
if (merge) {
attrs = attrs === model ? model.attributes : attrs;
if (options.parse) attrs = existing.parse(attrs, options);
existing.set(attrs, options);
}
// This is a new model, push it to the `toAdd` list.
} else if (add) {
if (!(model = this._prepareModel(attrs, options))) continue;
toAdd.push(model);
this._byId[model.cid] = model;
if (model.id != null) this._byId[model.id] = model;
}
if (order) order.push(existing || model);
}
// Remove nonexistent models if appropriate.
if (remove) {
for (i = 0, l = this.length; i < l; ++i) {
if (!modelMap[(model = this.models[i]).cid]) toRemove.push(model);
}
if (toRemove.length) this.remove(toRemove, options);
}
// See if sorting is needed, update `length` and splice in new models.
if (toAdd.length || order && order.length) {
this.length += toAdd.length;
if (at != null) {
splice.apply(this.models, [at, 0].concat(toAdd));
} else {
if (order) {
this.models.length = 0;
} else {
order = toAdd;
}
for (i = 0, l = order.length; i < l; ++i) {
this.models.push(order[i]);
}
}
}
if (options.silent) return this;
// Trigger `add` events.
for (i = 0, l = toAdd.length; i < l; i++) {
(model = toAdd[i]).trigger('add', model, this, options);
}
return this;
};
/**
* @method
* @private
* @description
* Prepare a model or hash of attributes to be added to this collection.
*/
CollectionBase.prototype._prepareModel = function (attrs, options) {
if (attrs instanceof _model2.default) return attrs;
return new this.model(attrs, options);
};
/**
* @method
* @private
* @description
* Run "Promise.map" over the models
*/
CollectionBase.prototype.mapThen = function (iterator, context) {
return _promise2.default.bind(context).thenReturn(this.models).map(iterator);
};
/**
* @method
* @description
* Shortcut for calling `Promise.all` around a {@link Collection#invoke}, this
* will delegate to the collection's `invoke` method, resolving the promise with
* an array of responses all async (and sync) behavior has settled. Useful for
* bulk saving or deleting models:
*
* collection.invokeThen('save', null, options).then(function() {
* // ... all models in the collection have been saved
* });
*
* collection.invokeThen('destroy', options).then(function() {
* // ... all models in the collection have been destroyed
* });
*
* @param {string} method The {@link Model model} method to invoke.
* @param {...mixed} arguments Arguments to `method`.
* @returns {Promise<mixed[]>}
* Promise resolving to array of results from invocation.
*/
CollectionBase.prototype.invokeThen = function () {
return _promise2.default.all(this.invokeMap.apply(this, arguments));
};
/**
* @method
* @description
* Run "reduce" over the models in the collection.
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce | MDN `Array.prototype.reduce` reference.}
* @param {Function} iterator
* @param {mixed} initialValue
* @param {Object} context Bound to `this` in the `iterator` callback.
* @returns {Promise<mixed[]>}
* Promise resolving to array of results from invocation.
*
*/
CollectionBase.prototype.reduceThen = function (iterator, initialValue, context) {
return _promise2.default.bind(context).thenReturn(this.models).reduce(iterator, initialValue).bind();
};
CollectionBase.prototype.fetch = function () {
return _promise2.default.rejected('The fetch method has not been implemented');
};
/**
* @method
* @description
*
* Add a {@link Model model} (or an array of models) to the collection, You may
* also pass raw attributes objects, and have them be vivified as instances of
* the model. Pass `{at: index}` to splice the model into the collection at the
* specified `index`. If you're adding models to the collection that are already
* in the collection, they'll be ignored, unless you pass `{merge: true}`, in
* which case their {@link Model#attributes attributes} will be merged into the
* corresponding models.
*
* *Note that adding the same model (a model with the same id) to a collection
* more than once is a no-op.*
*
* @example
*
* const ships = new bookshelf.Collection;
*
* ships.add([
* {name: "Flying Dutchman"},
* {name: "Black Pearl"}
* ]);
*
* @param {Object[]|Model[]|Object|Model} models One or more models or raw
* attribute objects.
* @param {Object=} options See description.
* @returns {Collection} Self, this method is chainable.
*/
CollectionBase.prototype.add = function (models, options) {
return this.set(models, _lodash2.default.extend({ merge: false }, options, addOptions));
};
/**
* @method
* @description
*
* Remove a {@link Model model} (or an array of models) from the collection,
* but does not remove the model from the database, use the model's {@link
* Model#destroy destroy} method for this.
*
* @param {Model|Model[]} models The model, or models, to be removed.
* @param {Object} options
* @returns {Model|Model[]} The same value passed as `models` argument.
*/
CollectionBase.prototype.remove = function (models, options) {
var singular = !_lodash2.default.isArray(models);
models = singular ? [models] : _lodash2.default.clone(models);
options = options || {};
for (var i = 0; i < models.length; i++) {
var model = models[i] = this.get(models[i]);
if (!model) continue;
delete this._byId[model.id];
delete this._byId[model.cid];
var index = this.indexOf(model);
this.models.splice(index, 1);
this.length = this.length - 1;
if (!options.silent) {
options.index = index;
model.trigger('remove', model, this, options);
}
}
return singular ? models[0] : models;
};
/**
* @method
* @description
*
* Adding and removing models one at a time is all well and good, but sometimes
* you have so many models to change that you'd rather just update the
* collection in bulk. Use `reset` to replace a collection with a new list of
* models (or attribute hashes). Calling `collection.reset()` without passing
* any models as arguments will empty the entire collection.
*
* @param {Object[]|Model[]|Object|Model} models One or more models or raw
* attribute objects.
* @param {Object} options See {@link Collection#add add}.
* @returns {Model[]} Array of models.
*/
CollectionBase.prototype.reset = function (models, options) {
options = options || {};
options.previousModels = this.models;
this._reset();
models = this.add(models, _lodash2.default.extend({ silent: true }, options));
if (!options.silent) this.trigger('reset', this, options);
return models;
};
/**
* @method
* @description
* Add a model to the end of the collection.
* @param {Object[]|Model[]|Object|Model} model One or more models or raw
* attribute objects.
* @returns {Collection} Self, this method is chainable.
*/
CollectionBase.prototype.push = function (model, options) {
return this.add(model, _lodash2.default.extend({ at: this.length }, options));
};
/**
* @method
* @description
* Remove a model from the end of the collection.
*/
CollectionBase.prototype.pop = function (options) {
var model = this.at(this.length - 1);
this.remove(model, options);
return model;
};
/**
* @method
* @description
* Add a model to the beginning of the collection.
*/
CollectionBase.prototype.unshift = function (model, options) {
return this.add(model, _lodash2.default.extend({ at: 0 }, options));
};
/**
* @method
* @description
* Remove a model from the beginning of the collection.
*/
CollectionBase.prototype.shift = function (options) {
var model = this.at(0);
this.remove(model, options);
return model;
};
/**
* @method
* @description
* Slice out a sub-array of models from the collection.
*/
CollectionBase.prototype.slice = function () {
return slice.apply(this.models, arguments);
};
/**
* @method
* @description
*
* Get a model from a collection, specified by an {@link Model#id id}, a {@link
* Model#cid cid}, or by passing in a {@link Model model}.
*
* @example
*
* const book = library.get(110);
*
* @returns {Model} The model, or `undefined` if it is not in the collection.
*/
CollectionBase.prototype.get = function (obj) {
if (obj == null) return void 0;
return this._byId[obj.id] || this._byId[obj.cid] || this._byId[obj];
};
/**
* @method
* @description
* Get a model from a collection, specified by index. Useful if your collection
* is sorted, and if your collection isn't sorted, `at` will still retrieve
* models in insertion order.
*/
CollectionBase.prototype.at = function (index) {
return this.models[index];
};
/**
* @method
* @description
* Return models with matching attributes. Useful for simple cases of `filter`.
* @returns {Model[]} Array of matching models.
*/
CollectionBase.prototype.where = function (attrs, first) {
if (_lodash2.default.isEmpty(attrs)) return first ? void 0 : [];
return this[first ? 'find' : 'filter'](function (model) {
for (var key in attrs) {
if (attrs[key] !== model.get(key)) return false;
}
return true;
});
};
/**
* @method
* @description
* Return the first model with matching attributes. Useful for simple cases of
* `find`.
* @returns {Model} The first matching model.
*/
CollectionBase.prototype.findWhere = function (attrs) {
return this.where(attrs, true);
};
/**
* @method
* @private
* @description
* Force the collection to re-sort itself, based on a comporator defined on the model.
*/
CollectionBase.prototype.sort = function (options) {
if (!this.comparator) throw new Error('Cannot sort a set without a comparator');
options = options || {};
// Run sort based on type of `comparator`.
if (_lodash2.default.isString(this.comparator) || this.comparator.length === 1) {
this.models = this.sortBy(this.comparator, this);
} else {
this.models.sort(_lodash2.default.bind(this.comparator, this));
}
if (!options.silent) this.trigger('sort', this, options);
return this;
};
/**
* @method
* @description
* Pluck an attribute from each model in the collection.
* @returns {mixed[]} An array of attribute values.
*/
CollectionBase.prototype.pluck = function (attr) {
return this.invokeMap('get', attr);
};
/**
* @method
* @description
* The `parse` method is called whenever a collection's data is returned in a
* {@link Collection#fetch fetch} call. The function is passed the raw
* database `response` array, and should return an array to be set on the
* collection. The default implementation is a no-op, simply passing through
* the JSON response.
*
* @param {Object[]} resp Raw database response array.
*/
CollectionBase.prototype.parse = function (resp) {
return resp;
};
/**
* @method
* @description
* Create a new collection with an identical list of models as this one.
*/
CollectionBase.prototype.clone = function () {
return new this.constructor(this.models, _lodash2.default.pick(this, collectionProps));
};
/**
* @method
* @private
* @description
* Reset all internal state. Called when the collection is first initialized or reset.
*/
CollectionBase.prototype._reset = function () {
this.length = 0;
this.models = [];
this._byId = Object.create(null);
};
/**
* @method CollectionBase#forEach
* @see http://lodash.com/docs/#forEach
*/
/**
* @method CollectionBase#each
* @see http://lodash.com/docs/#each
*/
/**
* @method CollectionBase#map
* @see http://lodash.com/docs/#map
*/
/**
* @method CollectionBase#reduce
* @see http://lodash.com/docs/#reduce
*/
/**
* @method CollectionBase#reduceRight
* @see http://lodash.com/docs/#reduceRight
*/
/**
* @method CollectionBase#find
* @see http://lodash.com/docs/#find
*/
/**
* @method CollectionBase#filter
* @see http://lodash.com/docs/#filter
*/
/**
* @method CollectionBase#reject
* @see http://lodash.com/docs/#reject
*/
/**
* @method CollectionBase#every
* @see http://lodash.com/docs/#every
*/
/**
* @method CollectionBase#some
* @see http://lodash.com/docs/#some
*/
/**
* @method CollectionBase#includes
* @see http://lodash.com/docs/#includes
*/
/**
* @method CollectionBase#invokeMap
* @see http://lodash.com/docs/#invokeMap
*/
/**
* @method CollectionBase#max
* @see http://lodash.com/docs/#max
*/
/**
* @method CollectionBase#maxBy
* @see http://lodash.com/docs/#maxBy
*/
/**
* @method CollectionBase#min
* @see http://lodash.com/docs/#min
*/
/**
* @method CollectionBase#minBy
* @see http://lodash.com/docs/#minBy
*/
/**
* @method CollectionBase#toArray
* @see http://lodash.com/docs/#toArray
*/
/**
* @method CollectionBase#size
* @see http://lodash.com/docs/#size
*/
/**
* @method CollectionBase#first
* @see http://lodash.com/docs/#first
*/
/**
* @method CollectionBase#head
* @see http://lodash.com/docs/#head
*/
/**
* @method CollectionBase#take
* @see http://lodash.com/docs/#take
*/
/**
* @method CollectionBase#initial
* @see http://lodash.com/docs/#initial
*/
/**
* @method CollectionBase#tail
* @see http://lodash.com/docs/#tail
*/
/**
* @method CollectionBase#drop
* @see http://lodash.com/docs/#drop
*/
/**
* @method CollectionBase#last
* @see http://lodash.com/docs/#last
*/
/**
* @method CollectionBase#without
* @see http://lodash.com/docs/#without
*/
/**
* @method CollectionBase#difference
* @see http://lodash.com/docs/#difference
*/
/**
* @method CollectionBase#indexOf
* @see http://lodash.com/docs/#indexOf
*/
/**
* @method CollectionBase#shuffle
* @see http://lodash.com/docs/#shuffle
*/
/**
* @method CollectionBase#lastIndexOf
* @see http://lodash.com/docs/#lastIndexOf
*/
/**
* @method CollectionBase#isEmpty
* @see http://lodash.com/docs/#isEmpty
*/
/**
* @method CollectionBase#chain
* @see http://lodash.com/docs/#chain
*/
// Lodash methods that we want to implement on the Collection.
// 90% of the core usefulness of Backbone Collections is actually implemented
// right here:
var methods = ['forEach', 'each', 'map', 'reduce', 'reduceRight', 'find', 'filter', 'every', 'some', 'includes', 'invokeMap', 'max', 'min', 'maxBy', 'minBy', 'toArray', 'size', 'first', 'head', 'take', 'initial', 'tail', 'drop', 'last', 'without', 'difference', 'indexOf', 'shuffle', 'lastIndexOf', 'isEmpty', 'chain'];
// Mix in each Lodash method as a proxy to `Collection#models`.
_lodash2.default.each(methods, function (method) {
CollectionBase.prototype[method] = function () {
return _lodash2.default[method].apply(_lodash2.default, [this.models].concat(Array.prototype.slice.call(arguments)));
};
});
/**
* @method CollectionBase#groupBy
* @see http://lodash.com/docs/#groupBy
*/
// Underscore methods that we want to implement on the Collection.
/**
* @method CollectionBase#countBy
* @see http://lodash.com/docs/#countBy
*/
// Underscore methods that we want to implement on the Collection.
/**
* @method CollectionBase#sortBy
* @see http://lodash.com/docs/#sortBy
*/
// Lodash methods that take a property name as an argument.
var attributeMethods = ['groupBy', 'countBy', 'sortBy'];
// Use attributes instead of properties.
_lodash2.default.each(attributeMethods, function (method) {
CollectionBase.prototype[method] = function (value, context) {
var iterator = _lodash2.default.isFunction(value) ? value : function (model) {
return model.get(value);
};
return _lodash2.default[method](this.models, _lodash2.default.bind(iterator, context));
};
});
/**
* @method Collection.extend
* @description
*
* To create a {@link Collection} class of your own, extend
* `Bookshelf.Collection`.
*
* @param {Object=} prototypeProperties
* Instance methods and properties to be attached to instances of the new
* class.
* @param {Object=} classProperties
* Class (ie. static) functions and properties to be attached to the
* constructor of the new class.
* @returns {Function} Constructor for new `Collection` subclass.
*/
CollectionBase.extend = _extend2.default;
/*
* NOTE: For some reason `export` is failing in the version of Babel I'm
* currently using. At some stage it should be corrected to:
*
* export default CollectionBase;
*/
module.exports = CollectionBase;