|
| 1 | +import { Operator } from '../Operator'; |
| 2 | +import { Subscriber } from '../Subscriber'; |
| 3 | +import { ArgumentOutOfRangeError } from '../util/ArgumentOutOfRangeError'; |
| 4 | +import { EmptyObservable } from '../observable/EmptyObservable'; |
| 5 | +import { Observable } from '../Observable'; |
| 6 | +import { TeardownLogic } from '../Subscription'; |
| 7 | +import { MonoTypeOperatorFunction } from '../interfaces'; |
| 8 | + |
| 9 | +/** |
| 10 | + * Emits only the first `count` values emitted by the source Observable. |
| 11 | + * |
| 12 | + * <span class="informal">Takes the first `count` values from the source, then |
| 13 | + * completes.</span> |
| 14 | + * |
| 15 | + * <img src="./img/take.png" width="100%"> |
| 16 | + * |
| 17 | + * `take` returns an Observable that emits only the first `count` values emitted |
| 18 | + * by the source Observable. If the source emits fewer than `count` values then |
| 19 | + * all of its values are emitted. After that, it completes, regardless if the |
| 20 | + * source completes. |
| 21 | + * |
| 22 | + * @example <caption>Take the first 5 seconds of an infinite 1-second interval Observable</caption> |
| 23 | + * var interval = Rx.Observable.interval(1000); |
| 24 | + * var five = interval.take(5); |
| 25 | + * five.subscribe(x => console.log(x)); |
| 26 | + * |
| 27 | + * @see {@link takeLast} |
| 28 | + * @see {@link takeUntil} |
| 29 | + * @see {@link takeWhile} |
| 30 | + * @see {@link skip} |
| 31 | + * |
| 32 | + * @throws {ArgumentOutOfRangeError} When using `take(i)`, it delivers an |
| 33 | + * ArgumentOutOrRangeError to the Observer's `error` callback if `i < 0`. |
| 34 | + * |
| 35 | + * @param {number} count The maximum number of `next` values to emit. |
| 36 | + * @return {Observable<T>} An Observable that emits only the first `count` |
| 37 | + * values emitted by the source Observable, or all of the values from the source |
| 38 | + * if the source emits fewer than `count` values. |
| 39 | + * @method take |
| 40 | + * @owner Observable |
| 41 | + */ |
| 42 | +export function take<T>(count: number): MonoTypeOperatorFunction<T> { |
| 43 | + return (source: Observable<T>) => { |
| 44 | + if (count === 0) { |
| 45 | + return new EmptyObservable<T>(); |
| 46 | + } else { |
| 47 | + return source.lift(new TakeOperator(count)); |
| 48 | + } |
| 49 | + }; |
| 50 | +} |
| 51 | + |
| 52 | +class TakeOperator<T> implements Operator<T, T> { |
| 53 | + constructor(private total: number) { |
| 54 | + if (this.total < 0) { |
| 55 | + throw new ArgumentOutOfRangeError; |
| 56 | + } |
| 57 | + } |
| 58 | + |
| 59 | + call(subscriber: Subscriber<T>, source: any): TeardownLogic { |
| 60 | + return source.subscribe(new TakeSubscriber(subscriber, this.total)); |
| 61 | + } |
| 62 | +} |
| 63 | + |
| 64 | +/** |
| 65 | + * We need this JSDoc comment for affecting ESDoc. |
| 66 | + * @ignore |
| 67 | + * @extends {Ignored} |
| 68 | + */ |
| 69 | +class TakeSubscriber<T> extends Subscriber<T> { |
| 70 | + private count: number = 0; |
| 71 | + |
| 72 | + constructor(destination: Subscriber<T>, private total: number) { |
| 73 | + super(destination); |
| 74 | + } |
| 75 | + |
| 76 | + protected _next(value: T): void { |
| 77 | + const total = this.total; |
| 78 | + const count = ++this.count; |
| 79 | + if (count <= total) { |
| 80 | + this.destination.next(value); |
| 81 | + if (count === total) { |
| 82 | + this.destination.complete(); |
| 83 | + this.unsubscribe(); |
| 84 | + } |
| 85 | + } |
| 86 | + } |
| 87 | +} |
0 commit comments