Skip to content

Commit 251b62c

Browse files
committed
docs: Add examples for functional and DI-based interceptors in Angular, and introduce canActivateFn guard
1 parent d5dd713 commit 251b62c

File tree

1 file changed

+79
-0
lines changed

1 file changed

+79
-0
lines changed

README.md

+79
Original file line numberDiff line numberDiff line change
@@ -4293,6 +4293,64 @@ export const ErrorInterceptor: HttpInterceptorFn = (req, next) => {
42934293
};
42944294
```
42954295

4296+
There are two ways to implement interceptors in Angular:
4297+
4298+
1. Functional Interceptors (Modern Approach)
4299+
For Angular v17+, use the `HttpInterceptorFn` type:
4300+
4301+
```typescript
4302+
import { HttpInterceptorFn } from '@angular/common/http';
4303+
4304+
export const loggingInterceptor: HttpInterceptorFn = (req, next) => {
4305+
console.log('Request URL:', req.url);
4306+
return next.handle(req);
4307+
};
4308+
```
4309+
4310+
Configure in your app config:
4311+
4312+
```typescript
4313+
export const appConfig: ApplicationConfig = {
4314+
providers: [
4315+
provideHttpClient(
4316+
withInterceptors([loggingInterceptor])
4317+
)
4318+
]
4319+
};
4320+
```
4321+
4322+
2. DI-based Interceptors (Traditional Approach)
4323+
Create an injectable class implementing `HttpInterceptor`:
4324+
4325+
```typescript
4326+
@Injectable()
4327+
export class LoggingInterceptor implements HttpInterceptor {
4328+
intercept(req: HttpRequest<any>, handler: HttpHandler): Observable<HttpEvent<any>> {
4329+
console.log('Request URL:', req.url);
4330+
return handler.handle(req);
4331+
}
4332+
}
4333+
```
4334+
4335+
Configure in your app module:
4336+
4337+
```typescript
4338+
bootstrapApplication(AppComponent, {
4339+
providers: [
4340+
provideHttpClient(
4341+
withInterceptorsFromDi(), // Enable DI-based interceptors
4342+
),
4343+
{
4344+
provide: HTTP_INTERCEPTORS,
4345+
useClass: LoggingInterceptor,
4346+
multi: true
4347+
}
4348+
]
4349+
});
4350+
```
4351+
4352+
**Note**: DI-based interceptors run in provider registration order, which can be unpredictable in complex applications with hierarchical DI configurations.
4353+
42964354
### Using Observable
42974355

42984356
```typescript
@@ -4727,6 +4785,27 @@ export class AuthGuard implements CanActivate {
47274785
}
47284786
```
47294787

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+
47304809
***CanActivateChild***:
47314810

47324811
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

Comments
 (0)