Loading service & overlay

This commit is contained in:
Adina Țeudan 2021-08-23 19:53:50 +02:00
parent bb51a90738
commit ec4e2bb00f
6 changed files with 99 additions and 2 deletions

View File

@ -30,3 +30,5 @@ export * from './lib/tables/table-header/table-header.component';
export * from './lib/misc/status-bar/status-bar.component';
export * from './lib/misc/status-bar/status-bar-config.model';
export * from './lib/inputs/editable-input/editable-input.component';
export * from './lib/loading/loading.service';
export * from './lib/loading/full-page-loading-indicator/full-page-loading-indicator.component';

View File

@ -6,6 +6,7 @@ import { DomSanitizer } from '@angular/platform-browser';
import { MatTooltipModule } from '@angular/material/tooltip';
import { TranslateModule } from '@ngx-translate/core';
import { FormsModule } from '@angular/forms';
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
import { IconButtonComponent } from './buttons/icon-button/icon-button.component';
import { ChevronButtonComponent } from './buttons/chevron-button/chevron-button.component';
import { CircleButtonComponent } from './buttons/circle-button/circle-button.component';
@ -18,16 +19,25 @@ import { TableHeaderComponent } from './tables/table-header/table-header.compone
import { SyncWidthDirective } from './tables/sync-width.directive';
import { StatusBarComponent } from './misc/status-bar/status-bar.component';
import { EditableInputComponent } from './inputs/editable-input/editable-input.component';
import { FullPageLoadingIndicatorComponent } from './loading/full-page-loading-indicator/full-page-loading-indicator.component';
const buttons = [IconButtonComponent, ChevronButtonComponent, CircleButtonComponent];
const inputs = [RoundCheckboxComponent, EditableInputComponent];
const matModules = [MatIconModule, MatButtonModule, MatTooltipModule];
const matModules = [MatIconModule, MatButtonModule, MatTooltipModule, MatProgressSpinnerModule];
const modules = [...matModules, FormsModule, TranslateModule];
const components = [...buttons, ...inputs, TableColumnNameComponent, QuickFiltersComponent, TableHeaderComponent, StatusBarComponent];
const components = [
...buttons,
...inputs,
TableColumnNameComponent,
QuickFiltersComponent,
TableHeaderComponent,
StatusBarComponent,
FullPageLoadingIndicatorComponent
];
const utils = [SortByPipe, HumanizePipe, SyncWidthDirective];

View File

@ -0,0 +1,7 @@
<ng-container *ngIf="loadingService.isLoading$ | async">
<section class="full-page-load-section"></section>
<section class="full-page-load-spinner">
<mat-spinner diameter="40"></mat-spinner>
<ng-content></ng-content>
</section>
</ng-container>

View File

@ -0,0 +1,24 @@
@import '../../../assets/styles/variables';
.full-page-load-section,
.full-page-load-spinner {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.full-page-load-section {
opacity: 0.7;
background: $white;
z-index: 900;
}
.full-page-load-spinner {
z-index: 1000;
justify-content: center;
align-items: center;
flex-direction: column;
display: flex;
}

View File

@ -0,0 +1,12 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';
import { LoadingService } from '../loading.service';
@Component({
selector: 'iqser-full-page-loading-indicator',
templateUrl: './full-page-loading-indicator.component.html',
styleUrls: ['./full-page-loading-indicator.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class FullPageLoadingIndicatorComponent {
constructor(readonly loadingService: LoadingService) {}
}

View File

@ -0,0 +1,42 @@
import { Injectable } from '@angular/core';
import { BehaviorSubject } from 'rxjs';
const MIN_LOADING_TIME = 300;
@Injectable({ providedIn: 'root' })
export class LoadingService {
private readonly _loadingEvent$ = new BehaviorSubject(false);
readonly isLoading$ = this._loadingEvent$.asObservable();
private _loadingStarted = 0;
start(): void {
setTimeout(() => {
this._loadingEvent$.next(true);
this._loadingStarted = new Date().getTime();
});
}
stop(): void {
const timeSinceStarted = new Date().getTime() - this._loadingStarted;
const remainingLoadingTime = MIN_LOADING_TIME - timeSinceStarted;
return remainingLoadingTime > 0 ? this._stopAfter(remainingLoadingTime) : this._stop();
}
loadWhile(func: Promise<void>): void {
this.start();
func.then(
() => this.stop(),
() => this.stop()
);
}
private _stop(): void {
setTimeout(() => this._loadingEvent$.next(false));
}
private _stopAfter(timeout: number): void {
setTimeout(() => this._stop(), timeout);
}
}