I have a UserProfileResolver
to provide data to a UserProfileComponent
. I noticed i can click the navigation link a bunch of times sending a ton of HTTP requests.
Is there a standard way to prevent subsequent requests from being made until the initial one completes?
nav
<li class="nav-item">
<a [routerLink]="['/user-profile/'+userId]" class="nav-link" routerLinkActive="active">
<i class="fa fa-user" aria-hidden="true"></i>
<ng-container i18n>Edit Profile</ng-container>
</a>
</li>
routing module
const routes: Routes = [
{
path: ':id',
component: UserProfileComponent,
resolve: {data: UserProfileResolver},
},
];
resolver
export class UserProfileResolver {
constructor(private readonly userService: UserService, private readonly facilityService: FacilityService) {
}
public resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<any> {
return new Observable((observer) => {
forkJoin([
this.userService.getSingle(route.paramMap.get('id')),
this.facilityService.getAll(),
]).pipe(
map(([user, facilities]) => {
return {user, facilities};
}),
catchError(() => of(undefined)),
// dont resolve on error
tap(data => {
if (data !== undefined) {
observer.next(data);
} else {
observer.unsubscribe();
}
observer.complete();
}),
).subscribe();
});
}
}
You can use some Block UI implementation for Angular such as ng-block-ui which can be configured to automatically initiate on the httpRequests and prevent user to any other interactions before response resolving;
You can install it by this command:
and import in your Angular app as follows:
Here is a simple sample on Stackblitz.