DEV Community

Cover image for How to simplify nested async subscriptions in Angular template
Dany Paredes
Dany Paredes

Posted on • Updated on

How to simplify nested async subscriptions in Angular template

One way to subscribe to observable in Angular is async pipe into the HTML template. It is easy but when you have several subscription use ng-container with *ngIf is a common solution, like :

<ng-container *ngIf="userAuth$ | async as user">
    <span column-1 class="licence-name">
        {{user.role}}
    </span>
    <ng-container *ngIf="domains$ | async as domains">
      <ul *ngFor="let domain in domains">
        <li>{{domain}}</li>
    </ng-container>
<ng-container *ngIf="ads$ | async as ads">
       <div *ngFor="let ad in ads">
           {{ad.name}}
       <div>
</ng-container>
<ng-container 
</ng-container>
Enter fullscreen mode Exit fullscreen mode

use Object :)

The ng-contanier generate too noise into the DOM, but we can simplify using object into a single *ngIf and grouping each subscription into it object like:

<ng-container *ngIf="{
    user: userAuth$ | async,
    domains: domains$ | async
} as state ">
    <span column-1 class="licence-name">
        {{state.user.role}}
    </span>
      <ul *ngFor="let domain in state.domains">
        <li>{{domain}}</li>
      </ul>
</ng-container>
Enter fullscreen mode Exit fullscreen mode

Hopefully, that will give you a bit to help you avoid nested *ngIf for observable subscription.

If you enjoyed this post, share it.

Photo by John Barkiple on Unsplash

Oldest comments (1)

Collapse
 
bezael profile image
Bezael Pérez

Congrats 👏