By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents
| /** | |
| * When manually subscribing to an observable in a view component, developers are traditionally required | |
| * to unsubscribe during ngOnDestroy. This utility method auto-configures and manages that relationship | |
| * by watching the DOM with a MutationObserver and internally using the takeUntil RxJS operator. | |
| * | |
| * Angular 7 has stricter enforcements and throws errors with monkey-patching of view component life-cycle methods. | |
| * Here is an updated version that uses MutationObserver to accomplish the same goal. | |
| * | |
| * @code | |
| * |
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents