The Only Right Way To Handle Errors in React - No More Error Boundaries

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

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

  • @favouritejome
    @favouritejome Год назад +13

    I've been using the react error boundary but didn't know it could catch errors from async operations, also I didn't know of the limitation of the error boundary. Thanks for the video

  • @aristosxanthus658
    @aristosxanthus658 Год назад +6

    I never knew how to actually use React Error Boundary until now. Also didn't know how much of an improvement it is over the native React error boundary. Thanks for the knowledge.

  • @user-et7ko5kc7w
    @user-et7ko5kc7w Год назад +10

    Are you sure the async code won't trigger the error boundary? It looked to me like the error was being swallowed by your try catch

  • @nickwoodward819
    @nickwoodward819 9 месяцев назад +2

    Using the native error boundaries you can render a fallback element:
    ``

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

    This also works I think:
    const useThrowAsyncError = () => {
    const [state, setState] = useState();
    return (error) => {
    setState(() => throw error)
    }
    }

  • @PlacidRodrigues1
    @PlacidRodrigues1 7 месяцев назад +1

    The standard error boundary can surely handle async errors and it can show fallbacks. You have mistakenly swallowed the error in the catch block.

  • @aname3351
    @aname3351 17 дней назад

    Hey. Nice video! However i have a feeling that if you would throw an error in catch after fetch items, the native react boundry would pick it up. This is the the step you also need to do using library (calling method from hook).

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

    You can use a function component as a fallback in the native error boundary... I don't see the point in downloading an extra bloating package, am I missing something?

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

    Hello there, I am beginner learner of react. please make separate tutorial on react-error-boundary, describing everything. I hope new tutorial on react-error-boundary will come soon.

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

    Well, what I do - I have a global reduxToolkit state just for error and if anything sh1tty happens in try/catch + fetch, I will just return that error to the redux error component which displays the error message to the user as a modal. I will look at this though. I did not know about this library. Thank you!

  • @rishabh7g
    @rishabh7g 6 месяцев назад +1

    Thank you, CoderOne, for making this video. Because of you, I am able to understand the error handling in React completely.

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

    There is a problem with example 2. You passed the error to the catch block and did nothing with it. How do you expect it to be caught by the ErrorBoundary?

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

    Is the react-error-boundary library a good replacement for the built-in React ErrorBoundary component if:
    - you would like a fallback ui for asynchronous error as well as regular errors
    - if you don't like to use React class components
    Did i understand that correctly anything else i am missing?

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

      Yes, it can handle both types of errors, used as hooks instead of class components

  • @user-oy4kf5wr8l
    @user-oy4kf5wr8l 2 месяца назад

    thank bro!

  • @eligbuefelix7988
    @eligbuefelix7988 11 месяцев назад

    I love this topic. An advanced concept

  • @khale-d
    @khale-d 4 месяца назад

    Awesome video, thanks so much

  • @tjcn
    @tjcn 4 месяца назад

    *caught

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

    Thank you, it's helpful

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

    Amazing video please keep doing videos like this

  • @Adidobro
    @Adidobro Год назад +13

    speaking about junior mistakes while using any types anywhere...

    • @FEA5T
      @FEA5T 10 месяцев назад

      So, because he points out a junior mistake, that means he cant also make a mistake? Junior devs cant recognize junior mistakes? If I may say so, that is junior dev type of thinking 🤌

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

    Greate video .... Can you please share the repo for this example

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

    thanks amazing info keep it up!

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

    Isn't it better to use Redux and Axios Instance(Interceptors) for async error handling.

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

      redux or interceptor ma rakhyo bhane ta harek euta component ma gayera feri error ko lagi ui milairakhnu paryo tyo package use garyo bhane kunai component ma error aaye ni tesle handle gardincha so tyo sajilo bhayo

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

      I don't think that caters for "render errors" as well. Just errors during API calls.

  • @user-qe1sh7nf7o
    @user-qe1sh7nf7o 7 месяцев назад

    its not working for me to handle async operation. please help

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

    I prefer the first way , better for showing different custom error ui in different cases , gives more independence

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

    Thanks you so much

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

    doest it work with NextJS ?

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

    Thanks alot

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

    awesome video new subscriber here thank you

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

    awesome!

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

    i like it!!

  • @sashasyhinin3928
    @sashasyhinin3928 7 месяцев назад +1

    Why did you delete my comment? where i mentioned on mistake in you video

    • @user-hi6bh4ef7s
      @user-hi6bh4ef7s 3 месяца назад

      What was the mistake? I want to know so I can keep a look out

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

    What you explain in what React tells you to use for 'ErrorBoundary' is fucking baffling. Thanks for helping me understand this, so I now need to wrap the child and not use the async that should be throwing it... Makes sense. Thank you.

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

    Hi, love the content, appreciated a lot! Btw I really like your editor's theme, do you mind share it to me please? Thank you!