CanLoad
interface
npm Package | @angular/router |
---|---|
Module | import { CanLoad } from '@angular/router'; |
Source | router/src/interfaces.ts |
Interface Overview
interface CanLoad { canLoad(route: Route): Observable<boolean>|Promise<boolean>|boolean }
How To Use
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): 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 alternatively provide a function with the canLoad
signature:
@NgModule({ imports: [ RouterModule.forRoot([ { path: 'team/:id', component: TeamCmp, loadChildren: 'team.js', canLoad: ['canLoadTeamSection'] } ]) ], providers: [ { provide: 'canLoadTeamSection', useValue: (route: Route) => true } ] }) class AppModule {}
Members
canLoad(route: Route): Observable<boolean>|Promise<boolean>|boolean
© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v4.angular.io/api/router/CanLoad