fix(utils): partitionByKey make streamSelector optional

This commit is contained in:
Josep M Sobrepere 2021-06-24 22:54:40 +02:00
parent 6444c03faf
commit 9d47952006
2 changed files with 25 additions and 7 deletions

View File

@ -16,11 +16,7 @@ describe("partitionByKey", () => {
const expectOdd = " -1--3-5--"
const expectEven = " --2--4-6-"
const [getInstance$] = partitionByKey(
source,
(v) => Number(v) % 2,
(v$) => v$,
)
const [getInstance$] = partitionByKey(source, (v) => Number(v) % 2)
expectObservable(getInstance$(0)).toBe(expectEven)
expectObservable(getInstance$(1)).toBe(expectOdd)

View File

@ -5,6 +5,7 @@ import {
Observable,
Subject,
Subscription,
identity,
} from "rxjs"
import { map } from "rxjs/operators"
@ -23,6 +24,27 @@ export function partitionByKey<T, K, R>(
stream: Observable<T>,
keySelector: (value: T) => K,
streamSelector: (grouped: Observable<T>, key: K) => Observable<R>,
): [(key: K) => GroupedObservable<K, R>, Observable<K[]>]
/**
* Groups the elements from the source stream by using `keySelector`, returning
* a stream of the active keys, and a function to get the stream of a specific group
*
* @param stream Input stream
* @param keySelector Function that specifies the key for each element in `stream`
* @returns [1, 2]
* 1. A function that accepts a key and returns the stream for the group of that key.
* 2. A stream with the list of active keys
*/
export function partitionByKey<T, K>(
stream: Observable<T>,
keySelector: (value: T) => K,
): [(key: K) => GroupedObservable<K, T>, Observable<K[]>]
export function partitionByKey<T, K, R>(
stream: Observable<T>,
keySelector: (value: T) => K,
streamSelector?: (grouped: Observable<T>, key: K) => Observable<R>,
): [(key: K) => GroupedObservable<K, R>, Observable<K[]>] {
const groupedObservables$ = new Observable<Map<K, GroupedObservable<K, R>>>(
(subscriber) => {
@ -39,8 +61,8 @@ export function partitionByKey<T, K, R>(
const subject = new Subject<T>()
const res = streamSelector(subject, key).pipe(
shareLatest(),
const res = shareLatest()(
(streamSelector || identity)(subject, key),
) as GroupedObservable<K, R>
;(res as any).key = key