Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(first): will now only emit one value in recursive cases #2100

Merged
merged 1 commit into from Nov 5, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions spec/operators/first-spec.ts
Expand Up @@ -42,6 +42,20 @@ describe('Observable.prototype.first', () => {
expectSubscriptions(e1.subscriptions).toBe(sub);
});

it('should only emit one value in recursive cases', () => {
const subject = new Rx.Subject<number>();
const results = [];

subject.first().subscribe(x => {
results.push(x);
subject.next(x + 1);
});

subject.next(0);

expect(results).to.deep.equal([0]);
});

it('should propagate error from the source observable', () => {
const e1 = hot('---^---#');
const expected = '----#';
Expand Down
10 changes: 7 additions & 3 deletions src/operator/first.ts
Expand Up @@ -85,6 +85,7 @@ class FirstOperator<T, R> implements Operator<T, R> {
class FirstSubscriber<T, R> extends Subscriber<T> {
private index: number = 0;
private hasCompleted: boolean = false;
private _emitted: boolean = false;

constructor(destination: Subscriber<R>,
private predicate?: (value: T, index: number, source: Observable<T>) => boolean,
Expand Down Expand Up @@ -137,9 +138,12 @@ class FirstSubscriber<T, R> extends Subscriber<T> {

private _emitFinal(value: any) {
const destination = this.destination;
destination.next(value);
destination.complete();
this.hasCompleted = true;
if (!this._emitted) {
this._emitted = true;
destination.next(value);
destination.complete();
this.hasCompleted = true;
}
}

protected _complete(): void {
Expand Down