common-ui/src/lib/loading/full-page-loading-indicator/full-page-loading-indicator.component.html

13 lines
467 B
HTML

<ng-container *ngIf="loadingService.isLoading() as config">
<section class="full-page-section"></section>
<section class="full-page-content">
<mat-spinner *ngIf="config.type === 'spinner'" diameter="40"></mat-spinner>
<ng-container *ngIf="config.type === 'progress-bar'">
<iqser-progress-loading [config]="config"></iqser-progress-loading>
</ng-container>
<ng-content></ng-content>
</section>
</ng-container>