Angular: Leveraging RxJS for combining Action and Data streams
When it comes to streams, there are 2 types: 1. Data Stream: Mostly HTTP calls where you get a response to a request. And its complete! 2. Action stream: button clicks, drop down selections, check box selections etc where values are emitted continuously, you keep getting new values into a stream Stackblitz links: https://stackblitz.com/edit/angular-ivy-o41hzu https://stackblitz.com/edit/angular-ivy-pdkt1s https://stackblitz.com/edit/angular-ivy-hlt1u1 (get posts for user name entered) Consider you have 2 components: 1. List Component: One to display the list of emails 2. Detail Component: ...