ghostfolio/apps/client/src/app/core/module-preload.service.ts

14 lines
434 B
TypeScript
Raw Normal View History

2021-04-13 21:53:58 +02:00
import { Injectable } from '@angular/core';
import { PreloadingStrategy, Route } from '@angular/router';
import { Observable, of } from 'rxjs';
@Injectable()
export class ModulePreloadService implements PreloadingStrategy {
/**
* Preloads all lazy loading modules with the attribute 'preload' set to true
*/
preload(route: Route, load: Function): Observable<any> {
return route.data?.preload ? load() : of(null);
}
}