-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcontinueWith.ts
45 lines (40 loc) · 1.1 KB
/
continueWith.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* @license Use of this source code is governed by an MIT-style license that
* can be found in the LICENSE file at https://github.com/cartant/rxjs-etc
*/
/*tslint:disable:rxjs-no-nested-subscribe*/
import {
from,
Observable,
ObservableInput,
ObservedValueOf,
OperatorFunction,
Subscription,
} from "rxjs";
const NO_VAL: any = {};
export const continueWith = <T, O extends ObservableInput<any>>(
mapper: (value: T) => O
): OperatorFunction<T, T | ObservedValueOf<O>> => (source$) =>
new Observable((observer) => {
let latestValue: T = NO_VAL;
const subscription = new Subscription();
subscription.add(
source$.subscribe({
complete: () => {
if (latestValue === NO_VAL) {
observer.complete();
} else {
const nextObservable$ = from(mapper(latestValue));
subscription.add(nextObservable$.subscribe(observer));
}
},
error: (e) => {
observer.error(e);
},
next: (val) => {
observer.next((latestValue = val));
},
})
);
return subscription;
});