Pitfalls Of Using takeUntil and takeUntilDestroyed RxJS Operators

Поделиться
HTML-код
  • Опубликовано: 5 окт 2024

Комментарии • 77

  • @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 Год назад +12

    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!

  • @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! 🎉

  • @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 😊

  • @hiteshsuthar1097
    @hiteshsuthar1097 Год назад +1

    Thanks! You boosted my angular knowledge dramatically 😅

  • @blokche_dev
    @blokche_dev Год назад +4

    As always, valuable content. Thanks for sharing!

  • @GuillermoArellano
    @GuillermoArellano Год назад

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

  • @AntonioSantana-ll8il
    @AntonioSantana-ll8il Год назад +1

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

  • @claudiuciprianbetiuc3985
    @claudiuciprianbetiuc3985 Год назад +2

    As always, clear explanations 😊 thanks!

  • @danielvega646
    @danielvega646 Месяц назад

    Now this is high quality angular's content.

  • @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!

  • @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 6 месяцев назад

    Thanks very useful!!

  • @youknowwho4994
    @youknowwho4994 Год назад

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

  • @twoonetwo7751
    @twoonetwo7751 Год назад +2

    there is a typo in your video thumbnail

  • @kaeltas00
    @kaeltas00 5 месяцев назад

    Awesome thanks!

  • @ilyabielov9864
    @ilyabielov9864 Год назад +1

    Як завжди🔥

  • @rkrao8582
    @rkrao8582 3 месяца назад

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

  • @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!

  • @yaibanoutsukushii
    @yaibanoutsukushii Год назад

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

  • @azeemjoseph3946
    @azeemjoseph3946 Год назад

    Great as always thank you

  • @RahulPatel-kw3bp
    @RahulPatel-kw3bp 6 месяцев назад

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

  • @unalkyl5857
    @unalkyl5857 Месяц назад +1

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

  • @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.

  • @zrowork198
    @zrowork198 Год назад

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

  • @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.

  • @lucasmello1901
    @lucasmello1901 3 месяца назад

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

  • @hugofilipeseleiro
    @hugofilipeseleiro Год назад +1

    Thank you.

  • @Perun42
    @Perun42 Год назад

    Thank you, for your videos!

  • @Doktornikita
    @Doktornikita 9 месяцев назад

    Thanks!

  • @sebastienbruno5565
    @sebastienbruno5565 Год назад

    Thanks for the content (useful as usual) :)

  • @unknown6535
    @unknown6535 Год назад

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

  • @vaidasmasys3764
    @vaidasmasys3764 Год назад

    Great video. Thanks :)

  • @happen_9616
    @happen_9616 Год назад

    Perfect, thanks

  • @Aliakbaresmaeiliiii
    @Aliakbaresmaeiliiii 7 месяцев назад

    I really appreciate of y for create nice video

  • @Bukratusi
    @Bukratusi Год назад

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

  • @christianaustria741
    @christianaustria741 Год назад

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

  • @devman5813
    @devman5813 Год назад

    thank you

  • @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.

  • @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 ❤

  • @Á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 ruclips.net/video/eJs4EJUOnNE/видео.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.

  • @Aliakbaresmaeiliiii
    @Aliakbaresmaeiliiii 7 месяцев назад

    *I really appreciate of y for create nice video *

  • @NN-it2vm
    @NN-it2vm Год назад

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

  • @yuriinadilnyi3029
    @yuriinadilnyi3029 Год назад +1

    one more new thing in arsenal) thx a lot

  • @TayambaMwanza
    @TayambaMwanza Год назад +5

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

    • @DecodedFrontend
      @DecodedFrontend  Год назад +1

      Or on RUclips channel 😬 Hopefully not :)

    • @TayambaMwanza
      @TayambaMwanza Год назад +1

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

  • @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 9 месяцев назад

    thank you!