By ARCANEDEV©
A collection/array helper inspired from Laravel's Illuminate\Support\Collection
that allows you to handle arrays like a champion.
Feel free to check out the releases, license, and contribution guidelines.
You can install the package via the npm
command:
npm install laravel-collection --save
With yarn
:
yarn add laravel-collection
The all
method returns the underlying array represented by the collection:
new Collection([1, 2, 3]).all();
// [1, 2, 3]
Alias for the avg
method.
The avg
method returns the average value of a given key:
let average = new Collection([{'foo': 10}, {'foo': 10}, {'foo': 20}, {'foo': 40}]).avg('foo');
// 20
let average = new Collection([1, 1, 2, 4]).avg();
// 2
The chunk
method breaks the collection into multiple, smaller collections of a given size:
let collection = new Collection([1, 2, 3, 4, 5, 6, 7]);
let chunks = collection.chunk(4);
chunks.toArray();
// [[1, 2, 3, 4], [5, 6, 7]]
The collapse
method collapses a collection of arrays into a single, flat collection:
let collection = new Collection([[1, 2, 3], [4, 5, 6], [7, 8, 9]]);
let collapsed = collection.collapse();
collapsed.all();
// [1, 2, 3, 4, 5, 6, 7, 8, 9]
The combine
method combines the keys of the collection with the values of another array or collection:
let collection = new Collection(['name', 'age']);
let combined = collection.combine(['George', 29]);
combined.all();
// ['name': 'George', 'age': 29]
The concat
method concat the two arrays/collection into a single collection:
let collection = new Collection([1, 2, 3]);
let concatenated = collection.concat(['a', 'b', 'c']);
concatenated.all();
// [1, 2, 3, 'a', 'b', 'c']
The contains
method determines whether the collection contains a given item:
let collection = new Collection({'name': 'Desk', 'price': 100});
collection.contains('Desk');
// true
collection.contains('New York');
// false
You may also pass a key / value pair to the contains
method, which will determine if the given pair exists in the collection:
let collection = new Collection([
{'product': 'Desk', 'price': 200},
{'product': 'Chair', 'price': 100}
]);
collection.contains('product', 'Bookcase');
// false
Coming soon…
The count
method returns the total number of items in the collection:
let collection = new Collection([1, 2, 3, 4]);
collection.count();
// 4
The diff
method compares the collection against another collection or a plain array based on its values. This method will return the values in the original collection that are not present in the given collection:
let collection = new Collection([1, 2, 3, 4, 5]);
let diff = collection.diff([2, 4, 6, 8]);
diff.all();
// [1, 3, 5]
The diffKeys
method compares the collection against another collection or a plain array based on its keys. This method will return the key / value pairs in the original collection that are not present in the given collection:
let collection = new Collection({
'one': 10,
'two': 20,
'three': 30,
'four': 40,
'five': 50
});
let diff = collection.diffKeys({
'two': 2,
'four': 4,
'six': 6,
'eight': 8
});
diff.all();
// {'one': 10, 'three': 30, 'five': 50}
The each
method iterates over the items in the collection and passes each item to a callback:
let collection = new Collection({'one': 1, 'two': 2, 'three': 3}).each(function (item, key) {
//
});
If you would like to stop iterating through the items, you may return false
from your callback:
let collection = new Collection({'one': 1, 'two': 2, 'three': 3}).each(function (item, key) {
if (item > 2) {
return false;
}
});
The every
method may be used to verify that all elements of a collection pass a given truth test:
let result = new Collection([1, 2, 3, 4]).every(function (value, key) {
return value > 2;
});
// false
The except
method returns all items in the collection except for those with the specified keys:
let collection = new Collection({'product_id': 1, 'price': 100, 'discount': false});
let filtered = collection.except(['price', 'discount']);
filtered.all();
// {product_id: 1}
For the inverse of except
, see the only
method.
The filter
method filters the collection using the given callback, keeping only those items that pass a given truth test:
let collection = new Collection([1, 2, 3, 4]);
let filtered = collection.filter(function (value, key) {
return value > 2;
});
filtered.all();
// [3, 4]
If no callback is supplied, all entries of the collection that are equivalent to false
will be removed:
let collection = new Collection([1, 2, 3, null, false, '', 0, []]);
collection.filter().all();
// [1, 2, 3]
For the inverse of filter
, see the reject
method.
The first
method returns the first element in the collection that passes a given truth test:
new Collection([1, 2, 3, 4]).first(function (value, key) {
return value > 2;
});
// 3
You may also call the first
method with no arguments to get the first element in the collection. If the collection is empty, null
is returned:
new Collection([1, 2, 3, 4]).first();
// 1
The flatMap
method iterates through the collection and passes each value to the given callback. The callback is free to modify the item and return it, thus forming a new collection of modified items. Then, the array is flattened by a level:
let collection = new Collection([
{'name': 'Sally'},
{'school': 'Arkansas'},
{'age': 28}
]);
let flattened = collection.flatMap((values) => {
let object = Object.assign({}, values);
Object.keys(object).map((k) => {
let value = object[k];
if (typeof value === 'string')
object[k] = value.toUpperCase();
});
return object;
});
flattened.all();
// {'name': 'SALLY', 'school': 'ARKANSAS', 'age': 28}
The flatten
method flattens a multi-dimensional collection into a single dimension:
let collection = new Collection({'name': 'taylor', 'languages': ['php', 'javascript']});
let flattened = collection.flatten();
flattened.all();
// ['taylor', 'php', 'javascript'];
You may optionally pass the function a "depth" argument:
let collection = new Collection({
'Apple': [
{'name': 'iPhone 6S', 'brand': 'Apple'},
],
'Samsung': [
{'name': 'Galaxy S7', 'brand': 'Samsung'}
],
});
let products = collection.flatten(1);
console.log(products.values().all());
/*
[
{ name: 'iPhone 6S', brand: 'Apple' },
{ name: 'Galaxy S7', brand: 'Samsung' }
]
*/
In this example, calling flatten
without providing the depth would have also flattened the nested arrays, resulting in ['iPhone 6S', 'Apple', 'Galaxy S7', 'Samsung']
. Providing a depth allows you to restrict the levels of nested arrays that will be flattened.
The flip
method swaps the collection's keys with their corresponding values:
let collection = new Collection({'name': 'taylor', 'framework': 'laravel'});
let flipped = collection.flip();
flipped.all();
// {'taylor': 'name', 'laravel': 'framework'}
The forget
method removes an item from the collection by its key:
let collection = new Collection({
'name': 'taylor', 'framework': 'laravel'
});
collection.forget('name');
collection.all();
// { 'framework': 'laravel' }
Unlike most other collection methods,
forget
does not return a new modified collection; it modifies the collection it is called on.
The forPage
method returns a new collection containing the items that would be present on a given page number. The method accepts the page number as its first argument and the number of items to show per page as its second argument:
let collection = new Collection([1, 2, 3, 4, 5, 6, 7, 8, 9]);
let chunk = collection.forPage(2, 3);
chunk.all();
// [4, 5, 6]
The get
method returns the item at a given key. If the key does not exist, null
is returned:
let collection = new Collection({
'name': 'taylor', 'framework': 'laravel'
});
let value = collection.get('name');
// taylor
You may optionally pass a default value as the second argument:
let collection = new Collection({
'name': 'taylor', 'framework': 'laravel'
});
let value = collection.get('foo', 'default-value');
// default-value
You may even pass a callback as the default value. The result of the callback will be returned if the specified key does not exist:
let collection = new Collection({
'name': 'taylor', 'framework': 'laravel'
});
let value = collection.get('email', function() {
return 'default-value';
});
// default-value
The groupBy
method groups the collection's items by a given key:
let collection = new Collection([
{'account_id': 'account-x10', 'product': 'Chair'},
{'account_id': 'account-x10', 'product': 'Bookcase'},
{'account_id': 'account-x11', 'product': 'Desk'},
]);
let grouped = collection.groupBy('account_id');
grouped.all();
/*
{
'account-x10': [
{ account_id: 'account-x10', product: 'Chair' },
{ account_id: 'account-x10', product: 'Bookcase' }
],
'account-x11': [
{ account_id: 'account-x11', product: 'Desk' }
]
}
*/
In addition to passing a string key
, you may also pass a callback. The callback should return the value you wish to key the group by:
let grouped = collection.groupBy(function (item, key) {
return item['account_id'].substr(item['account_id'].length - 3);
});
grouped.all();
/*
{
x10: [
{ account_id: 'account-x10', product: 'Chair' },
{ account_id: 'account-x10', product: 'Bookcase' }
],
x11: [
{ account_id: 'account-x11', product: 'Desk' }
]
}
*/
The has
method determines if a given key exists in the collection:
let collection = new Collection({
'account_id': 1, 'product': 'Desk'
});
collection.has('product');
// true
The implode
method joins the items in a collection. Its arguments depend on the type of items in the collection. If the collection contains arrays or objects, you should pass the key of the attributes you wish to join, and the "glue" string you wish to place between the values:
let collection = new Collection([
{'account_id': 1, 'product': 'Desk'},
{'account_id': 2, 'product': 'Chair'},
]);
collection.implode('product', ', ');
// Desk, Chair
If the collection contains simple strings or numeric values, simply pass the "glue" as the only argument to the method:
new Collection([1, 2, 3, 4, 5]).implode('-');
// '1-2-3-4-5'
The intersect
method removes any values from the original collection that are not present in the given array or collection. The resulting collection will preserve the original collection's keys:
let collection = new Collection(['Desk', 'Sofa', 'Chair']);
let intersect = collection.intersect(['Desk', 'Chair', 'Bookcase']);
intersect.all();
// [ 'Desk', 'Chair' ]
The isEmpty
method returns true
if the collection is empty; otherwise, false
is returned:
new Collection([]).isEmpty();
// true
The isNotEmpty
method returns true
if the collection is not empty; otherwise, false
is returned:
new Collection([]).isNotEmpty();
// false
The keyBy
method keys the collection by the given key. If multiple items have the same key, only the last one will appear in the new collection:
let collection = new Collection([
{'product_id': 'prod-100', 'name': 'desk'},
{'product_id': 'prod-200', 'name': 'chair'},
]);
let keyed = collection.keyBy('product_id');
keyed.all();
/*
{
'prod-100': { product_id: 'prod-100', name: 'desk' },
'prod-200': { product_id: 'prod-200', name: 'chair' }
}
*/
You may also pass a callback to the method. The callback should return the value to key the collection by:
let keyed = collection.keyBy(function (item) {
return item['product_id'].toUpperCase();
});
keyed.all();
/*
{
'PROD-100': { product_id: 'prod-100', name: 'desk' },
'PROD-200': { product_id: 'prod-200', name: 'chair' }
}
*/
The keys
method returns all of the collection's keys:
let collection = new Collection({
'prod-100': {'product_id': 'prod-100', 'name': 'Desk'},
'prod-200': {'product_id': 'prod-200', 'name': 'Chair'},
});
let keys = collection.keys();
keys.all();
// [ 'prod-100', 'prod-200' ]
The last
method returns the last element in the collection that passes a given truth test:
new Collection([1, 2, 3, 4]).last(function (value, key) {
return value < 3;
})
// 2
You may also call the last
method with no arguments to get the last element in the collection. If the collection is empty, null
is returned:
new Collection([1, 2, 3, 4]).last()
// 4
The macro
method allows you to extend the Collection
class with your own custom functions:
Collection.macro('uppercase', function () {
return this.map((item) => item.toUpperCase())
});
let collection = new Collection(['a', 'b', 'c']);
collection.uppercase().all();
// [ 'A', 'B', 'C' ]
The make
method allows you to initiate a Collection
object without the new
keyword:
let collection = Collection.make([1, 2, 3, 4, 5]);
collection.all();
// [ 1, 2, 3, 4, 5 ]
The map
method iterates through the collection and passes each value to the given callback. The callback is free to modify the item and return it, thus forming a new collection of modified items:
let collection = new Collection([1, 2, 3, 4, 5]);
let multiplied = collection.map(function (item, key) {
return item * 2;
});
multiplied.all();
// [2, 4, 6, 8, 10]
Like most other collection methods,
map
returns a new collection instance; it does not modify the collection it is called on. If you want to transform the original collection, use thetransform
method.
The mapWithKeys
method iterates through the collection and passes each value to the given callback. The callback should return an associative array containing a single key / value pair:
let collection = new Collection([
{
'name': 'John',
'department': 'Sales',
'email': '[email protected]'
},{
'name': 'Jane',
'department': 'Marketing',
'email': '[email protected]'
}
]);
let keyed = collection.mapWithKeys(function (item) {
return [item['email'], item['name']];
});
keyed.all();
/*
{
'[email protected]': 'John',
'[email protected]': 'Jane'
}
*/
The max
method returns the maximum value of a given key:
let max = new Collection([{'foo': 10}, {'foo': 20}]).max('foo');
// 20
let max = new Collection([1, 2, 3, 4, 5]).max();
// 5
The median
method returns the median value of a given key:
let collection = new Collection([{'foo': 10}, {'foo': 10}, {'foo': 20}, {'foo': 40}]);
collection.median('foo');
// 15
let collection = new Collection([1, 1, 2, 4]);
collection.median();
// 1.5
The merge
method merges the given array or collection with the original collection. If a string key in the given items matches a string key in the original collection, the given items's value will overwrite the value in the original collection:
let collection = new Collection({'product_id': 1, 'price': 100});
let merged = collection.merge({'price': 200, 'discount': false});
merged.all()
// { 'product_id': 1, 'price': 200, 'discount': false }
If the given items's keys are numeric, the values will be appended to the end of the collection:
let collection = new Collection(['Desk', 'Chair']);
let merged = collection.merge(['Bookcase', 'Door']);
console.log(merged.all());
// [ 'Desk', 'Chair', 'Bookcase', 'Door' ]
The min
method returns the minimum value of a given key:
let collection = new Collection([{'foo': 10}, {'foo': 20}]);
collection.min('foo');
// 10
let collection = new Collection([1, 2, 3, 4, 5]);
collection.min();
// 1
The mode
method returns the mode value of a given key:
let collection = new Collection([{'foo': 10}, {'foo': 10}, {'foo': 20}, {'foo': 40}]);
collection.mode('foo');
// [ 10 ]
let collection = new Collection([1, 1, 2, 4]);
collection.mode();
// [ 1 ]
The nth
method creates a new collection consisting of every n-th element:
let collection = new Collection(['a', 'b', 'c', 'd', 'e', 'f']);
collection.nth(4).all();
// [ 'a', 'e' ]
You may optionally pass an offset as the second argument:
collection.nth(4, 1).all();
// [ 'b', 'f' ]
The only
method returns the items in the collection with the specified keys:
let collection = new Collection({
'product_id': 1, 'name': 'Desk', 'price': 100, 'discount': false
});
let filtered = collection.only(['product_id', 'name']);
filtered.all();
// { product_id: 1, name: 'Desk' }
For the inverse of only
, see the except
method.
The partition
method may be combined with the destructuring assignment to separate elements that pass a given truth test from those that do not:
let collection = new Collection([1, 2, 3, 4, 5, 6]);
let [first, second] = collection.partition(function (item) {
return item < 3;
});
console.log(first); // [ 1, 2 ]
console.log(second); // [ 3, 4, 5, 6 ]
The pipe
method passes the collection to the given callback and returns the result:
let collection = new Collection([1, 2, 3]);
let piped = collection.pipe(function ($collection) {
return $collection.sum();
});
// 6
The pluck
method retrieves all of the values for a given key:
let collection = new Collection([
{'product_id': 'prod-100', 'name': 'Desk'},
{'product_id': 'prod-200', 'name': 'Chair'},
]);
let plucked = collection.pluck('name');
plucked.all();
// [ 'Desk', 'Chair' ]
You may also specify how you wish the resulting collection to be keyed:
let plucked = collection.pluck('name', 'product_id');
plucked.all();
// { 'prod-100': 'Desk', 'prod-200': 'Chair' }
The pop
method removes and returns the last item from the collection:
let collection = new Collection([1, 2, 3, 4, 5]);
collection.pop();
// 5
collection.all();
// [1, 2, 3, 4]
The prepend
method adds an item to the beginning of the collection:
let collection = new Collection([1, 2, 3, 4, 5]);
collection.prepend(0);
collection.all();
// [0, 1, 2, 3, 4, 5]
You may also pass a second argument to set the key of the prepended item:
let collection = new Collection({'one': 1, 'two': 2});
collection.prepend(0, 'zero');
collection.all();
// { 'zero': 0, 'one': 1, 'two': 2 }
The
The pull
method removes and returns an item from the collection by its key:
let collection = new Collection({
'product_id': 'prod-100', 'name': 'Desk'
});
collection.pull('name');
// 'Desk'
collection.all();
// { product_id: 'prod-100' }
The push
method appends an item to the end of the collection:
let collection = new Collection([1, 2, 3, 4]);
collection.push(5);
collection.all();
// [ 1, 2, 3, 4, 5 ]
The put
method sets the given key and value in the collection:
let collection = new Collection({'product_id': 1, 'name': 'Desk'});
collection.put('price', 100);
collection.all();
// { product_id: 1, name: 'Desk', price: 100 }
The random
method returns a random item from the collection:
let collection = new Collection([1, 2, 3, 4, 5]);
collection.random();
// 4 - (retrieved randomly)
You may optionally pass an integer to random
to specify how many items you would like to randomly retrieve. A collection of items is always returned when explicitly passing the number of items you wish to receive:
let collection = new Collection([1, 2, 3, 4, 5]);
collection.random(3).all();
// [ 2, 4, 3 ] - (retrieved randomly)
The reduce
method reduces the collection to a single value, passing the result of each iteration into the subsequent iteration:
let collection = new Collection([1, 2, 3]);
let total = collection.reduce(function (carry, item) {
return carry + item;
});
// 6
The value for carry
on the first iteration is null
; however, you may specify its initial value by passing a second argument to reduce
:
let total = collection.reduce(function (carry, item) {
return carry + item;
}, 4);
// 10
The reject
method filters the collection using the given callback. The callback should return true if the item should be removed from the resulting collection:
let collection = new Collection([1, 2, 3, 4]);
let filtered = collection.reject(function (value, key) {
return value > 2;
});
filtered.all();
// [ 1, 2 ]
For the inverse of the reject
method, see the filter
method.
The reverse
method reverses the order of the collection's items:
let collection = new Collection([1, 2, 3, 4, 5]);
let reversed = collection.reverse();
reversed.all();
// [ 5, 4, 3, 2, 1 ]
The search
method searches the collection for the given value and returns its key if found. If the item is not found, false
is returned.
let collection = new Collection([2, 4, 6, 8]);
collection.search(4);
// 1
The search is done using a "loose" comparison, meaning a string with an integer value will be considered equal to an integer of the same value. To use "strict" comparison, pass true
as the second argument to the method:
collection.search('4', true);
// false
Alternatively, you may pass in your own callback to search for the first item that passes your truth test:
collection.search(function (item, key) {
return item > 5;
});
// 2
The shift
method removes and returns the first item from the collection:
let collection = new Collection([1, 2, 3, 4, 5]);
collection.shift();
// 1
collection.all();
// [ 2, 3, 4, 5 ]
The shuffle
method randomly shuffles the items in the collection:
let collection = new Collection([1, 2, 3, 4, 5]);
let shuffled = collection.shuffle();
shuffled.all();
// [ 5, 1, 2, 3, 4 ] - (generated randomly)
The slice
method returns a slice of the collection starting at the given index:
let collection = new Collection([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
let slice = collection.slice(4);
slice.all();
// [ 5, 6, 7, 8, 9, 10 ]
If you would like to limit the size of the returned slice, pass the desired size as the second argument to the method:
let slice = collection.slice(4, 2);
slice.all();
// [ 5, 6 ]
The returned slice will preserve keys by default. If you do not wish to preserve the original keys, you can use the values
method to reindex them.
The sort
method sorts the collection. The sorted collection keeps the original array keys, so in this example we'll use the values
method to reset the keys to consecutively numbered indexes:
let collection = new Collection([5, 3, 1, 2, 4]);
let sorted = collection.sort();
sorted.values().all();
// [ 1, 2, 3, 4, 5 ]
If your sorting needs are more advanced, you may pass a callback to sort
with your own algorithm.
If you need to sort a collection of nested arrays or objects, see the
sortBy
andsortByDesc
methods.
The sortBy
method sorts the collection by the given key. The sorted collection keeps the original array keys, so in this example we'll use the values
method to reset the keys to consecutively numbered indexes:
let collection = new Collection([
{'name': 'Desk', 'price': 200},
{'name': 'Chair', 'price': 100},
{'name': 'Bookcase', 'price': 150}
]);
let sorted = collection.sortBy('price');
sorted.values().all();
/*
[
{ name: 'Chair', price: 100 },
{ name: 'Bookcase', price: 150 },
{ name: 'Desk', price: 200 }
]
*/
You can also pass your own callback to determine how to sort the collection values:
let collection = new Collection([
{'name': 'Desk', 'colors': ['Black', 'Mahogany']},
{'name': 'Chair', 'colors': ['Black']},
{'name': 'Bookcase', 'colors': ['Red', 'Beige', 'Brown']},
]);
let sorted = collection.sortBy(function (product, key) {
return product['colors'].length;
});
sorted.values().all();
/*
[
{ name: 'Chair', colors: [ 'Black' ] },
{ name: 'Desk', colors: [ 'Black', 'Mahogany' ] },
{ name: 'Bookcase', colors: [ 'Red', 'Beige', 'Brown' ] }
]
*/
This method has the same signature as the sortBy
method, but will sort the collection in the opposite order.
The splice
method removes and returns a slice of items starting at the specified index:
let collection = new Collection([1, 2, 3, 4, 5]);
let chunk = collection.splice(2);
chunk.all();
// [ 3, 4, 5 ]
collection.all();
// [ 1, 2 ]
You may pass a second argument to limit the size of the resulting chunk:
let collection = new Collection([1, 2, 3, 4, 5]);
let chunk = collection.splice(2, 1);
chunk.all();
// [ 3 ]
collection.all();
// [ 1, 2, 4, 5 ]
In addition, you can pass a third argument containing the new items to replace the items removed from the collection:
let collection = new Collection([1, 2, 3, 4, 5]);
let chunk = collection.splice(2, 1, [10, 11]);
chunk.all();
// [ 3 ]
collection.all();
// [ 1, 2, 10, 11, 4, 5 ]
The split
method breaks a collection into the given number of groups:
let collection = new Collection([1, 2, 3, 4, 5]);
let groups = collection.split(3);
groups.toArray();
// [ [ 1, 2 ], [ 3, 4 ], [ 5 ] ]
The sum
method returns the sum of all items in the collection:
Collection.make([1, 2, 3, 4, 5]).sum();
// 15
If the collection contains nested arrays or objects, you should pass a key to use for determining which values to sum:
let collection = new Collection([
{'name': 'JavaScript: The Good Parts', 'pages': 176},
{'name': 'JavaScript: The Definitive Guide', 'pages': 1096},
]);
collection.sum('pages');
// 1272
In addition, you may pass your own callback to determine which values of the collection to sum:
let collection = new Collection([
{'name': 'Chair', 'colors': ['Black']},
{'name': 'Desk', 'colors': ['Black', 'Mahogany']},
{'name': 'Bookcase', 'colors': ['Red', 'Beige', 'Brown']},
]);
collection.sum(function (product) {
return product['colors'].length;
});
// 6
The take
method returns a new collection with the specified number of items:
let collection = new Collection([0, 1, 2, 3, 4, 5]);
let chunk = collection.take(3);
chunk.all();
// [ 0, 1, 2 ]
You may also pass a negative integer to take the specified amount of items from the end of the collection:
let collection = new Collection([0, 1, 2, 3, 4, 5]);
let chunk = collection.take(-2);
chunk.all();
// [ 4, 5 ]
The tap
method passes the collection to the given callback, allowing you to "tap" into the collection at a specific point and do something with the items while not affecting the collection itself:
let result = Collection.make([2, 4, 3, 1, 5])
.sort()
.tap(function (collection) {
console.log(collection.values().toArray());
// [ 1, 2, 3, 4, 5 ]
})
.shift();
console.log(result);
// 1
The static times
method creates a new collection by invoking the callback a given amount of times:
let collection = Collection.times(10, function (number) {
return number * 9;
});
collection.all();
// [ 9, 18, 27, 36, 45, 54, 63, 72, 81, 90 ]
The toArray
method converts the collection into a plain array:
let collection = new Collection({'name': 'Desk', 'price': 200});
collection.toArray();
/*
[
[ 'Desk', 200 ]
]
*/
toArray
also converts all of the collection's nested objects to an array. If you want to get the raw underlying array, use theall
method instead.
The toJson
method converts the collection into a JSON serialized string:
let collection = new Collection({'name': 'Desk', 'price': 200});
collection.toJson();
// '{"name":"Desk","price":200}'
The transform
method iterates over the collection and calls the given callback with each item in the collection. The items in the collection will be replaced by the values returned by the callback:
let collection = new Collection([1, 2, 3, 4, 5]);
collection.transform(function (item, key) {
return item * 2;
});
collection.all();
// [ 2, 4, 6, 8, 10 ]
Unlike most other collection methods,
transform
modifies the collection itself. If you wish to create a new collection instead, use themap
method.
The union
method adds the given array to the collection. If the given array contains keys that are already in the original collection, the original collection's values will be preferred:
let collection = new Collection({'1': ['a'], '2': ['b']});
let union = collection.union({'3': ['c'], '1': ['b']});
union.all();
// { '1': [ 'a' ], '2': [ 'b' ], '3': [ 'c' ] }
The unique
method returns all of the unique items in the collection. The returned collection keeps the original array keys, so in this example we'll use the values
method to reset the keys to consecutively numbered indexes:
let collection = new Collection([1, 1, 2, 2, 3, 4, 2]);
let unique = collection.unique();
unique.values().all();
// [ 1, 2, 3, 4 ]
When dealing with nested arrays or objects, you may specify the key used to determine uniqueness:
let collection = new Collection([
{'name': 'iPhone 6', 'brand': 'Apple', 'type': 'phone'},
{'name': 'iPhone 5', 'brand': 'Apple', 'type': 'phone'},
{'name': 'Apple Watch', 'brand': 'Apple', 'type': 'watch'},
{'name': 'Galaxy S6', 'brand': 'Samsung', 'type': 'phone'},
{'name': 'Galaxy Gear', 'brand': 'Samsung', 'type': 'watch'},
]);
let unique = collection.unique('brand');
unique.values().all();
/*
[
{ name: 'iPhone 6', brand: 'Apple', type: 'phone' },
{ name: 'Galaxy S6', brand: 'Samsung', type: 'phone' }
]
*/
You may also pass your own callback to determine item uniqueness:
let unique = collection.unique(function (item) {
return item['brand']+item['type'];
});
unique.values().all();
/*
[
{ name: 'iPhone 6', brand: 'Apple', type: 'phone' },
{ name: 'Apple Watch', brand: 'Apple', type: 'watch' },
{ name: 'Galaxy S6', brand: 'Samsung', type: 'phone' },
{ name: 'Galaxy Gear', brand: 'Samsung', type: 'watch' }
]
*/
The unique
method uses "loose" comparisons when checking item values, meaning a string with an integer value will be considered equal to an integer of the same value. Use the uniqueStrict
method to filter using "strict" comparisons.
Coming soon…
The values
method returns a new collection with the keys reset to consecutive integers:
let collection = new Collection({
'10': {'product': 'Desk', 'price': 200},
'11': {'product': 'Desk', 'price': 200}
});
let values = collection.values();
values.all();
/*
[
{ product: 'Desk', price: 200 },
{ product: 'Desk', price: 200 }
]
*/
The when
method will execute the given callback when the first argument given to the method evaluates to true
:
let collection = new Collection([1, 2, 3]);
collection.when(true, function (collect) {
return collect.push(4);
});
collection.all();
// [ 1, 2, 3, 4 ]
The where
method filters the collection by a given key / value pair:
let collection = new Collection([
{'product': 'Desk', 'price': 200},
{'product': 'Chair', 'price': 100},
{'product': 'Bookcase', 'price': 150},
{'product': 'Door', 'price': 100}
]);
let filtered = collection.where('price', 100);
filtered.all();
/*
[
{ product: 'Chair', price: 100 },
{ product: 'Door', price: 100 }
]
*/
The
where
method uses "loose" comparisons when checking item values, meaning a string with an integer value will be considered equal to an integer of the same value. Use thewhereStrict
method to filter using "strict" comparisons.
Coming soon…
The whereIn
method filters the collection by a given key / value contained within the given array:
let collection = new Collection([
{'product': 'Desk', 'price': 200},
{'product': 'Chair', 'price': 100},
{'product': 'Bookcase', 'price': 150},
{'product': 'Door', 'price': 100}
]);
let filtered = collection.whereIn('price', [150, 200]);
filtered.all();
/*
[
{ product: 'Desk', price: 200 },
{ product: 'Bookcase', price: 150 }
]
*/
The
whereIn
method uses "loose" comparisons when checking item values, meaning a string with an integer value will be considered equal to an integer of the same value. Use thewhereInStrict
method to filter using "strict" comparisons.
Coming soon…
The whereNotIn
method filters the collection by a given key / value not contained within the given array:
let collection = new Collection([
{'product': 'Desk', 'price': 200},
{'product': 'Chair', 'price': 100},
{'product': 'Bookcase', 'price': 150},
{'product': 'Door', 'price': 100}
]);
let filtered = collection.whereNotIn('price', [150, 200]);
filtered.all();
/*
[
{ product: 'Chair', price: 100 },
{ product: 'Door', price: 100 }
]
*/
The whereNotIn
method uses "loose" comparisons when checking item values, meaning a string with an integer value will be considered equal to an integer of the same value. Use the whereNotInStrict
method to filter using "strict" comparisons.
Coming soon…
The zip
method merges together the values of the given array with the values of the original collection at the corresponding index:
let collection = new Collection(['Chair', 'Desk']);
let zipped = collection.zip([100, 200]);
zipped.all();
// [ [ 'Chair', 100 ], [ 'Desk', 200 ] ]
Any ideas are welcome. Feel free to submit any issues or pull requests, please check the contribution guidelines.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.