SФ
Size: a a a
SФ
G
DM
AS
S🥐
W
W
VG
DG
DG
isAuthenticated() {
return this.http.get(...).pipe(map(() => true), catchError(() => of(false)));
}
////
service.isAuthenticated().subscribe(authenticated => {
console.log(authenticated) // true | false
});
VG
DG
VG
isAuthenticated() {
return this.http.get(...).pipe(map(() => true), catchError(() => of(false)));
}
////
service.isAuthenticated().subscribe(authenticated => {
console.log(authenticated) // true | false
});
VG
VG
export class AuthGuardService implements CanActivate {}
constructor(private authenticationService: AuthenticationService, private router: Router) {
}
canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
this.authenticationService.isAuthenticated().subscribe(authenticated => {
return true;
},
error1 => {
this.router.navigate(['/login']);
// you can save redirect url so after authing we can move them back to the page they requested
return false;
});
}
NP
export class AuthGuardService implements CanActivate {}
constructor(private authenticationService: AuthenticationService, private router: Router) {
}
canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
this.authenticationService.isAuthenticated().subscribe(authenticated => {
return true;
},
error1 => {
this.router.navigate(['/login']);
// you can save redirect url so after authing we can move them back to the page they requested
return false;
});
}
canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
return this.authenticationService.isAuthenticated().pipe(map(() => true), catchError(() => {
this.router.navigate(['/login’]);
return of(false);
})
DG
export class AuthGuardService implements CanActivate {
constructor(private authenticationService: AuthenticationService, private router: Router) {
}
canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
return this.authenticationService.isAuthenticated().pipe(tap(authenticated => {
if(!authenticated) {
this.router.navigate(['/login’]);
}
}));
}
}