Pitfalls Of Using takeUntil and takeUntilDestroyed RxJS Operators

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

КОМЕНТАРІ • 78

  • @DecodedFrontend
    @DecodedFrontend  Рік тому +6

    From community: There is an eslint rule that helps to avoid the pitfalls I mentioned - github.com/cartant/rxjs-tslint-rules#rxjs-no-unsafe-takeuntil
    💥 Become a PRO with my in-depth Angular Forms Course💥
    🔗 10% discount for the first 10 students - bit.ly/advanced-ng-forms-discounted
    💡 Short Frontend Snacks (Tips) every week here:
    Twitter - twitter.com/DecodedFrontend
    Instagram - instagram.com/decodedfrontend
    LinkedIn - www.linkedin.com/in/dmezhenskyi

  • @halgaska
    @halgaska Рік тому +11

    I love how you explain things while showing the actual implementation in the Angular source code. I am glad you have decided to create Angular content :)

  • @innocentmazando3808
    @innocentmazando3808 Рік тому +15

    Thanks for this one. Really educational and you just answered an issue I once had last month.

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

      Thank you for your feedback. I wish I released the video earlier :) However, it will help others to save a lot time of in debugging such stuff.

  • @ommo289
    @ommo289 Рік тому +7

    The presentation of the memory leak is awesome! Thank you for the video

  • @zoxx972
    @zoxx972 Рік тому +3

    Thanks Sir, always learning something new here, nice and clean!!! Do you have some videos talking about the best way to structure a complex Angular project? When to use container components, presentational components pattern, use of a state management with the use of a facade service, maybe some NX style project structure also? I always find it hard to find ressource about it except having the ability to have access to a large production app. Anyway all the best, Thanks you!

  • @danielvega646
    @danielvega646 Місяць тому

    Now this is high quality angular's content.

  • @JuliaSleeps
    @JuliaSleeps Рік тому +3

    “ but is there a even a better way?” I truly thought that you will say “no”))) thank you for the video

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

      How unpredictable am I haha 😂 thanks for the comment 😊

  • @danijelanikitin4727
    @danijelanikitin4727 Рік тому +3

    Thank you very much for this one! 1h ago was googling is switchMap auto unsubscribed when have takeUntil and now you posted this 😂 Great explanation! 🎉

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

    Incredibly valuable information. Thank you for keeping the video under 15 minutes.

  • @blokche_dev
    @blokche_dev Рік тому +4

    As always, valuable content. Thanks for sharing!

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

    Thanks! You boosted my angular knowledge dramatically 😅

  • @AntonioSantana-ll8il
    @AntonioSantana-ll8il Рік тому +1

    I love the way you explain things! greetings for Colombia!

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

    As always, clear explanations 😊 thanks!

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

    As always awesome information!!

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

    Could you expound on how you see the memory leak? Or are you determining this because you still see the polling logs in the console? The bird was exceptionally funny!

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

    Як завжди🔥

  • @gagiksimonyan3782
    @gagiksimonyan3782 Рік тому +3

    Thanks for another useful video, Dmytro) What about until-destroy Library?

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

      Same thing there :) They also use takeUntil operator under the hood.

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

    i look forrward to seeing a singal video on DECODED FRONTEND style, i mean, master style

  • @aram5642
    @aram5642 Рік тому +4

    Yeah, async pipe is a decent way of unsubscribing, but still - it has this awful thing to it that the first "emission" is null, so it requires a lot of guards around the values to satisfy strict template checks

    • @DecodedFrontend
      @DecodedFrontend  Рік тому +4

      Eventually, all the approaches have tradeoffs. I forgot to mention in the video but the toSignal also has some drawbacks, for example, since it uses inject() under the hood, it means that you can use it only either in the constructor context, the context of injector, or provide injector explicitly :)

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

      @@DecodedFrontend Yes, Manfred had a great talk about it recently. But I am not reaching that far, as my projects are still pre-16. And also, singal won't be able to replace all rxjs, so one still needs to know the "old school" ways :)

  • @olivierboisse1678
    @olivierboisse1678 6 місяців тому

    4:00 Your assumption is wrong, you can perfectly declare takeUntil operator after min, max, count, last.
    Here is an example which doesn't print anything due to the takeUntil method :
    const subject = new Subject();
    setTimeout(() => subject.next(null), 500);
    of(1, 2)
    .pipe(
    concatMap((n) => of(n).pipe(delay(1000))),
    last(),
    takeUntil(subject)
    )
    .subscribe(console.log);

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

    Thanks very useful!!

  • @kaeltas00
    @kaeltas00 4 місяці тому

    Awesome thanks!

  • @unalkyl5857
    @unalkyl5857 20 днів тому +1

    With takeuntilDestroyed, i am getting the issue
    NG0911: View has already been destroyed
    Is there any Solution for that?

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

    Great video. Thank you. You made me laugh with parrot 😄

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

    Great Channel for Angular Content. Do you have any plans to cover "Directive Composition API"?. Thanks in advance.

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

    thank you so much for your videos, it feels like they make me a better and more undarstanding software developer :)

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

    there is a typo in your video thumbnail

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

    Great as always. Please consider putting code example next time! Cheers :)

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

      Hey :) thank you! Could you please clarify what exactly do you mean by “putting code examples”? Thank you :)

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

      @@DecodedFrontend for example 2:54 - it would be cool to put this example in stackblitz so I (we) can play with this code :) Or maybe I'm the one who want to test it by myself :D

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

      @@michaldevpl aha, that's what you mean. Ok, I will maybe add either a Stackblitz or a link to the GitHub repo ;)

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

      @@DecodedFrontend No worries :) Just consider it during next video! Happy weekend!

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

    Great as always thank you

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

    What Happens with CatchError inside the pipeline? Should I use takeUntilDestroyed before the CatchError or after?

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

    Thanks!

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

    I have a question regarding the valueChanges of the form. Do I need to unsubscribe from it?

  • @RahulPatel-kw3bp
    @RahulPatel-kw3bp 5 місяців тому

    What order should `catchError` and `finalize` operators be used vs `takeUntil`?

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

    Thanks for the content (useful as usual) :)

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

    Thank you, for your videos!

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

    Thank you.

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

    Fantastic video 😍😍
    Have a doubt..
    I have a project with hundreds of components, and each component can have its own service. These services handle the business logic for fetching data from the backend. The response from the API calls is then shared with the component's template and rendered on the UI. I would like to know if unsubscribing from API call responses made using the Angular HTTP module is necessary in this scenario.
    btw I am not using async pipe.

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

    do you have a video on when the ngOnDestroy method is automatically called in services and when it will be ignored?

  • @Aliakbaresmaeiliiii
    @Aliakbaresmaeiliiii 6 місяців тому

    I really appreciate of y for create nice video

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

    Great video. Thanks :)

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

    Perfect, thanks

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

    thank you

  • @Aliakbaresmaeiliiii
    @Aliakbaresmaeiliiii 6 місяців тому

    *I really appreciate of y for create nice video *

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

    For operators such as share or shareReplay, should they go after takeUntil or similar methods?

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

    Very strange behavior. May be issue was with PollingService instances? Because, usually SwitchMap of course is auto unsubscribing if parent subscription was canceled, even if takeUntill stands before switchMap operator.

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

    same for ngneat/until-destroy?

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

    what happened after takeUntil stays after takeuntil

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

    Amazing video thank you so much, I've been using takeUntil(destroyed$) opreator and never felt that there might be memory leaks I thought it was doing great job. nice video I think you saved so much person's time. keep going ❤

  • @ratg97
    @ratg97 Рік тому +3

    i think the best way is takeUntilDestroyed

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

      Great option too :)

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

      @@DecodedFrontend toSignal is too new

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

      @@ratg97 yep, that’s true. Hopefully, since Angular 17 it becomes stable and we can safely use it.

  • @NN-it2vm
    @NN-it2vm Рік тому

    Сигналы имба)

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

    bro please make videos more frequently. please. you tell what others donot and very few videos there. :(

  • @ÁlvaroMartínezMartínez-z9l
    @ÁlvaroMartínezMartínez-z9l Рік тому +1

    Nice video. However I don't quite see how toSignal avoids one of the pitfalls you mention in ua-cam.com/video/eJs4EJUOnNE/v-deo.html. AFAIK toSignal needs to either run in injection context or you need to manually pass it the Injector, so how could you leverage this in a method, for instance?

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

      Hi :) Yeah... well... I was already getting this question and it is my bad that I forgot to mention about disadvantages of using toSignal as well. Indeed, it has a limitation that you have mentioned which might be very inconvenient when you observable rely on some data from e.g. @Input(). My motivation to claim that 'toSignal' is better than the async pipe was the following:
      1. No need to import any dependencies like (AsyncPipe)
      2. Broader usage. It can be used in services, directives, etc when async pipe can be used only in components/templates.
      3. Compatible with the future ZoneLess concept which is based on signals. Maybe the ASYNC pipe will be adjusted to work with Zoneless apps too but at this time I don't have such information.
      But of course, toSignal has disadvantages like:
      1. can be used only in the injection/constructror context.
      2. toSignal subscribes immediately to observable which is... not necessarily a disadvantage but just a thing to keep in mind.

  • @TayambaMwanza
    @TayambaMwanza Рік тому +5

    I unsubscribe by clicking the small unsubscribe button in my emails 😂

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

      Or on UA-cam channel 😬 Hopefully not :)

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

      @@DecodedFrontend haha, no I have subscribed to you, good content

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

    one more new thing in arsenal) thx a lot

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

    I subscribed your channel and then after watching this video unsubscribed as you suggested to avoid memory leaks 😂😜

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

    It's 1st what you must learn before use RxJs!
    Signals for lazy developers )))

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

    Wtf? 😂

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

    thank you!