Yes, thatā€™s normal! Why? Because of how Angular does change detection under the hood!
Published Jan 16, 2023

Async pipe is not pure šŸ¤Æ

Yes, thatā€™s normal! Why? Because of how Angular does change detection under the hood!

To better understand how the async pipe works, letā€™s create our own from scratch!

Letā€™s call it SubscribePipe in order for us to differ it from the original one.

Also, we want our pipe to check this points:

  • Work with Observables (we wonā€™t handle Promises in this post)
  • No over-subscribing
  • Work with OnPush change detection
  • No memory leaks

And use it like this:

@Component({
  selector: 'my-app',
  template: `
    <div *ngIf="show">
      Value: {{ obs$ | subscribe }}
    </div>
  `,
  standalone: true,
  imports: [CommonModule, SubscribePipe],
  // changeDetection: ChangeDetectionStrategy.OnPush // <-- after we handle it we should uncomment this
})
export class AppComponent {
  show = true;

  obs$ = interval(500).pipe(
    tap((x) => {
      if (x === 10) {
        this.show = false;
      }
    })
  );
}

Create a pipe (standalone)

import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
  name: 'subscribe',
  standalone: true
})
export class SubscribePipe implements PipeTransform {
  transform() {}
}

We want our pipe to accept an Observable type, that means we need to handle Observables, Subjects, BehaviorSubjects and ReplaySubjects.

Letā€™s create a Subscribable type that includes all of them (that will be a generic type).

type Subscribable<T> = Observable<T> | Subject<T> | BehaviorSubject<T> | ReplaySubject<T>;

Now that we know what our pipe accepts, letā€™s refactor the pipe to use it! Because we want to infer the type of the subscribable we will convert the pipe class to be generic.

Also, one other thing, we can also pass undefined or null to our pipe.

export class SubscribePipe<T> implements PipeTransform {
  transform(obs: Subscribable<T> | null | undefined) {}
}

Subscription handling

First we need to check if the observable is not null or undefined, and if it is we just return null;

transform(obs: Subscribable<T> | null): T | null {
  if (!obs) {
    return null;
  }
}

Now, letā€™s subscribe to the observable and store itā€™s last value and return it directly.

latestValue: T | null = null;

transform(obs: Subscribable<T> | null): T | null {
  if (!obs) {
    return null;
  }

  obs.subscribe(value => {
    this.latestValue = value;
  });

  return this.latestValue;
}

This wonā€™t work! Why?

Because when change detection runs, the pipe will check the parameters in the transform method and if they havenā€™t changed, it will return the last value that it had cached before.

Iā€™ve explained it more deeply in my previous post: Itā€™s ok to use function calls in Angular templates! , where I explain how pipes memoization works and how we can do the same thing too when using normal functions.

This is the moment where we opt-out of pipe memoization by using the pure: false flag.

@Pipe({
  name: 'subscribe',
  standalone: true,
  pure: false // <-- It is true by default
})

The moment we set the pure option to be false, we tell Angular that we want to handle the transform method memoization by ourself.

If we run the code we will see something like this:

Broken

The reason why it does that is because every time change detection runs, the pipe will subscribe to our observable and let the other subscription in memory, and of course create a memory leak!

How can we fix that? By doing a simple equality check!

We will save the current observable reference, and every time the transform method is called, we will check if itā€™s equal with our current one, and if thatā€™s true, we will just return that latest value.

private currentObs: Subscribable<T> | null = null;

transform(obs: Subscribable<T> | null): T | null {
  if (!obs) {
    return null;
  }

  if (obs === this.currentObs) { // <-- simple equality check
    return this.latestValue;
  } else {
    this.currentObs = obs; // <-- save current observable to a class field

    obs.subscribe((value) => {
      this.latestValue = value;
    });
  }

  return this.latestValue;
}

If we check the app now, we will see that it works fine! But itā€™s not finished!

Pipe works!

Because we still cause a memory leak, because we never unsubscribe from the observable! Letā€™s do it!

Unsubscription handling

Just like we stored the latestValue and currentObs, we will also store the current subscription and assign the observable subscription to it!

private sub: Subscription | null = null;

transform(obs: Subscribable<T> | null): T | null {
  ...
  this.sub = obs.subscribe((value) => {
    this.latestValue = value;
  });
  ...
}

Good! Now we need to unsubscribe on ngOnDestroy, but not only there šŸ’”. How so? Because we need to unsubscribe also on cases where we change the observable reference to be another observable or set it to null.

For example:

@Component({
  selector: 'my-app',
  template: `
    <div *ngIf="show">{{ obs$ | subscribe }}</div>
  `,
  standalone: true,
  imports: [CommonModule, SubscribePipe],
})
export class AppComponent {
  show = true;

  ngOnInit() {
    setTimeout(() => {
      this.obs$ = of(20000);
    }, 2000);

    setTimeout(() => {
      this.obs$ = null;
    }, 4000);
  }

  obs$ = interval(500).pipe(
    tap((x) => {
      if (x === 10) {
        this.show = false;
      }
    })
  );
}

So, we need to dispose the subscription also on these cases! Otherwise, we cause a memory leak!

Letā€™s create a dispose() method that has the unsubscription logic in order to re-use it!

private dispose() {
  if (this.sub) { // <-- first we check if we have a subscription
    this.sub.unsubscribe(); // <-- unsubscribe from the observable
    this.sub = null; // <-- remove the subscription reference
  }
}

Now, letā€™s use this method!

First, on ngOnDestroy() and then in the other cases mentioned above!

ngOnDestroy() {
  this.dispose();
}
transform(obs: Subscribable<T> | null): T | null {
  if (!obs) {
    this.dispose(); // <-- if we have a current sub and change the obs to be null we need to dispose it
    return null;
  }

  if (obs === this.currentObs) {
    return this.latestValue;
  } else {
    this.dispose(); // <-- before subscribing to a new observable, we need to dispose the existing one

    this.currentObs = obs;

    this.sub = obs.subscribe((value) => {
      this.latestValue = value;
    });
  }

  return this.latestValue;
}

If we see the app, it will still work without any issue! And now without memory leaks šŸŽ‰ yay!

Are we done? Not yet, because our pipe doesnā€™t work with OnPush ChangeDetection!

On, your editor, try to enable the changeDetection OnPush on your component and see the app! It wonā€™t show anything!

But, how can we fix it? Just like any other time when we try to fix change detection issues šŸ˜ˆšŸ˜„, put a cdr.markForCheck() after you update the value and weā€™re done!

private cdr = inject(ChangeDetectorRef); // <-- inject CDRef here

transform(obs: Subscribable<T> | null): T | null {
  ...
  this.sub = obs.subscribe((value) => {
    this.latestValue = value;
    this.cdr.markForCheck(); // <-- mark the component as dirty here, after we have updated the latestValue
  });
  ...
}

Thatā€™s it!

Code refactoring

Letā€™s move the subscription handling in a method (and also throw when we get an error), set cdr, currentObs to null in ngOnDestroy (to remove itā€™s reference and not cause any memory leak) and change the way code is handled in the transform method for better readability.

private subscribe(obs: Subscribable<T>) {
  this.currentObs = obs;

  this.sub = obs.subscribe({
    next: (res) => {
      this.latestValue = res;
      this.cdr.markForCheck();
    },
    error: (error) => {
      throw error;
    },
  });
}
transform(obs: Subscribable<T> | null): T | null {
  if (!obs) {
    this.dispose();
    return null;
  }

  // here we check if the obs are not the same instead of checking if they are the same
  if (obs !== this.currentObs) {
    this.dispose();
    this.subscribe(obs); // <-- use the method we extracted above
  }

  return this.latestValue;
}
ngOnDestroy() {
  this.dispose();
  this.cdr = null;
  this.currentObs = null;
}

Recap

Find the whole source code here, and see that async pipe itself is built almost the same way!

We have handled almost all the cases that Angularā€™s async pipe handles except the promises (but also that can be done easily)! And understood why Angular async pipe is not pure, and why that is not an issue at all!

Thanks for reading!

If this article was interesting and useful to you, and you want to learn more about Angular, support me by buying me a coffee ā˜•ļø or follow me on X (formerly Twitter) @Enea_Jahollari where I tweet and blog a lot about Angular latest news, signals, videos, podcasts, updates, RFCs, pull requests and so much more. šŸ’Ž


Share this article:

Previous articles

Don't miss out on our previous articles.