11 - Higher-Order Components in React - React Higher-Order Components with Example - React Patterns

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

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

  • @tapasadhikary
    @tapasadhikary  2 года назад +2

    Content
    0:00 - Introduction
    00:43 - What is React Higher-Order Component Pattern?
    12:40 - React Higher-Component Pattern with Examples.
    29:13 - Wrapping up & What's Next?

  • @spectacular5595
    @spectacular5595 7 месяцев назад +3

    mind Blowing , HOC is very difficult concept to understand , but you make it easy . i really thought HOC is like a rocket science but after your explanation its peace of cake . 😁

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

      Very nice, I am so glad it helped you.

  • @willianandrade1357
    @willianandrade1357 2 года назад +8

    A HOC is a simple JavaScript function which accepts a component (another js function) and returns a completely new enhanced component based of the first one. The HOCs are nothing more than a way of reusing code to create cleaner and simpler React components. This was my understanding of the subject! Thank you Tapas for the amazing videos so far!

  • @mdsumonh.shohan9159
    @mdsumonh.shohan9159 3 месяца назад +1

    I think HOC makes a react componet much cleaner it bring the UI centric data out from a component and it handles the all side effects. now we can create a component wrapping with HOC and get a new our UI data as we can show.

    • @tapasadhikary
      @tapasadhikary  3 месяца назад +1

      Yeah since we have the concept of hooks now, similar reusability and encaptulation is possible using hooks too.

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

    'Perfect' is the word for this tutorial

  • @practicalandplannedhomeschool
    @practicalandplannedhomeschool 2 года назад +2

    I'm relieved to finally find a video that clears up how HOCs work with the standard components! Thank you!

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

    HOC is a simple JS function that takes a component and returns an enhanced component. The purpose of HOC is something that we want to reuse side effects to create enhanced components. This was my understanding about HOC. Thanks for sharing the content. Your explaining all the concepts in simple way.

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

    It is good to know that HOCs are just plain JavaScript function that accepts another function as its input and it returns(outputs) an enhanced function.

  • @jlvbcoop
    @jlvbcoop 2 года назад +3

    Understanding what HOCs are was something I had yet to do. This video perfectly explains what they are. I have understood that with the arrival of the custom Hooks the HOC begin to be replaced, this is a great clarification. Thanks for this good explanation.

    • @tapasadhikary
      @tapasadhikary  2 года назад

      Glad to hear that 👍

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

      @@tapasadhikary sir, does it mean both HOC and custom hooks can do the same task?

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

      @lindatochukwu3081 yes they certainly can. When functional component came in picture, the hook usage became much higher.

  • @shohanredwan
    @shohanredwan 2 года назад +1

    WoW... Just wow... Best of best... Great explanation with practical example. Thanks

    • @tapasadhikary
      @tapasadhikary  2 года назад

      Thank you! I’m glad you liked it ✨

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

    I have read about HOCs several times, but never clearly understood. This was well done.

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

      That’s wonderful, thank you!

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

      @@tapasadhikary I am a great fan of yours. Just messaged your react organization.

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

      @@JamiiTraffic THANK YOU! It means a lot to me. Btw, which React Organization you meant? ReactPlay? Where can I find your message?

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

      @@tapasadhikary Yes, ReactPlay. I sent it to the mail displayed on the git profile overview.

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

      Thank you! We have responded.

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

    "perfectttttttttttttttttttttttttttttttttttttttttttt" explaination is the word for your explaination.

  • @simone-oq4if
    @simone-oq4if Год назад +1

    great video, the explanation was clear and simple. thank you

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

    Excellent Explanation Tapas 👍 🫡

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

    thank you man first time got this logic

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

      You are welcome.

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

      @@tapasadhikary can you please make video on this keyword

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

      @@akhileshmishra5559 I'll cover lots on JavaScript fundamentals including the 'this' keyword in 2023. That's my primary plan to do on RUclips.

  • @sonamona2010
    @sonamona2010 2 года назад +1

    Brilliant way of explaining, thank you!

    • @tapasadhikary
      @tapasadhikary  2 года назад

      Thank you Uma and you are welcome 🙏

  • @govinda399
    @govinda399 2 года назад +1

    Highly recommended for every beginner, because other videos and even udemy courses are just confusing on this topic. This one must see ...

  • @farukabdullamunshi8358
    @farukabdullamunshi8358 2 года назад +2

    Great explanation of HOC, very useful for any React-beginner to grasp the concept.

    • @tapasadhikary
      @tapasadhikary  2 года назад

      Thanks! Glad you found it helpful 💙

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

    Sir Please make a video on lifecycle method of React class-based component.
    Also I am a bit confused. what is the fundamental difference between HOC and functional component with propsWithChildren. I can achieve similiar things using any of them. Is there any specific usecases for each of them.

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

      People hardly use class-based components now, also in interviews, we have stopped asking questions about it 😀. So I think hardly anyone would be interested in the topic. But yes, if I get more requests, I shall make it too. Thanks!
      Coming to your other questions, they are two different patterns but the end goal they are serving is quite the same.

  • @diyaagubarah3328
    @diyaagubarah3328 2 года назад +1

    Nice explanation thank you 🔥🔥.

  • @abhishekholani9579
    @abhishekholani9579 2 года назад +2

    Great Content. Explanation was very good, from basic understanding to implementation with a good example. Thankyou!

    • @tapasadhikary
      @tapasadhikary  2 года назад

      I appreciate you comment. Glad it was helpful.

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

    Wonderful.. It was/is really beneficial to me... I want to find that video to pull info from a Google Sheet where you are talking about... 😃

  • @haroonhayat4797
    @haroonhayat4797 2 года назад +1

    I see alot of videos on HOC. but Tapas Bhai you are great, clear-cut explanation 😍.
    And actually you make the web very simplified for us.

    • @tapasadhikary
      @tapasadhikary  2 года назад +1

      Thanks Bhai, means a lot. Please feel free to share in your circle for others to get it too 🙏

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

    Great video. Thank you

  • @prathameshkhadakban1485
    @prathameshkhadakban1485 2 года назад +1

    Thanks Tapas.

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

    Awesome ... recommend to watch

  • @himanshujaviya6021
    @himanshujaviya6021 2 года назад +1

    Finally after going through bunch of videos found this and understood Hoc in one shot 🔥🔥🔥🔥⚡⚡ master. Which hook do we use instead of Hocs

    • @tapasadhikary
      @tapasadhikary  2 года назад +1

      Thanks a lot 🙏
      Which hook is based on your use case. For example if you use HOC to make api call, you can create a hook to handle that instead

  • @talhaahmad1796
    @talhaahmad1796 2 года назад +1

    You deserve 1 Million

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

    Really really very good videos. I seraced diffing algo and find ur video. Then addicted and watching ur react playlist from begin.
    Thank you so much for such clean and clear explanation. Kudos to your work 🎉.
    Would like to learn unit testing from your knowledge 😊

  • @ankurworld
    @ankurworld 2 года назад +1

    Hi Tapas da,
    Excellent video.
    Simple and easy Explanation.
    Higher Order component act Like a Machine. It takes a Component as a Input and Gives Finish Product which enhances the Component. Just like a Plug-in.
    One Question : Inside HOC code there is a withFetch Function, inside it you have written a nested class component WithFetch. Is it good to write the class component outside withFetch Function. May be in a different .js file.
    My issue is why you are nesting it ??

    • @tapasadhikary
      @tapasadhikary  2 года назад

      Yes we can write it out and import too and return. Usually you write in a separate file for reusability. In our case, it was nothing such but technically you can.

  • @LernardGrigsby
    @LernardGrigsby 2 года назад +1

    I love your videos. I'm confused by the naming in line 21 of MovieList.js
    My understanding was that withFetch was the HOC and is passed the Skeleton/Wrapped MovieList component, and then returns an Enhanced MovieList component. is the convention to refer to withFetch or the exported wrapped component as the HOC? Thanks again for the videos!

    • @tapasadhikary
      @tapasadhikary  2 года назад +1

      Both works.
      1. We can do
      export default withFetch(Wrapped);
      2 We can also do,
      const Enhanced = withFetch(Wrapped);
      export default Enhanced;
      Also as we are exporting as default, we can import the enhanced component with any name elsewhere. In our example, we import with MovieList only but we could hv done as MovieListEnhanced.
      Also with... is a convention people use for HOC but it is not a strict standard.
      I hope I understood your question, Lernad. If no, kindly ask again; I'll indeed clarify.
      Thanks a lot for watching the videos 💙

  • @kevalpatel4895
    @kevalpatel4895 2 года назад

    Great content and amazing explanation, sir.

  • @gandharvaravi4371
    @gandharvaravi4371 2 года назад +1

    in APP.JS you are importing MovieList component, but inside MovieList component you are exporting HOC ? i am confused.

    • @tapasadhikary
      @tapasadhikary  2 года назад

      Hey Gandharva, as the export is a default export, you can import with any name. So while exporting we pass the MovieList component to the HOC to get a brand new component and exporting that. As we are doing default export, we can import with any name. In the video I'm using the same MovieList name. We can use any other name while importing like MovieListHOC.

    • @gandharvaravi4371
      @gandharvaravi4371 2 года назад +1

      @@tapasadhikary got it. Thank you.

  • @haseebalamrafiq9915
    @haseebalamrafiq9915 2 года назад +1

    I really like your videos sir. Love from Pakistan.
    Sir, Should I return 2 components, which we have same logic, like first is wrappedComponent and other is for TabularData component so should i do that ?
    const withFetch = (WrappedComponent, TabularData) => {
    then in return
    return (

    )
    Is this possible ? I thing by doind this then we take a advantage of HOC in real means.

    • @tapasadhikary
      @tapasadhikary  2 года назад +1

      Hi Haseeb,
      Greeting from India. I'm glad you are finding the videos helpful.
      You have a great point about the HOC usage. Yes you can do that by passing multiple components. Just a small correction in the example you showed. The jsx return should wrap them in a div or fragment.

  • @andrewaghoghovwia1948
    @andrewaghoghovwia1948 2 года назад

    Thanks for the explanation, I love it but Higher Order Components can also be used in Functional Components? Can't it?

    • @tapasadhikary
      @tapasadhikary  2 года назад +1

      Thank you!
      Yes, absolutely, you can do it.

  • @Ilayaraja-oy1vj
    @Ilayaraja-oy1vj Год назад +1

    Clear understand

  • @nikhilm5651
    @nikhilm5651 2 года назад +1

    Awesome👏👌

  • @jaycodes8790
    @jaycodes8790 2 года назад +1

    I subscribed your channel on the promise that you keep sharing the experience and knowlede to me...... 😛

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

    good one

  • @vishaljaiswal5056
    @vishaljaiswal5056 2 года назад

    how it is different from just passing the fetched data in props of the component which you are enhancing, beacuse the structure of movie list will always be same ,just the dat inside it is changing

    • @tapasadhikary
      @tapasadhikary  2 года назад

      The HOC helps take out reusable pieces. In our example, the HOC is used to take out the fetching of the movie data and enhance any component with that.
      You can do the same by repeating the fetch logic in both the components. Another way is to use hook to take out the common logic.

  • @testify7228
    @testify7228 2 года назад +1

    Please make it functional components

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

    Good video but showing subscribe every time is annoying 🎉

  • @AbhishekSingh9135
    @AbhishekSingh9135 2 года назад +1

    Thanks Tapas.