ix
Version:
The Interactive Extensions for JavaScript
124 lines (122 loc) • 5.74 kB
JavaScript
import { __asyncGenerator, __await } from "tslib";
import { AsyncIterableX } from '../asynciterablex.mjs';
import { toArray } from '../toarray.mjs';
import { sorter as defaultSorter } from '../../util/sorter.mjs';
import { throwIfAborted } from '../../aborterror.mjs';
/** @ignore */
export class OrderedAsyncIterableBaseX extends AsyncIterableX {
constructor(source) {
super();
this._source = source;
}
[Symbol.asyncIterator](signal) {
return __asyncGenerator(this, arguments, function* _a() {
throwIfAborted(signal);
const array = yield __await(toArray(this._source, signal));
const len = array.length;
const indices = new Array(len);
for (let i = 0; i < len; i++) {
indices[i] = i;
}
indices.sort(this._getSorter(array));
for (const index of indices) {
yield yield __await(array[index]);
}
});
}
thenBy(keySelector, comparer = defaultSorter) {
return new OrderedAsyncIterableX(this._source, keySelector, comparer, false, this);
}
thenByDescending(keySelector, comparer = defaultSorter) {
return new OrderedAsyncIterableX(this._source, keySelector, comparer, true, this);
}
}
/** @ignore */
/** @ignore */
export class OrderedAsyncIterableX extends OrderedAsyncIterableBaseX {
constructor(source, keySelector, comparer, descending, parent) {
super(source);
this._keySelector = keySelector;
this._comparer = comparer;
this._descending = descending;
this._parent = parent;
}
_getSorter(elements, next) {
const keys = elements.map(this._keySelector);
const comparer = this._comparer;
const parent = this._parent;
const descending = this._descending;
const sorter = (x, y) => {
const result = comparer(keys[x], keys[y]);
if (result === 0) {
return next ? next(x, y) : x - y;
}
return descending ? -result : result;
};
return parent ? parent._getSorter(elements, sorter) : sorter;
}
}
/**
/**
* Sorts the elements of a sequence in ascending order according to a key by using a specified comparer.
*
* @template TKey The type of the elements of source.
* @template TSource The type of the key returned by keySelector.
* @param {(item: TSource) => TKey} keySelector A function to extract a key from an element.
* @param {(fst: TKey, snd: TKey) => number} [comparer=defaultSorter] A comparer to compare keys.
* @returns {UnaryFunction<AsyncIterable<TSource>, OrderedAsyncIterableX<TKey, TSource>>} An ordered async-iterable sequence whose
* elements are sorted according to a key and comparer.
*/
export function orderBy(keySelector, comparer = defaultSorter) {
return function orderByOperatorFunction(source) {
return new OrderedAsyncIterableX(source, keySelector, comparer, false);
};
}
/**
* Sorts the elements of a sequence in descending order according to a key by using a specified comparer.
*
* @template TKey The type of the elements of source.
* @template TSource The type of the key returned by keySelector.
* @param {(item: TSource) => TKey} keySelector A function to extract a key from an element.
* @param {(fst: TKey, snd: TKey) => number} [comparer=defaultSorter] A comparer to compare keys.
* @returns {UnaryFunction<AsyncIterable<TSource>, OrderedAsyncIterableX<TKey, TSource>>} An ordered async-iterable sequence whose
* elements are sorted in descending order according to a key and comparer.
*/
export function orderByDescending(keySelector, comparer = defaultSorter) {
return function orderByDescendingOperatorFunction(source) {
return new OrderedAsyncIterableX(source, keySelector, comparer, true);
};
}
/**
* Performs a subsequent ordering of the elements in a sequence in ascending order according to a key using a specified comparer.
*
* @template TKey The type of the elements of source.
* @template TSource The type of the key returned by keySelector.
* @param {(item: TSource) => TKey} keySelector A function to extract a key from an element.
* @param {(fst: TKey, snd: TKey) => number} [comparer=defaultSorter] A comparer to compare keys.
* @returns {UnaryFunction<AsyncIterable<TSource>, OrderedAsyncIterableX<TKey, TSource>>} An ordered async-iterable whose elements are
* sorted according to a key and comparer.
*/
export function thenBy(keySelector, comparer = defaultSorter) {
return function thenByOperatorFunction(source) {
const orderSource = source;
return new OrderedAsyncIterableX(orderSource._source, keySelector, comparer, false, orderSource);
};
}
/**
* Performs a subsequent ordering of the elements in a sequence in descending order according to a key using a specified comparer.
*
* @template TKey The type of the elements of source.
* @template TSource The type of the key returned by keySelector.
* @param {(item: TSource) => TKey} keySelector A function to extract a key from an element.
* @param {(fst: TKey, snd: TKey) => number} [comparer=defaultSorter] A comparer to compare keys.
* @returns {UnaryFunction<AsyncIterable<TSource>, OrderedAsyncIterableX<TKey, TSource>>} An ordered async-iterable whose elements are
* sorted in descending order according to a key and comparer.
*/
export function thenByDescending(keySelector, comparer = defaultSorter) {
return function thenByDescendingOperatorFunction(source) {
const orderSource = source;
return new OrderedAsyncIterableX(orderSource._source, keySelector, comparer, true, orderSource);
};
}
//# sourceMappingURL=orderby.mjs.map