Stable Interface
What it does
Indicates that a class can implement to be a guard deciding if a children can be loaded.
How to use
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | class UserToken {} class Permissions { canLoadChildren(user: UserToken, id: string): boolean { return true ; } } @Injectable() class CanLoadTeamSection implements CanLoad { constructor(private permissions: Permissions, private currentUser: UserToken) {} canLoad(route: Route( route: Route ): Observable<boolean>|Promise<boolean>|boolean { return this .permissions.canLoadChildren( this .currentUser, route); } } @NgModule({ imports: [ RouterModule.forRoot([ { path: 'team/:id' , component: TeamCmp, loadChildren: 'team.js' , canLoad: [CanLoadTeamSection] } ]) ], providers: [CanLoadTeamSection, UserToken, Permissions] }) class AppModule {} |
You can also provide a function with the same signature instead of the class:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | @NgModule({ imports: [ RouterModule.forRoot([ { path: 'team/:id' , component: TeamCmp, loadChildren: 'team.js' , canLoad: [ 'canLoadTeamSection' ] } ]) ], providers: [ { provide: 'canLoadTeamSection' , useValue: (route: Route) => true } ] }) class AppModule {} |
Interface Overview
1 2 3 | interface CanLoad { canLoad(route: Route) : Observable<boolean>|Promise<boolean>|boolean } |
Interface Description
Interface Details
canLoad(route: Route) : Observable<boolean>|Promise<boolean>|boolean
exported from @angular/router/index, defined in @angular/router/src/interfaces.ts
Please login to continue.