24 lines
1.5 KiB
JavaScript
24 lines
1.5 KiB
JavaScript
"use strict";
|
|
var distinct_1 = require('./distinct');
|
|
/**
|
|
* Returns an Observable that emits all items emitted by the source Observable that are distinct by comparison from previous items,
|
|
* using a property accessed by using the key provided to check if the two items are distinct.
|
|
* If a comparator function is provided, then it will be called for each item to test for whether or not that value should be emitted.
|
|
* If a comparator function is not provided, an equality check is used by default.
|
|
* As the internal HashSet of this operator grows larger and larger, care should be taken in the domain of inputs this operator may see.
|
|
* An optional paramter is also provided such that an Observable can be provided to queue the internal HashSet to flush the values it holds.
|
|
* @param {string} key string key for object property lookup on each item.
|
|
* @param {function} [compare] optional comparison function called to test if an item is distinct from previous items in the source.
|
|
* @param {Observable} [flushes] optional Observable for flushing the internal HashSet of the operator.
|
|
* @returns {Observable} an Observable that emits items from the source Observable with distinct values.
|
|
*/
|
|
function distinctKey(key, compare, flushes) {
|
|
return distinct_1.distinct.call(this, function (x, y) {
|
|
if (compare) {
|
|
return compare(x[key], y[key]);
|
|
}
|
|
return x[key] === y[key];
|
|
}, flushes);
|
|
}
|
|
exports.distinctKey = distinctKey;
|
|
//# sourceMappingURL=distinctKey.js.map
|