Code coverage report for src/operator/find-support.ts

Statements: 100% (38 / 38)      Branches: 100% (10 / 10)      Functions: 100% (8 / 8)      Lines: 100% (34 / 34)      Ignored: none     

All files » src/operator/ » find-support.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 46 47 48 49 50 51 52    1   1 1   1 20 20 20 20     1 20   1   1 20   1 20 20 20 20 20     1 10   10 10     1 30 30 30 30 2 28 6       1 4   1
import {Operator} from '../Operator';
import {Observable} from '../Observable';
import {Subscriber} from '../Subscriber';
 
import {tryCatch} from '../util/tryCatch';
import {errorObject} from '../util/errorObject';
 
export class FindValueOperator<T, R> implements Operator<T, R> {
  constructor(private predicate: (value: T, index: number, source: Observable<T>) => boolean,
              private source: Observable<T>,
              private yieldIndex: boolean,
              private thisArg?: any) {
  }
 
  call(observer: Subscriber<T>): Subscriber<T> {
    return new FindValueSubscriber(observer, this.predicate, this.source, this.yieldIndex, this.thisArg);
  }
}
 
export class FindValueSubscriber<T> extends Subscriber<T> {
  private index: number = 0;
 
  constructor(destination: Subscriber<T>,
              private predicate: (value: T, index: number, source: Observable<T>) => boolean,
              private source: Observable<T>,
              private yieldIndex: boolean,
              private thisArg?: any) {
    super(destination);
  }
 
  private notifyComplete(value: any): void {
    const destination = this.destination;
 
    destination.next(value);
    destination.complete();
  }
 
  _next(value: T): void {
    const { predicate, thisArg } = this;
    const index = this.index++;
    const result = tryCatch(predicate).call(thisArg || this, value, index, this.source);
    if (result === errorObject) {
      this.destination.error(result.e);
    } else if (result) {
      this.notifyComplete(this.yieldIndex ? index : value);
    }
  }
 
  _complete(): void {
    this.notifyComplete(this.yieldIndex ? -1 : undefined);
  }
}