I have a global loader which is implemented like this:
CoreModule:
router.events.pipe(
filter(x => x instanceof NavigationStart)
).subscribe(() => loaderService.show());
router.events.pipe(
filter(x => x instanceof NavigationEnd || x instanceof NavigationCancel || x instanceof NavigationError)
).subscribe(() => loaderService.hide());
LoaderService:
@Injectable({
providedIn: 'root'
})
export class LoaderService {
overlayRef: OverlayRef;
componentFactory: ComponentFactory<LoaderComponent>;
componentPortal: ComponentPortal<LoaderComponent>;
componentRef: ComponentRef<LoaderComponent>;
constructor(
private overlay: Overlay,
private componentFactoryResolver: ComponentFactoryResolver
) {
this.overlayRef = this.overlay.create(
{
hasBackdrop: true,
positionStrategy: this.overlay.position().global().centerHorizontally().centerVertically()
}
);
this.componentFactory = this.componentFactoryResolver.resolveComponentFactory(LoaderComponent);
this.componentPortal = new ComponentPortal(this.componentFactory.componentType);
}
show(message?: string) {
this.componentRef = this.overlayRef.attach<LoaderComponent>(this.componentPortal);
this.componentRef.instance.message = message;
}
hide() {
this.overlayRef.detach();
}
}
When running with Angular 7.0.2, the behavior (which I wanted) was:
- Show loader while resolving data attached to a route, and while loading a lazy module
- Don't show loader when navigating to a route without any resolver
I have updated to Angular 7.2, now the behavior is:
- Show loader while resolving data attached to a route, and while loading a lazy module
- Show the Overlay whithout the
LoaderComponent
when navigating to a route without any resolver
I have added some logs on the NavigationStart
and NavigationEnd
events and I found that NavigationEnd
is triggered immediately after NavigationStart
(which is normal), while Overlay disappears about 0.5s after.
I have read the CHANGELOG.md
but I found nothing that might explain this problem. Any idea is welcome.
Edit:
After further research, I have restored the previous behavior by setting package.json
like this:
"@angular/cdk": "~7.0.0",
"@angular/material": "~7.0.0",
instead of this:
"@angular/cdk": "~7.2.0",
"@angular/material": "~7.2.0",
I have identified the faulty commit which has been released in version 7.1.0 and I posted my problem on the related GitHub issue. It fixes the fade out animation of the Overlay
.
What is the v7.1+ compliant way to get the desired behavior?
According to me, the best thing to do would be: show the loader only when necessary, but NavigationStart
doesn't hold the needed information.
I'd like to avoid ending up with some debounce behavior.
Here is what I ended up with, after realizing that a debounceTime
was a good solution in terms of UX because it allowed the loader to show only when the loading time is worth displaying a loader.
counter = 0;
router.events.pipe(
filter(x => x instanceof NavigationStart),
debounceTime(200),
).subscribe(() => {
/*
If this condition is true, then the event corresponding to the end of this NavigationStart
has not passed yet so we show the loader
*/
if (this.counter === 0) {
loaderService.show();
}
this.counter++;
});
router.events.pipe(
filter(x => x instanceof NavigationEnd || x instanceof NavigationCancel || x instanceof NavigationError)
).subscribe(() => {
this.counter--;
loaderService.hide();
});
The way we implement loader in our system with exception list:
export class LoaderInterceptor implements HttpInterceptor {
requestCount = 0;
constructor(private loaderService: LoaderService) {
}
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
if (!(REQUEST_LOADER_EXCEPTIONS.find(r => request.url.includes(r)))) {
this.loaderService.setLoading(true);
this.requestCount++;
}
return next.handle(request).pipe(
tap(res => {
if (res instanceof HttpResponse) {
if (!(REQUEST_LOADER_EXCEPTIONS.find(r => request.url.includes(r)))) {
this.requestCount--;
}
if (this.requestCount <= 0) {
this.loaderService.setLoading(false);
}
}
}),
catchError(err => {
this.loaderService.setLoading(false);
this.requestCount = 0;
throw err;
})
);
}
}
and loader service is just (300ms delay prevents loader from just flashing on the screen when response is fast):
export class LoaderService {
loadingRequest = new BehaviorSubject(false);
private timeout: any;
setLoading(val: boolean): void {
if (!val) {
this.timeout = setTimeout(() => {
this.loadingRequest.next(val);
}, 300);
} else {
clearTimeout(this.timeout);
this.loadingRequest.next(val);
}
}
}
来源:https://stackoverflow.com/questions/54135784/how-to-implement-a-global-loader-in-angular-7-1