Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular2 Exploring Resolved Data in canActivate Guard?

Is it possible to access resolved data of a route (-Resolver) inside a canActivate guard. Currently I can access the resolved data in the component by

ngOnInit() {
    this.route.data
        .subscribe((data: { example: Array<Object> }) => {
            this.example = data.example;
            console.log('example resolver', this.example);
        });
}

How could I manage that in the canActivate guard? This is not working:

constructor(private route: ActivatedRoute) {}

canActivate(
    route: ActivatedRouteSnapshot,
    state: RouterStateSnapshot,
): boolean {

    this.route.data
        .subscribe((data: { example: Array<Object> }) => {
            this.example = data.example;
            console.log('example resolver', this.example);
        });
}
like image 520
Max Solid Avatar asked Mar 07 '17 15:03

Max Solid


1 Answers

No, you can't because canActivate Method is called before resolve, so you can't get the data

Guard Processing:

  1. canDeactivate

  2. canLoad

  3. canActivateChild

  4. canActivate

  5. resolve

like image 182
G.Vitelli Avatar answered Sep 19 '22 20:09

G.Vitelli