Angular templates use a special Async pipe to be able to render out Observables. This lesson covers the syntax used to create an Observable in Angular and then to render it out in the template.
https://github.com/johnlindquist/rxjs-in-angular2/tree/11aa4c29a4536dad0ef26b78d8f7f503e4372f74/src
How do you setup this and get it up and running? I can't figure it out from the github repo....
I noticed that if I use the async pipe operator more than once in my local test project template code, I get multiple calls to the API method called. Is there a way to call the async once on an Observable and then store the result for ex. separate *ngFor and *ngIf operators in the same template?
What about the tree shaking strategy? It should eliminate the problem of import the whole rxjs library, and then we don't need to import each method every time, right?
If anyone has gotten this project to run, please share instructions. Thank You
Looks like the Plunker link og github is wrong ?
Ok, found a working link to gist here: https://github.com/johnlindquist/rxjs-in-angular2 The plunker link on the lesson itself is wrong: https://github.com/eggheadio-projects/angular-rxjs-time-machine/tree/angular-2-rendering-an-observable-with-the-async-pipe
If you are getting the 'exclude' error, hard code the typescript version to 2.0.10.
I then got a 'permission denied' error because the output path was to the root directory (e.g "/build" not __dirname + "/build")
I have submitted a pull request:
https://github.com/eggheadio-projects/angular-rxjs-time-machine/pull/1
( I had to edit this 3 times cos i kept screwing up the directory example.sorry)
@Tom in your repo, only a couple of files actually clone correctly, but that seems to also be the case in the original version you forked. I ended up downloading instead of cloning the original, and then applying your changes. It worked thanks.
Great lesson! Why are we binding console to console.log?
Can you give me some noted which node modules have you installed for up and running this Project
I'm probably super late for this one, but I just throw it out here for anyone who is wondering. I was wondering the same thing.
Behind the scenes what | async
does is subscribing to the observable to the observer sees values passing by. Unsubscribing is handled by Angular 2, so you won't need to worry about that.
It behaves exactly like a normal subscribe and subscribe means, start the execution. This implies that when using the async pipe on the same observable in multiple places is that you start multiple separate executions, which all of them will call the API (resulting in multiple API calls). Whenever you want to share the execution between multiple observers, a Subject should be used.
Hi. How should webstorm configured to complete rxjs interval import as in the video ?
I followerd these but it does not worked
In Webstorm
Other thing is there any Webstorm configuration lesson for Angular ?