Dynamically injecting component vs controlling it via *ngIf

354 Views Asked by At

I have a scenario where I have a component which does some http requests to show data and if there is an exception while doing so, I want to show instead just the error component.

Does it make sense to have the error component already on the template as

<ng-template [ngIf]="showError">
    <error-view></error-view>
</ng-template>

and set the flag to true to show.

Or inject the component dynamically using ComponentFactoryResolver once there is error?

1

There are 1 best solutions below

0
On

The *ngIf directive doesn't immediately render the elements.

The following

<ng-template [ngIf]="showError">
  <error-view></error-view>
</ng-template>

or the shorter variant

<error-view *ngIf="showError"></error-view>

doesn't actually render the component until the showError is true.

During the rendering, the ng-template would be replaced with a diagnostic comment like

<!--bindings={
  "ng-reflect-ng-if": "false"
}-->

So I'd say using ComponentFactoryResolver is unnecessary in this situation.