Skip to content

Commit ee1dad1

Browse files
committed
Update rxjs chapter
1 parent 1c5eb70 commit ee1dad1

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

docs/src/en/rxjs.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,3 +282,8 @@ To help you decide which operator fits your use case, the RxJS documentation pro
282282

283283
1. In the `film-search.component.ts` file, stop subscribing to the search response and use an async pipe instead in the template. Don't forget to add the `AsyncPipe` to the `imports` array.
284284
2. Even though it is not strictly necessary in those cases, unsubscribe from the login and register calls in the `LoginFormComponent` using the `takeUntilDestroyed` technique.
285+
286+
287+
## To go further
288+
289+
Angular provides helpers to interoperate between Rx and Signals. You will find the documentation [here](https://angular.dev/ecosystem/rxjs-interop).

docs/src/fr/rxjs.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,3 +281,7 @@ Pour vous aider à décider quel opérateur correspond à votre cas d'utilisatio
281281

282282
1. Dans le fichier `film-search.component.ts`, arrêtez de subscribe à la réponse de recherche et utilisez plutôt un pipe async dans le template. N'oubliez pas d'ajouter l'`AsyncPipe` au tableau `imports`.
283283
2. Même si cela n'est pas strictement nécessaire dans ces cas, vous pouvez vous unsubscribe des appels à login et register dans le `LoginFormComponent` en utilisant la technique `takeUntilDestroyed`.
284+
285+
## Pour aller plus loin
286+
287+
Angular fournit des fonctions pour inter opérer entre les Signaux et les Observables. La documentation se trouve [ici](https://angular.dev/ecosystem/rxjs-interop).

0 commit comments

Comments
 (0)