RXJS Real Examples - 1. How to Use Observables to Manage User Data

  Рет қаралды 31,588

NeverBenBetter

NeverBenBetter

Күн бұрын

Пікірлер: 65
@badlegend9443
@badlegend9443 3 жыл бұрын
Best Rxjs explanation with a relevant use case example, hands-down! Suggestion for the next video: Explaining best practice how to use the user id across other pages while also explaining the trade-off to storing the value in local/session storage VS using activated route VS subscribing and listening to firebase AUTH changes. Bonus would be explaining how subscribing/listening affect the Subscription Metrics in the Firebase Console, Usage tab, Snapshot listeners and Active Connections. No one ever convers this. Still, great work. Much appreciated, keep it up!
@neverbenbetter8225
@neverbenbetter8225 3 жыл бұрын
Thank you so much for the suggestions!
@marcialabrahantes3369
@marcialabrahantes3369 2 жыл бұрын
where did this guy go?! his content is going to the moon and back
@lettuceturnipthebeets790
@lettuceturnipthebeets790 2 жыл бұрын
ikr! it's just awesome how he explains the tough topic, I need more TwT
@ahmedouyahya
@ahmedouyahya 2 жыл бұрын
I searched in google for real world rxjs example and you got me covered. Really Amazing. Thank you so much.
@PatrickJones-q3t
@PatrickJones-q3t Жыл бұрын
Everyone should explain concepts in this manner - my 9 year old now knows Observables! Awesome job!
@neverbenbetter8225
@neverbenbetter8225 Жыл бұрын
Thank you so much!
@warriorfb2010
@warriorfb2010 Жыл бұрын
Came back to this video again. Telling you, you're instruction is extremely valuable and I really appreciate your help!
@GustavoFernandes0
@GustavoFernandes0 Жыл бұрын
How have I not seen your videos before??? What a great explanation, visuals, oratory... I feel like I'm in a classroom environment again. Of course, with the best teacher and subject 😄 I will subscribe and watch your videos. Thanks for sharing. Greetings from Portugal!
@lgiorgos1
@lgiorgos1 3 жыл бұрын
Thanks Ben! I've been waiting for ages for a good video/explanation about rxjs!
@neverbenbetter8225
@neverbenbetter8225 3 жыл бұрын
You are very welcome. I have a project that I have been working on since I first learned RxJS. I often get to look back on my old code and some of it is so bad, it looks like I was just guessing. I remember how much time I spent reading and researching, trying to understand what the heck was going on. We would say, “I spent today in RxJS hell again.” And when I watched videos, it seemed like others would just fly through their examples. I had no doubt in my mind that RxJS could be easy, but I had no idea how long it would take to get to that point!
@ricko13
@ricko13 3 жыл бұрын
The only man in the whole internet/youtube making a real world example, not like the others making the f#cking "counter example" one. #MEGALIKE to this video.
@Manifibell
@Manifibell 11 ай бұрын
I have been struggeling all day with trying to subscribe to a constant Subject, each time an input changes. And what ever I did, I could not get the observable to hit next/complete after the first emission. I think the trick to what I want is share! Also, these videos on rxjs you have made are amazing! It is so clear to me now! :D
@DeepakSingh-hl3er
@DeepakSingh-hl3er 3 жыл бұрын
Its amazing skill to explain a seemingly complex topic in such an easy language.
@Kate-qd5lr
@Kate-qd5lr 3 жыл бұрын
You should definitely create more videos on RxJS. Explanations are very good and helped me a lot.
@rafiktaamma9959
@rafiktaamma9959 3 жыл бұрын
Thank you sir , finally i understood how really to use them . please keep this good work.
@SuperToughnut
@SuperToughnut 2 жыл бұрын
Thank you so much for your very thorough videos. I would like so much to see a video from you on an explanation of all operators. There are so many.
@utsavagrawal2995
@utsavagrawal2995 3 жыл бұрын
awesome explanation.. Would love to see such type of real life example videos.. it clears lots of concepts.. thank you !
@leonndeveloper2000
@leonndeveloper2000 2 жыл бұрын
And that's it bro, I was trying to think how I can use observables, and its perfect explanation If you really want to take the best you have to use realtime database, there is no another option. But its stupid because its the only way that really matters, using observables for a backen http calls it doesnt have sense
@warriorfb2010
@warriorfb2010 2 жыл бұрын
Excellent explanations! You're very good at instructing.
@Riya-gk6yk
@Riya-gk6yk 2 жыл бұрын
I really loved you explanation using real life examples. Please make an angular series where you use firebase service like. Authentication, firestore , storage etc)
@ashwanikumar183
@ashwanikumar183 3 жыл бұрын
This is really amazing explanation. waiting for your new videos to get uploaded.
@toddzmijewski6002
@toddzmijewski6002 3 жыл бұрын
I find it surprising you never mentioned streams. All docs for RxJS reference the data emitted/progressing through the pipeline as a stream. I would also consider it cleaner to use a iif operator for conditionals. That being said I applaud the success explaining rxjs. You did a great job. The analogy you used was clever. I even learned something. I learned about the share operator. Never used that operator.
@neverbenbetter8225
@neverbenbetter8225 3 жыл бұрын
I really appreciate the feedback. To tell the truth, I am not an RxJS expert by any means, but I do have been teaching for a long time.
@toddzmijewski6002
@toddzmijewski6002 3 жыл бұрын
@@neverbenbetter8225 No one is a RxJS expert. I wrote code a few months ago I can barely follow now. There is only a small subset of operations I use on a daily basis. Others I go forever without using. One of those lately seems to be iif. Using iif just looks so much more elegant than a standard conditional. Stringing together a bunch of reactive operators is just so much fun when it works.
@pugbread2873
@pugbread2873 2 жыл бұрын
Thank you, this is exactly what I was looking for, awesome job!
@nesho9358
@nesho9358 2 жыл бұрын
Great video, would love more content like this :)
@OlehBiblyi
@OlehBiblyi 3 жыл бұрын
Thank you, please, do more videos about RxJs.
@raulalvarado7025
@raulalvarado7025 2 жыл бұрын
Best RxJs video!!
@FranklyTerrible
@FranklyTerrible 3 жыл бұрын
At 13:40 you shouldn't use 'of(null)'. Generally speaking, using null as part of your logic is code-smell. If you wish to return an observable to skip or get out of a process, there is the EMPTY Observable. But otherwise, this has been a very entertaining and overall great video.
@neverbenbetter8225
@neverbenbetter8225 3 жыл бұрын
Thank you!
@supergamerfr
@supergamerfr 2 жыл бұрын
Keep it up much needed
@jorgen180
@jorgen180 2 жыл бұрын
Great tutorial, thnx!
@Asaloy
@Asaloy 3 жыл бұрын
Nice to see an other board game addicted :D
@riccardomassafaidatech
@riccardomassafaidatech 3 жыл бұрын
Thank you, great explanation!
@Stevercakes
@Stevercakes 2 жыл бұрын
Thank you for sharing this, broke down RxJS to me. Also thank you for sharing the code used in the example so it's easier to process. Hard to find actual examples as you've stated. Were you still planning on making more RXJS example videos?
@theoriginite7440
@theoriginite7440 2 жыл бұрын
Please make video on angular core topics such as services and also state management in angular( using auth) please please please please please please 🙏🙏🙏🙏🙏🙏🙏
@hansschenker
@hansschenker 3 жыл бұрын
It is a little bit strange to see if else inside an operator! Since RxJs is a Functional Reactive Library - you should also write your code in a functional style. If does not exist in a pure functional programming language. If is replaced with filter! Anyways thank's a lot for having choosen a real life sample and well presented in public. (I would replace the soldier metaphor with just a box with a ingoing arrow at the left side and an outgoing arrow at the right side - this box stands for a function with an input and an output, both beeing an observable. you can treat operators like being a function)
@neverbenbetter8225
@neverbenbetter8225 3 жыл бұрын
Thank you for the tips. I don’t have a functional programming background, so the style is not familiar to me.
@MichaelScharf
@MichaelScharf 2 жыл бұрын
Why are you not handling the catch of the createUser promise?
@kjmoses8546
@kjmoses8546 3 жыл бұрын
I like literally everything u do .. And what microphone and camera name u use .. Just so i would one day have one..and i need ur suggestion .. Can i use them for short action movies
@Amarprem1000
@Amarprem1000 3 жыл бұрын
Thnks sir, seriously it's very helpful 😇
@neverbenbetter8225
@neverbenbetter8225 3 жыл бұрын
You are very welcome!
@RickyBanerjee
@RickyBanerjee 3 жыл бұрын
Thanks for the video. Very helpful. Can you do a video on Behaviour subject, observable and async pipe ?
@neverbenbetter8225
@neverbenbetter8225 3 жыл бұрын
Thank you for the very specific request. Yes. I will put something together.
@nerdiloo9863
@nerdiloo9863 3 жыл бұрын
Very cool. Could you demo how to display an error message (in the catchError) to the web page (vs console log), from a service or interceptor? Good stuff.
@neverbenbetter8225
@neverbenbetter8225 3 жыл бұрын
Thank you for the suggestion. I will try putting something together.
@wiliam334
@wiliam334 11 ай бұрын
That was very good. Ta
@kavehkarami6135
@kavehkarami6135 3 жыл бұрын
Very useful video
@fabioscognamiglio9281
@fabioscognamiglio9281 3 жыл бұрын
Hi and congratulations for the video, well done. One thing is not clear to me (not only one but it's ok for now ;) in the catchError() who consumes the throws in case of new errors?
@neverbenbetter8225
@neverbenbetter8225 3 жыл бұрын
The retry will catch it. In fact, it’s the only reason I put it there. The retry was actually more important while I was debugging. It isn’t really necessary anymore. IF it retries and STILL throws an error, it won’t be caught and the subscription will terminate on error.
@matheussoares1138
@matheussoares1138 3 жыл бұрын
Wow thanks a lot!!
@MichaelSalo
@MichaelSalo 2 жыл бұрын
Why is observing an observable called 'subscribe' instead of 'observe'?
@JBuchmann
@JBuchmann 2 жыл бұрын
Ugh... it seems like as of now you cannot "pipe" onto this.auth.user. Any block of code inside the pipe will have red underline in VS Code with crazy "typing-related" errors which I can't overcome.
@rnilu86
@rnilu86 3 жыл бұрын
What browser are you using?
@neverbenbetter8225
@neverbenbetter8225 3 жыл бұрын
In this video I was using Safari on my Mac.
@goosemoose1213
@goosemoose1213 3 жыл бұрын
why do ppl use subscribe on apiServices, when most of those api just returns a value and thats it? wouldn't it make more sense to use observables on a listener from the backend like web sockets, and just use simple promises on most apis?
@neverbenbetter8225
@neverbenbetter8225 3 жыл бұрын
I understand your question because it’s something I couldn’t understand myself initially. Subscriptions are useful for changing values. They keep your frontend up to date with the latest information. Think about a Twitter feed or your messaging app. Those updates are prompted by the server, not the client. In the example for this video, the user can log in and log out to change the authentication. That IS initiated by the client, so it might not be the best example, but if I want every element to be updated when that change is made, I can use a subscription to do it with greater ease.
@toddzmijewski6002
@toddzmijewski6002 3 жыл бұрын
Promises are resolved and done. Observables can emit a stream of values. Observables in the context of RxJS can be used with operators to change the stream without a bunch of nested callbacks. Observables facilitate async programming that can more easily be manipulated, transformed, changed. There are more advantages to thinking in terms of communications between who functions in terms of async programming than synchronous. Synchronous operations must always return a value in the same cycle. Async operations can return values anytime while the program is running. Reactive programming is responding to action that can occur at any time. That is far more powerful than responding to values that need to be returned immediately. Especially when it comes to front-end development in the client which is naturally an async environment.
@reefhound9902
@reefhound9902 3 жыл бұрын
@@toddzmijewski6002 Promises are async. Observable vs Promise is not about async vs sync.
@irundil8253
@irundil8253 3 жыл бұрын
top
@mayankk2800
@mayankk2800 2 жыл бұрын
Where are you
@iulicush86
@iulicush86 3 жыл бұрын
It's pretty sad seeing someone teaching rxjs, but subscribes to observables in a service. Dont know how useful is the operators' explanation, i stopped as soon as i saw that subscribe there
@neverbenbetter8225
@neverbenbetter8225 3 жыл бұрын
Would you please explain why that is problematic?
@raulrothschild
@raulrothschild 2 жыл бұрын
Wtf is that ?. operator?
RxJS Crash Course
58:14
Laith Academy
Рет қаралды 97 М.
RXJS Operators Explained with Examples: switchMap, map + More
9:07
NeverBenBetter
Рет қаралды 30 М.
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН
Cheerleader Transformation That Left Everyone Speechless! #shorts
00:27
Fabiosa Best Lifehacks
Рет қаралды 16 МЛН
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 294 М.
How are Observables Different from Promises? | Beginner RXJS Lessons
8:46
7 Database Design Mistakes to Avoid (With Solutions)
11:29
Database Star
Рет қаралды 100 М.
How To Make Angular Code More Reusable
19:14
Decoded Frontend
Рет қаралды 32 М.
Hot vs Cold Observable in RxJs (2021)
15:06
Decoded Frontend
Рет қаралды 28 М.
I only ever use *these* RxJS operators to code reactively
25:25
Joshua Morony
Рет қаралды 139 М.
Complex features made easy with RxJS
36:13
Hasgeek TV
Рет қаралды 59 М.
ASK THESE QUESTIONS BEFORE GOING SOLAR
17:53
NeverBenBetter
Рет қаралды 612 М.
RxJS Top Ten - Code This, Not That
14:44
Fireship
Рет қаралды 257 М.
Pitfalls Of Using takeUntil and takeUntilDestroyed RxJS Operators
10:04
Decoded Frontend
Рет қаралды 23 М.
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН