show full screen loader when switching themes

This commit is contained in:
Art Lowel
2021-05-27 13:26:40 +02:00
parent 772ac12329
commit 899b30213e
6 changed files with 44 additions and 23 deletions

View File

@@ -38,14 +38,14 @@ export class RootComponent implements OnInit {
models;
/**
* Whether or not the authentication is currently blocking the UI
* Whether or not to show a full screen loader
*/
@Input() isNotAuthBlocking: boolean;
@Input() shouldShowFullscreenLoader: boolean;
/**
* Whether or not the the application is loading;
* Whether or not to show a loader across the router outlet
*/
@Input() isLoading: boolean;
@Input() shouldShowRouteLoader: boolean;
constructor(
@Inject(NativeWindowService) private _window: NativeWindowRef,