You've already forked Epicnabbo-Catalogus-Updated-Daily
116 lines
2.9 KiB
JavaScript
116 lines
2.9 KiB
JavaScript
'use strict';
|
|
|
|
const { Each } = require('./each');
|
|
const { setParallel } = require('./internal/collection');
|
|
const { call3, callProxyReciever, clone } = require('./internal/util');
|
|
|
|
class Transform extends Each {
|
|
constructor(collection, iterator, accumulator) {
|
|
super(collection, iterator, set);
|
|
if (accumulator !== undefined) {
|
|
this._result = accumulator;
|
|
}
|
|
}
|
|
|
|
_callResolve(bool) {
|
|
if (bool === false) {
|
|
this._promise._resolve(clone(this._result));
|
|
} else if (--this._rest === 0) {
|
|
this._promise._resolve(this._result);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = { transform, Transform };
|
|
|
|
function set(collection) {
|
|
setParallel.call(this, collection);
|
|
if (this._keys !== undefined || this._coll === undefined) {
|
|
if (this._result === undefined) {
|
|
this._result = {};
|
|
}
|
|
this._iterate = iterateObject;
|
|
} else {
|
|
if (this._result === undefined) {
|
|
this._result = [];
|
|
}
|
|
this._iterate = iterateArray;
|
|
}
|
|
return this;
|
|
}
|
|
|
|
function iterateArray() {
|
|
const { _rest, _result, _iterator, _coll } = this;
|
|
let i = -1;
|
|
while (++i < _rest && callProxyReciever(call3(_iterator, _result, _coll[i], i), this, i)) {}
|
|
}
|
|
|
|
function iterateObject() {
|
|
const { _rest, _result, _iterator, _coll, _keys } = this;
|
|
let i = -1;
|
|
while (++i < _rest) {
|
|
const key = _keys[i];
|
|
if (callProxyReciever(call3(_iterator, _result, _coll[key], key), this, i) === false) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {Array|Object} collection
|
|
* @param {Function} iterator
|
|
* @param {Array|Object} [accumulator]
|
|
* @return {Aigle} Returns an Aigle instance
|
|
* @example
|
|
* const order = [];
|
|
* const collection = [1, 4, 2];
|
|
* const iterator = (result, num, index) => {
|
|
* return Aigle.delay(num * 10)
|
|
* .then(() => {
|
|
* order.push(num);
|
|
* result[index] = num;
|
|
* });
|
|
* };
|
|
* Aigle.transform(collection, iterator, {})
|
|
* .then(object => {
|
|
* console.log(object); // { '0': 1, '1': 4, '2': 2 }
|
|
* console.log(order); // [1, 2, 4]
|
|
* });
|
|
*
|
|
* @example
|
|
* const order = [];
|
|
* const collection = [1, 4, 2];
|
|
* const iterator = (result, num, index) => {
|
|
* return Aigle.delay(num * 10)
|
|
* .then(() => {
|
|
* order.push(num);
|
|
* result.push(num);
|
|
* });
|
|
* };
|
|
* Aigle.transform(collection, iterator, {})
|
|
* .then(array => {
|
|
* console.log(array); // [1, 2, 4]
|
|
* console.log(order); // [1, 2, 4]
|
|
* });
|
|
*
|
|
* @example
|
|
* const order = [];
|
|
* const collection = { a: 1, b: 4, c: 2 };
|
|
* const iterator = (result, num, key) => {
|
|
* return Aigle.delay(num * 10)
|
|
* .then(() => {
|
|
* order.push(num);
|
|
* result.push(num);
|
|
* return num !== 2;
|
|
* });
|
|
* };
|
|
* Aigle.transform(collection, iterator, [])
|
|
* .then(array => {
|
|
* console.log(array); // [1, 2]
|
|
* console.log(order); // [1, 2]
|
|
* });
|
|
*/
|
|
function transform(collection, iterator, accumulator) {
|
|
return new Transform(collection, iterator, accumulator)._execute();
|
|
}
|