|
1 | 1 | import { Observable } from '../Observable';
|
2 |
| -import { Operator } from '../Operator'; |
3 |
| -import { Subscriber } from '../Subscriber'; |
| 2 | +import { reduce as higherOrderReduce } from '../operators'; |
4 | 3 |
|
5 | 4 | /* tslint:disable:max-line-length */
|
6 | 5 | export function reduce<T>(this: Observable<T>, accumulator: (acc: T, value: T, index: number) => T, seed?: T): Observable<T>;
|
@@ -53,73 +52,14 @@ export function reduce<T, R>(this: Observable<T>, accumulator: (acc: R, value: T
|
53 | 52 | * @owner Observable
|
54 | 53 | */
|
55 | 54 | export function reduce<T, R>(this: Observable<T>, accumulator: (acc: R, value: T, index?: number) => R, seed?: R): Observable<R> {
|
56 |
| - let hasSeed = false; |
57 | 55 | // providing a seed of `undefined` *should* be valid and trigger
|
58 | 56 | // hasSeed! so don't use `seed !== undefined` checks!
|
59 | 57 | // For this reason, we have to check it here at the original call site
|
60 | 58 | // otherwise inside Operator/Subscriber we won't know if `undefined`
|
61 | 59 | // means they didn't provide anything or if they literally provided `undefined`
|
62 | 60 | if (arguments.length >= 2) {
|
63 |
| - hasSeed = true; |
| 61 | + return higherOrderReduce(accumulator, seed)(this); |
64 | 62 | }
|
65 | 63 |
|
66 |
| - return this.lift(new ReduceOperator(accumulator, seed, hasSeed)); |
67 |
| -} |
68 |
| - |
69 |
| -export class ReduceOperator<T, R> implements Operator<T, R> { |
70 |
| - constructor(private accumulator: (acc: R, value: T, index?: number) => R, private seed?: R, private hasSeed: boolean = false) {} |
71 |
| - |
72 |
| - call(subscriber: Subscriber<R>, source: any): any { |
73 |
| - return source.subscribe(new ReduceSubscriber(subscriber, this.accumulator, this.seed, this.hasSeed)); |
74 |
| - } |
75 |
| -} |
76 |
| - |
77 |
| -/** |
78 |
| - * We need this JSDoc comment for affecting ESDoc. |
79 |
| - * @ignore |
80 |
| - * @extends {Ignored} |
81 |
| - */ |
82 |
| -export class ReduceSubscriber<T, R> extends Subscriber<T> { |
83 |
| - private index: number = 0; |
84 |
| - private acc: T | R; |
85 |
| - private hasValue: boolean = false; |
86 |
| - |
87 |
| - constructor(destination: Subscriber<R>, |
88 |
| - private accumulator: (acc: R, value: T, index?: number) => R, |
89 |
| - seed: R, |
90 |
| - private hasSeed: boolean) { |
91 |
| - super(destination); |
92 |
| - this.acc = seed; |
93 |
| - |
94 |
| - if (!this.hasSeed) { |
95 |
| - this.index++; |
96 |
| - } |
97 |
| - } |
98 |
| - |
99 |
| - protected _next(value: T) { |
100 |
| - if (this.hasValue || (this.hasValue = this.hasSeed)) { |
101 |
| - this._tryReduce(value); |
102 |
| - } else { |
103 |
| - this.acc = value; |
104 |
| - this.hasValue = true; |
105 |
| - } |
106 |
| - } |
107 |
| - |
108 |
| - private _tryReduce(value: T) { |
109 |
| - let result: any; |
110 |
| - try { |
111 |
| - result = this.accumulator(<R>this.acc, value, this.index++); |
112 |
| - } catch (err) { |
113 |
| - this.destination.error(err); |
114 |
| - return; |
115 |
| - } |
116 |
| - this.acc = result; |
117 |
| - } |
118 |
| - |
119 |
| - protected _complete() { |
120 |
| - if (this.hasValue || this.hasSeed) { |
121 |
| - this.destination.next(this.acc); |
122 |
| - } |
123 |
| - this.destination.complete(); |
124 |
| - } |
| 64 | + return higherOrderReduce(accumulator)(this); |
125 | 65 | }
|
0 commit comments