Last active
December 27, 2019 20:58
-
-
Save adrianfaciu/33fb44d7af5909d8dbfacd27c57352e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class AppPreloadingStrategy implements PreloadingStrategy { | |
preload(route: Route, load: Function): Observable<any> { | |
const loadRoute = (delay) => delay | |
? timer(150).pipe(flatMap(_ => load())) | |
: load(); | |
return route.data && route.data.preload | |
? loadRoute(route.data.delay) | |
: of(null); | |
} | |
} |
Where do I get
timer
,flatMap
, andof
from? I've not worked with these before and I see no import statement.rxjs? lodash?
May I recommend when making example code, please use universally understood code without extra implicit code
This example describes an advanced Angular strategy and assumes that the reader knows at least rxJS
Where do I get
timer
,flatMap
, andof
from? I've not worked with these before and I see no import statement.rxjs? lodash?
May I recommend when making example code, please use universally understood code without extra implicit code
import {PreloadingStrategy, Route} from '@angular/router';
import {Observable, of, timer} from 'rxjs';
import {flatMap} from 'rxjs/operators';
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Where do I get
timer
,flatMap
, andof
from? I've not worked with these before and I see no import statement.rxjs? lodash?
May I recommend when making example code, please use universally understood code without extra implicit code