Learn RxJS Angular, RxJS pipe, async pipe, RxJS observables, Behaviorsubject, Combinelatest

Поділитися
Вставка
  • Опубліковано 27 гру 2024

КОМЕНТАРІ • 238

  • @MonsterlessonsAcademy
    @MonsterlessonsAcademy  3 місяці тому

    WATCH NEXT: Beginner's RxJS Tutorial: Dive Deep with RxJS Crash Course - ua-cam.com/video/yJdh1_FbtjU/v-deo.htmlsi=qhsqP7Eu3Nd7_hIU

  • @felixmatusinio6438
    @felixmatusinio6438 2 роки тому +66

    Straight to the point. In just 20 minutes of video I felt like, I’ve gain superpower.

  • @prateekvishwas4151
    @prateekvishwas4151 2 роки тому +18

    Most underrated channel, this channel deserve more views and more subscribers

  • @Bregylais
    @Bregylais Рік тому +2

    You are hands down the best RxJS / Ngrx / Angular teacher out there. Well done, good Sir, well done.

  • @legends_assemble4938
    @legends_assemble4938 Рік тому +2

    Before this video I had no knowledge of RxJS. any or most of the articles or videos out in the internet start to explain about some technical stuff like observables, observers, pipes, subscribe, etc, etc.... All this jargon with complicated examples which had made me nervous quite few times..
    Man but you rocked it. I did not need to know all that technical stuff while just knowing how it worked, and you gave me that...
    Thanks a lot.

  • @kiranshinde03
    @kiranshinde03 10 місяців тому +1

    I have never seen this much of clear understanding of observables, and that tricky (now easy) behaviorSubject.. Many many thank you for this ❤❤

  • @ltd_music
    @ltd_music 2 роки тому +16

    That is the clearest and simplest approach i've watched so far. Thanks for the video! Amazing work!

  • @MrSuija
    @MrSuija 10 місяців тому +1

    Amazing channel with clear, practical instructions. Thanks and keep up the good work!

  • @Popinho7
    @Popinho7 9 місяців тому

    this tutorial feels like you are unlocking a new level in Angular, amazing!

  • @ashwanikumar183
    @ashwanikumar183 Рік тому

    your content has a lot more super power I've been working for angular more than 2 years now. Once I see that I just got surprised the superpowers you teach here can you please create a detailed video on rxjs making any project along the way.

  • @advance5189
    @advance5189 8 місяців тому

    Wonderful tutorial! I’m really fascinated by the way you explain different things. Way to go!

  • @user-rp9iis1en6h
    @user-rp9iis1en6h Рік тому +2

    You convered so many things. In practical scenario, most of the times we need to access the observable not from the html, but from the typescript itself, and from the typescript, when you have 10 observable that should be utilized to produce your desired value step by step/ conditionally, using subscribe or pipe is insane. There is no shortcut of async pipe in typescript, thats the problem, my dear.

  • @ezvalt1323
    @ezvalt1323 Рік тому

    I have finally understood why we use combineLatest. Thanks a lot

  • @VadymZavadiuk
    @VadymZavadiuk Рік тому +1

    Just what I wanted to know! Your fast and clear explanation is really important for everyday use. Thank you!

  • @dorji-dev
    @dorji-dev 2 місяці тому

    Coming from react to angular, your channel is a blessing.

  • @emancipate71
    @emancipate71 Рік тому

    Thanks!

  • @FullMetalAlgorithmist
    @FullMetalAlgorithmist 10 місяців тому

    Super good stuff man. Love your content. I'm relatively new to angular, and your videos are helping me a lot. Thanks!

  • @jaywantnarwade5517
    @jaywantnarwade5517 8 місяців тому

    most of RxJs opertator completed in 20 min. Nicely explain all with example

  • @jacekmaolepszy5342
    @jacekmaolepszy5342 8 місяців тому

    Love this guy, his accent, and knowledge. Thx!

  • @tinodueppotell4869
    @tinodueppotell4869 2 роки тому

    Danke!

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  2 роки тому

      Thank you so much for your support! It means a lot to me.

    • @tinodueppotell4869
      @tinodueppotell4869 2 роки тому

      @@MonsterlessonsAcademy
      I have to thank you for your great work here and of course also on Udemy. 👍

  • @andromadusnaruto1544
    @andromadusnaruto1544 2 роки тому +1

    Wow! I learnt a whole LOT out of this video. Thank you soo much, Mr. Olleksandr.

  • @RidingSoulRV
    @RidingSoulRV Рік тому +1

    Damn !!! so much to learn in just 19 mins... Thank you

  • @SehindeRaji-Imam
    @SehindeRaji-Imam Рік тому

    I am really impressed, this is an excellent video !

  • @monjurmorshed2854
    @monjurmorshed2854 2 роки тому

    Your angular explanation style is great and very clear!!!!

  • @RealNaisuCinema
    @RealNaisuCinema Рік тому

    This video was so good. The code is so perfect it’s like art. I’ll be watching this a few more times I wish I could commit this to memory. Maybe I’ll try

  • @ohmegatech666
    @ohmegatech666 3 місяці тому

    On the last example, I'm getting the error:
    Type '{ id: string; name: string; } | null' is not assignable to type 'NgIterable | null | undefined'.ngtsc(2322)
    declare (property) NgForOf.ngForOf: NgIterable | null | undefined
    The value of the iterable expression, which can be used as a template input variable.
    No quick fixes available

  • @michaelnagatoshi1830
    @michaelnagatoshi1830 5 місяців тому

    Dude! This video is fantastic!!

  • @troymelok831
    @troymelok831 Рік тому

    Nice and clear explanation, thanx man

  • @tobalhenriquez8233
    @tobalhenriquez8233 Рік тому

    You are the best explaining!

  • @VinodSharma-qg5nz
    @VinodSharma-qg5nz Рік тому

    great content in just 19 mins.Thanks!

  • @SpaceL0rd
    @SpaceL0rd 8 місяців тому

    NIce video! but I have one remark:
    Use mergeMap() before filter() in the pipe and you will apply the filter for each indvidual value, so if a user isActive = false. you will still get the ones that are active. Using mergeMap() will flatten the array and the filter will be applied for each value of the array instead filtering on whole array --> So the filter work as in javascript.

  • @sourabhpandit6724
    @sourabhpandit6724 5 місяців тому

    good explanation of basics RXJS

  • @figloalds
    @figloalds Рік тому

    This is a very comprehensive introduction with just the strictly necessary fundamentals, a great educational video

  • @valikonen
    @valikonen 2 роки тому

    I press like button before to see your contact. You always offer excellent content.

  • @newybocktor
    @newybocktor 2 роки тому

    Thank you so much, your explanation is realy clear and simple, your knowleage is respectful. Thank you for sharing your experience.

  • @MrOpolo91
    @MrOpolo91 Рік тому

    Very clear explanation of important RxJs concepts... Amazing work! Keep it going :)

  • @abhisheksaxena518
    @abhisheksaxena518 Рік тому +1

    Great video!
    One question, let's say I am getting the list of data from an API. How can I display the error message which is sent from the backend on the screen if I don't subscribe and get the error object from the subscribe method?

  • @olipardoable
    @olipardoable Рік тому

    That was a great video thank you. At work we are dealing with a screen with multiple events and Rxjs made it simpler

  • @trappu
    @trappu Рік тому

    Bro, u've just blown my mind, thanks, like really, thank you a lot!

  • @upsidedown8108
    @upsidedown8108 2 роки тому +2

    Great video, as always. A video on how to test observables marbles testing etc would be awesome. Thanks.

  • @pankajshinde9269
    @pankajshinde9269 Рік тому

    Simple, straight and clear...

  • @nfallycoly6362
    @nfallycoly6362 7 місяців тому

    Awesome!!! it's very helpful. But can you please explain how to avoid infinite loop with combineLatest?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  7 місяців тому

      The is no infinite loop with combineLatest by default. It is your code that might do that.

  • @PresentedByBailey
    @PresentedByBailey 2 роки тому +1

    it was a really good video but it would have been great if the filter example was more realistic. most people would not want to return data only if all users were active, they would want to return the users that are active. i guess that filter function only filters for all or nothing, i take it? if you wanted to filter out just some items you would not use filter function there, is that correct?
    i have a Observable that is returned by a service and i want to filter out one of the Map items (one key,value pair) but i don't think this filter function will help with that. any suggestions on a video of yours to watch to be able to figure out how to do what i want?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  2 роки тому

      Filter in RxJS doesn't equal filter in JS. It filters a stream not it's data. If you want js filter (or any other function) you want RxJS map with js logic inside.

    • @ahmedmk534
      @ahmedmk534 2 роки тому

      @@MonsterlessonsAcademy can you please provide any use case of using rxjs filters ? it is only used to get the whole stream or not depending on specified conditions ?

  • @vibesoflife6596
    @vibesoflife6596 Рік тому

    Excellent content please upload more such stuffs. Love from BHARAT

  • @CharlieKiloSierra8893
    @CharlieKiloSierra8893 2 роки тому

    I really like the concept of combineLatest this is really helpful if you have a lot of stream data .. Great video this is awesome thank you

  • @mab7627
    @mab7627 2 роки тому

    How will we handle http error using pipes if we dont use subscribe method?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  2 роки тому

      You don't. You use subscribe and BehaivourSubject or any other stream which has just plain data and no errors.
      data$ = new BehaivourSubject([])
      getUsers().subscribe(users => data$.next(users))
      {{data$ | async | json}}

  • @udhayasankar113
    @udhayasankar113 2 роки тому

    Much needed tutorial.Thanks!!

  • @michelchaghoury9629
    @michelchaghoury9629 2 роки тому

    please keep going we need more and more angulqr content

  • @bunyaminyilmaz3798
    @bunyaminyilmaz3798 Рік тому

    Absolutely insane, thank you. Coming from Vue i have problems to understand the reactivity in Angular.

  • @zzzbyyy
    @zzzbyyy 2 роки тому

    i have one questions ... if i have list of users from observable displayed in template via pipe ... and one user is updated ... does all users in template will be re-rendered ? (or i have to use somehow trackBy)

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  2 роки тому

      You should always write trackBy. Doesn't matter if it's an observable or not.

  • @wiliam334
    @wiliam334 Рік тому

    That is amazing. Which ide and plugins u t using?
    And do u have course for sale?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  Рік тому

      It's vim
      ua-cam.com/video/j6uqOvTRq6I/v-deo.html
      ua-cam.com/video/YrLiugDhCuk/v-deo.html
      ua-cam.com/video/Xa4aOOB7XZo/v-deo.html
      No I don't have sales. The prices are $10 on average which is already quite low for 8+ hours of content.

  • @Samir-50082
    @Samir-50082 Рік тому

    Hi very good explanation, I learned a lot thank you.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  Рік тому

      Glad it was helpful!

    • @Samir-50082
      @Samir-50082 Рік тому

      Do you have a videocourse for angular

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  Рік тому

      @@Samir-50082 I have Angular interview questions monsterlessons-academy.com/courses/angular-interview-questions-coding-interview-2023 and Angular NgRx course monsterlessons-academy.com/courses/angular-and-ngrx-building-real-project-from-scratch

  • @karthikeyan878
    @karthikeyan878 2 роки тому

    we are using ASYNC pipe when using GET method API calls and display the values in UI. likewise can we able to perform POST, UPDATE,DELETE operations without using the subscribe method?

  • @emekaokerue2337
    @emekaokerue2337 2 роки тому

    Thank you so much! Very detailed explanation.

  • @kamillo27
    @kamillo27 2 місяці тому

    good stuff, thank you man! :)

  • @tuber694
    @tuber694 Рік тому

    Excellent content!

  • @yejipark751
    @yejipark751 Рік тому

    Amazing video, thank you!

  • @ijustravel
    @ijustravel Рік тому

    Many thanks for the amazing session.

  • @JohnSmith-yr7ih
    @JohnSmith-yr7ih Рік тому

    why I can't use inside 'filter()' other 'filter()'?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  Рік тому

      RxJS filter filters the whole stream by predicate. I don't see how filter inside would do something.

  • @sinaebr7337
    @sinaebr7337 2 роки тому

    very clean and beautiful tutorial. does combineLatest is deprecated and should use in pipe?
    an other function that i use mostly firstValueFrom for change to promise
    also tap function in pipe

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  2 роки тому +1

      Any rxjs function should be used in pipe. Usage of functions without it was deprecated long ago.

  • @sivasankaran99
    @sivasankaran99 2 роки тому

    thanks you so much dude, i love it

  • @rishimondal3010
    @rishimondal3010 8 місяців тому

    Can we do
    filterusers$ = this.users.pipe(
    Map(users=>users.filter(user=>user.isActive)?

  • @anutaNYC
    @anutaNYC 10 місяців тому

    But if there is one inactive user how to filter the stream and show users?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  10 місяців тому +1

      You might confuse Rxjs filter and js filter. Rxjs filters the stream completely and you don't get any data from it. If you want to filter inactive users and render only active users you don't need Rxjs filter but Rxjs map

    • @anutaNYC
      @anutaNYC 10 місяців тому

      @@MonsterlessonsAcademy yes I am! But you can still display users with filters if all is true

  • @darioenriqueyero561
    @darioenriqueyero561 11 місяців тому

    Muchas gracias. Explicas muy bien. Bravo

  • @user-cc8kb
    @user-cc8kb Рік тому

    Great explanations! Thanks

  • @vihangafernando6644
    @vihangafernando6644 Рік тому

    Hi Do you have a crash/full course on RxJs?For a beginner?

  • @shadowgazesup
    @shadowgazesup 2 роки тому

    Thanks for the video. Please make a video for Cold and Hot Observables or NgRx

  • @raymondagholor2745
    @raymondagholor2745 2 роки тому

    Excellent content. Thanks for this!

  • @CodingAbroad
    @CodingAbroad 2 роки тому

    If I have a formarray and in each row there is a drop down list. Is there any problem using async to populate the list of the drop down bearing in mind there are multiple formarrays rows?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  2 роки тому

      I didn't have any probles with angular forms and async pipe.

    • @nspo1983
      @nspo1983 2 роки тому

      I just encountered that exact scenario recently. Each time a new Form Array control was added, the dropdown for the new control would call the api and create a new stream. After watching this video, I think that combining my streams and pipe/mapping them out would be a great solution to the subscription I ended up going with for my FormArray dropdowns.

  • @snivels
    @snivels 2 роки тому

    Your videos are incredible. You're an excellent teacher!

  • @mouhamedanflousse38
    @mouhamedanflousse38 5 місяців тому

    which VS code color theme do you use

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  5 місяців тому

      It's Gruvbox. ua-cam.com/video/lvKjSBbQXxs/v-deo.htmlsi=cMaPAt3Cde2c7P1S

  • @karthikeyan878
    @karthikeyan878 2 роки тому

    Very useful tutorial !! Thank you

  • @jomerverola4880
    @jomerverola4880 Рік тому

    How do you have suggestions like that every type theres suggestion seems make the work easy how to do that?

  • @karthikeyan878
    @karthikeyan878 2 роки тому

    If I have two http observables and I want to subscribe data when both observables completed. which rxjs operator should I use?

    • @SaschaN
      @SaschaN 2 роки тому

      combineLatest or forkJoin with both as arguments, very similar to the last example. But the choice is depending on the dependency between the http calls.
      The video is very good, but I think some time delays/state management would improve the understanding of rxjs

    • @karthikeyan878
      @karthikeyan878 2 роки тому

      @@SaschaN Thank you

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  2 роки тому

      Typically I would use forkjoin for such case.

  • @rsroshi4201
    @rsroshi4201 Рік тому +1

    Hi, beautiful code setup, can you please make a video on your theme and vs code extensions please.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  Рік тому +2

      I'm using Vim and not Vscode. Here is my video about it
      ua-cam.com/video/YrLiugDhCuk/v-deo.html
      my theme is gruvbox.

  • @sergeyshabaganov1620
    @sergeyshabaganov1620 2 роки тому

    Cool!! Many thanks for your work!!

  • @balamani149
    @balamani149 Рік тому

    Thanks man great job :)

  • @ilsrbn
    @ilsrbn Рік тому +1

    Hello, thanks for your video, it's very useful and well structured! Also I have two questions about themes you describe.
    1. While we work with our template it's good approach to use async pipe to avoid manual subscripton and handling unsubscribing.
    But when we need, for example to create a product: we need to make an API POST call, retrieve a result and redirect user back to All Products list with updated list. As API POST call still return an Observable, not Promise that we can await, is it good approach to manually .subscribe() to API POST call and inside redirecting user back? If yes, do we still need to .unsubscribe(), from this api call (it's still an Observable)? This is not really clean while you almost always hear things like "You need to manually .subscribe() as as little as possible".
    2. In case if need to make multiple api calls one by one after submitting our new product from previous question, for example: 1. createPost API call and retriee postID, 2. Upload photos attached to retieved postId. In this case, is it OK to make nested subscribes, like: createPost.subsctibe((postId) => uploadPhotos(postId).subscribe(() => this.router.navigateByUrl('/'))) ?
    Again, thanks a lot for your videos and explanations!!!

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  Рік тому +2

      Use async pipe for streams with data like behaivoursubject. Don't use it for api calls. For API calls use subscribe and sync the results with data inside behaivour subjects.
      Nested calls are bad. for this case use concatmap.

    • @ilsrbn
      @ilsrbn Рік тому +1

      @@MonsterlessonsAcademy thanks a lot!!

  • @DragosP-cx7sk
    @DragosP-cx7sk Рік тому

    Thank you for this video!

  • @KaranOdedra
    @KaranOdedra Рік тому

    Wow, thanks a lot. Subscribed :)

  • @oreidosites
    @oreidosites 2 роки тому

    how can i implement it on a table?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  2 роки тому

      Here is a custom Angular table with observables.
      ua-cam.com/video/bRqKImogb2k/v-deo.html

  • @emilsirbu236
    @emilsirbu236 2 роки тому

    Thank you for this awesome content!

  • @celestecolautti573
    @celestecolautti573 Рік тому

    excelent content thank you so much!

  • @guntherrondina2190
    @guntherrondina2190 2 роки тому

    Excellent video although i have little concern on the combineLatest, I think that just over complicate things and not everybody will be able to read it at first glancem but overall great video

  • @cupatelj52
    @cupatelj52 Рік тому

    Very useful, thanks.

  • @miloszivkovic6607
    @miloszivkovic6607 2 роки тому +1

    Long live the king!

  • @nashwan8829
    @nashwan8829 Рік тому

    شرح فضيييع وسلس

  • @videosbypan
    @videosbypan 2 роки тому

    Kind unrelated but what font is he using? :)

  • @_Greenflag_
    @_Greenflag_ Рік тому

    Hey, thanks for sharing knowledge. Just saw you offering courses, but I would be more interested in a particular course (1 v 1), if it's affordable, of course. Is it something you offer ? Cheers

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  Рік тому

      What exactly do you means by 1v1 course? I don't record specific courses because I want popular tech that people want to buy

    • @_Greenflag_
      @_Greenflag_ Рік тому

      @@MonsterlessonsAcademy direct lesson in live. Particular course :)

    • @_Greenflag_
      @_Greenflag_ Рік тому

      @@MonsterlessonsAcademy private lesson

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  Рік тому

      @@_Greenflag_ No I don't do that because I don't have enough time for 1 on 1 tutoring.

  • @infermusg995
    @infermusg995 2 роки тому

    Great Video , thanks

  • @hirowf
    @hirowf 2 роки тому

    Insane bro!!!!

  • @uaplatformacomua
    @uaplatformacomua 10 місяців тому

    Why didn't you do the course by RXJS, full course??? I will buy it now.

  • @mallikk28
    @mallikk28 Рік тому

    Great sir.

  • @A__Singh__
    @A__Singh__ 8 місяців тому

    UA-cam needs to add a ❤ button

  • @s_gryt
    @s_gryt 2 роки тому

    Can you please share your dot files for vim/tmux etc.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  2 роки тому

      I made a video about my vim tmux setup: ua-cam.com/video/YrLiugDhCuk/v-deo.html
      Here is my dotfiles gitlab.com/ejiqpep/nvim-config

  • @KushanShanuka
    @KushanShanuka Рік тому

    assume that we are using real api http call, in users$ and filteredusers$ both set in html. is it call api twice?
    by the way i suggest you to make videos for other rxjs functions like (shareply,distinct etc...)
    love the way you explained... ♥

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  Рік тому +1

      you never do api calls in html. Check my videos on behaviorsubject on the channel.

    • @KushanShanuka
      @KushanShanuka Рік тому

      @@MonsterlessonsAcademy ok thank you

  • @Draghonite
    @Draghonite Рік тому

    Great video and I would subscribe but you said not to because Angular will do it for me.

  • @benchik100
    @benchik100 2 місяці тому

    Thanks❤

  • @confidencekpodo7793
    @confidencekpodo7793 2 роки тому

    were you born with angular ? you know so much. you good

  • @pankajshinde9269
    @pankajshinde9269 Рік тому

    Can you make more videos on behaviour Subjects and real-life cases