You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Note**: DI-based interceptors run in provider registration order, which can be unpredictable in complex applications with hierarchical DI configurations.
4353
+
4296
4354
### Using Observable
4297
4355
4298
4356
```typescript
@@ -4727,6 +4785,27 @@ export class AuthGuard implements CanActivate {
4727
4785
}
4728
4786
```
4729
4787
4788
+
***canActivateFn***:
4789
+
4790
+
The CanActivateFn guard is a function used to decide if a route can be accessed. It works like the CanActivate guard but is a function instead of a class. It takes two arguments: ActivatedRouteSnapshot and RouterStateSnapshot. The guard returns a boolean value or an Observable or Promise that resolves to a boolean value. If the guard returns true, the route is activated; if it returns false, the route is blocked.
4791
+
4792
+
```typescript
4793
+
import {
4794
+
CanActivate,
4795
+
ActivatedRouteSnapshot,
4796
+
RouterStateSnapshot,
4797
+
} from '@angular/router';
4798
+
import { Observable } from 'rxjs';
4799
+
4800
+
export const authGuard: CanActivateFn = (
4801
+
route: ActivatedRouteSnapshot,
4802
+
state: RouterStateSnapshot
4803
+
) => {
4804
+
// Check if the user is authenticated
4805
+
return true; // Allow access
4806
+
};
4807
+
```
4808
+
4730
4809
***CanActivateChild***:
4731
4810
4732
4811
The CanActivateChild guard is similar to CanActivate but is used to protect child routes of a parent route. It is applied to the parent route configuration and is triggered when any child route is activated. The guard returns a boolean value or an Observable or Promise that resolves to a boolean value.
0 commit comments