React Shopping Cart Tutorial | Context API with useReducer Hook in React JS

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ก.ค. 2024
  • #reactshoppingcart #useContext#ReactJSProject #useReducer
    Build a Shopping Cart Project in React JS in one video. We will use Context API with useReducer Hook for State Management. Learn Hooks like createContext and useContext. We will learn add to cart functionality along with sorting and filtering products by search also.
    Source Code -
    github.com/piyush-eon/React-s...
    Live Site -
    shopping-cart-with-reactjs.ne...
    If any questions, ask here -
    / roadsidecoder
    Context API Tutorial -
    • React Context API with...
    React Router Tutorial -
    • React Router Dom [ Ful...
    00:00:00 Intro
    00:00:24 Project Overview
    00:02:53 Initialize new React App
    00:03:23 Setup React Bootstrap
    00:05:29 Header Component
    00:12:05 Creating Page Routes
    00:14:43 Setup Context API
    00:17:10 Generating Products JSON
    00:20:09 useReducer Hook
    00:23:43 useContext Hook
    00:24:19 Home Page UI
    00:28:13 Filter Component UI
    00:30:55 Rating Component UI
    00:35:27 SingleProduct Component UI
    00:40:04 Add / Remove from Cart Functionality
    00:45:20 Header Cart Dropdown
    00:50:21 Cart Page
    01:00:00 Change Cart Quantity Functionality
    01:01:53 Filters Implementation
    01:02:18 Filters useReducer
    01:12:22 Transform Products Logic
    01:16:44 Mobile Responsive Styles
    01:17:56 Outro
    Movie App in React JS and Material UI -
    • Movies and TV Series S...
    Quiz App in React JS and Material UI -
    • Quiz App in React JS w...
    Dictionary App in React JS and Material UI -
    • 12 Language Dictionary...
    Learn React From Scratch -
    • React JS Workshop Day ...

ความคิดเห็น • 439

  • @RoadsideCoder
    @RoadsideCoder  2 หลายเดือนก่อน

    My Complete Frontend Interview Prep Course - roadsidecoder.com/course-details (50% Discount for limited time)

  • @rajat4002
    @rajat4002 3 ปีที่แล้ว +165

    Whoever is watching this video, let me tell you one thing. You'll be asked to make such project in your frontend interview. Make the most use of this video. Thank you for putting such an amazing content on TH-cam bhai 😍❤️

    • @RoadsideCoder
      @RoadsideCoder  3 ปีที่แล้ว +11

      Yes, It'll be very helpful in machine coding round.

    • @Sky-yy
      @Sky-yy 3 ปีที่แล้ว +4

      Thank you for your comment to let others know the importance of this video bro

    • @sudhanshumishra935
      @sudhanshumishra935 2 ปีที่แล้ว +8

      Yes, i got an assignment which was exactly similar to this 3 days ago, but sadly i coudln't implement the filter functionality......anyways now i have learnt about state management through this video

    • @shujathaliirfan2662
      @shujathaliirfan2662 2 ปีที่แล้ว

      I agree

    • @ssumit196
      @ssumit196 2 ปีที่แล้ว +1

      thanks buddy, I was just wondering about this.

  • @vamsikrishna7957
    @vamsikrishna7957 2 ปีที่แล้ว +19

    Great tutorial!!If anyone is getting a blue background in Navbar dropdown badge,set {10}..the background color gets removed.

  • @Dhivyathaya
    @Dhivyathaya ปีที่แล้ว

    Thank you for uploading it, Piyush. It's really helpful for us to understand the concept. I can see the hard work and effort you put into it. Once again thank you.

  • @debasmitamallick6489
    @debasmitamallick6489 ปีที่แล้ว +1

    This project is just awesome! I learned a lot from this video. Thanks a ton❤

  • @BrijeshSingh-dp1ku
    @BrijeshSingh-dp1ku 2 ปีที่แล้ว +7

    Please keep making such tutorials these are really great 👏

  • @jugalsuthar9751
    @jugalsuthar9751 3 ปีที่แล้ว +4

    such a great session I learn so many things from this video...thanks and make more videos like this..

  • @purangurung4559
    @purangurung4559 2 ปีที่แล้ว +33

    for route we can use

    • @davidbaraiya2649
      @davidbaraiya2649 ปีที่แล้ว +1

      Yes this is v6

    • @sumittimori834
      @sumittimori834 ปีที่แล้ว +2

      You could've told for FAKERJS alternative faker doesn't work anymore or is it

    • @chetandhadd321
      @chetandhadd321 ปีที่แล้ว

      @@sumittimori834 they bro...im getting error The above error occurred in the component any help

    • @AmitGhosh-lj3oc
      @AmitGhosh-lj3oc ปีที่แล้ว

      @@sumittimori834 did you find any alternative?

    • @PeterMehr
      @PeterMehr 11 หลายเดือนก่อน

      @@AmitGhosh-lj3oc You can use @faker-js/faker instead:
      --> install it with:
      npm install @faker-js/faker
      --> then import it in Context.js:
      import { faker } from '@faker-js/faker';
      --> and then use it in Context.js:
      const products = [...Array(20)].map(() => ({
      id: faker.string.uuid(),
      name: faker.commerce.productName(),
      price: faker.commerce.price(),
      image: faker.image.url(),
      inStock: faker.helpers.arrayElement([0, 3, 5, 6, 7]),
      fastDelivery: faker.datatype.boolean(),
      ratings: faker.helpers.arrayElement([1, 2, 3, 4, 5]),
      }));

  • @oncoding4520
    @oncoding4520 ปีที่แล้ว

    Have been seen some of your videos and you are really a great teacher. Please keep doing some more content for us :)

  • @Hrit
    @Hrit ปีที่แล้ว

    This is actually a very clean way to write a shopping cart. Thanks for the video man!

    • @user-bk3hp4zw4l
      @user-bk3hp4zw4l ปีที่แล้ว

      Bro can you forward the link of your shopping cart code bro

  • @AshishGupta-be2yz
    @AshishGupta-be2yz ปีที่แล้ว

    Very amazing project with indepth explanation. Learned many of new things related to reducer. Thanks a lot bhai.

  • @anonimato1987
    @anonimato1987 ปีที่แล้ว

    I am so greatful for the "!important" trick. This is the first time I'm seeing this. So useful!!! Thank you so much!

  • @mishka.g8462
    @mishka.g8462 ปีที่แล้ว

    That's really great!! keep going!!!🤩

  • @elad3958
    @elad3958 2 ปีที่แล้ว +1

    Thank you brother, I became an instant fan of your work/channel.

  • @parvathyvd
    @parvathyvd ปีที่แล้ว

    Thank you so much for making such a wonderful project.

  • @jenso413
    @jenso413 ปีที่แล้ว +8

    For anyone else curious about the Array(prod.inStock).keys(); evidently keys() is also an array method! I thought it was just an object method. What he is doing here is creating an array the length of the number of products in stock. For example, if there was 5 products in stock, there would be an array with 5 elements (all undefined initially). Then, the keys method converts an array to an iterable object with the array keys(indexes). This is then spread into an array and mapped over, essentially making each array element an index.
    I think a simpler and more understandable solution would simply be to use the index parameter from the map function, the result seems to be the same.

  • @sohadmad1823
    @sohadmad1823 ปีที่แล้ว +7

    I can't express how much I am grateful to you, you really saved my life! Thank you very much, you are the best instructor I've learnt with him!

  • @user-vu9dl3vn7l
    @user-vu9dl3vn7l หลายเดือนก่อน

    It's a great video! Thanks a lot!

  • @Admin-up4hh
    @Admin-up4hh ปีที่แล้ว +1

    Very underated Video . This is what I wanted... Thanks ..💯

  • @niranjanjathar3748
    @niranjanjathar3748 2 ปีที่แล้ว

    Thanks for such a great video on context api

  • @2784raj
    @2784raj ปีที่แล้ว

    you are awesome mentor, well done mate!

  • @ndahayokevin7626
    @ndahayokevin7626 2 ปีที่แล้ว

    Incredible I love your tutorials, you are on of the best Tech youtubers I like most

  • @IvinAustan
    @IvinAustan ปีที่แล้ว

    Thanks a lot, such an great video with nice explanation. 👍

  • @noobCoder26
    @noobCoder26 2 ปีที่แล้ว +1

    I am learning a lot from this channel man .I dont understand why this channel is so underrated

    • @RoadsideCoder
      @RoadsideCoder  2 ปีที่แล้ว +1

      You can change that by sharing it to more people 😁🙏

    • @noobCoder26
      @noobCoder26 2 ปีที่แล้ว

      @@RoadsideCoder I am doing that for sure

  • @sk199
    @sk199 ปีที่แล้ว

    your projects are super helpful brother..⭐❤

  • @BrijeshSingh-dp1ku
    @BrijeshSingh-dp1ku 2 ปีที่แล้ว

    Best resource for React 🔥🙌

  • @mohitsaud2071
    @mohitsaud2071 2 ปีที่แล้ว +2

    Thank you for this wonderful tutorial.

  • @chiranjeevichowdary5948
    @chiranjeevichowdary5948 3 ปีที่แล้ว

    Waited for this a long time

  • @vaibhavjadhav1702
    @vaibhavjadhav1702 10 หลายเดือนก่อน

    thank you for this amazing project🙂

  • @tirielross
    @tirielross ปีที่แล้ว

    Thank you very much professor for this amazing project, this opens and expands my knowledge to know more about Reducer, provider state, etc.

  • @MrAndykofi
    @MrAndykofi 2 ปีที่แล้ว

    Great job, thanks for sharing

  • @bardhan.abhirup
    @bardhan.abhirup ปีที่แล้ว +2

    Hey, firstly, thanks a lot for your tutorials and interviews. I genuinely feel like I've learnt a lot through them Having said that, if you don't mind a bit of feedback, your naming conventions and general consistency needs some attention. I feel it's all over the place. I know during the interview demos you tend to code faster but in these expositions when you have the luxury of time, i think it's worth paying attention to since you have a lot of viewers. Just my opinion. Regardless of that, I highly appreciate the effort you put in to your content. Thanks once again!

    • @RoadsideCoder
      @RoadsideCoder  ปีที่แล้ว +2

      Hey, Thanks a lot for your feedback. And I have improved this in my recent videos after realising this. ❤️

  • @alextalha_
    @alextalha_ 2 ปีที่แล้ว +1

    the best video by contextApi

  • @shamaunnabi3508
    @shamaunnabi3508 2 ปีที่แล้ว +1

    You are Just Amazing ....We need More Tutorial Like This....Please Upload More Beginner Projects

  • @user-pb5dy5th3z
    @user-pb5dy5th3z 2 ปีที่แล้ว +4

    Thank you for your kind explanation! btw I wonder if there is a way to lose focus on the green cart button at "50:15" when moving to the cart page. I tried document.activeElement.blur() but it doesn't work. Probably it's hard to control the bootstrap component?

  • @abubakaryasin8610
    @abubakaryasin8610 3 ปีที่แล้ว +2

    I learned a lot from you
    Great content

  • @mma-dost
    @mma-dost 2 ปีที่แล้ว +1

    Thank you Bhaiya for this tutorial. Really great video 🔥🙏👌❤️👍👍

  • @krutidewda3152
    @krutidewda3152 4 หลายเดือนก่อน

    very useful video. Thankyou so much for this.

    • @RoadsideCoder
      @RoadsideCoder  4 หลายเดือนก่อน

      Thanks! I have created an indepth course covering all such topics - roadsidecoder.com/course-details

  • @abdulrakib9906
    @abdulrakib9906 3 ปีที่แล้ว

    Really great video. I am looking something like that. Thank you very much..

  • @alanouri9965
    @alanouri9965 ปีที่แล้ว

    Thank you man!

  • @Ravikumar-wv2xq
    @Ravikumar-wv2xq ปีที่แล้ว +2

    hello sir great tutorial perfect combination of useReducer and contextAPI. it's working same as like as redux.

    • @vinayakjaimini7716
      @vinayakjaimini7716 6 หลายเดือนก่อน

      hiii bro i am facing problem in running this project can u help

  • @garima6571
    @garima6571 ปีที่แล้ว

    Great man

  • @l.seciltuncay7921
    @l.seciltuncay7921 ปีที่แล้ว

    great tutorial ⭐⭐⭐⭐⭐ thanks

  • @baridzimaximillem6743
    @baridzimaximillem6743 2 ปีที่แล้ว

    You are amazing man keep it up

  • @tanjimanim2391
    @tanjimanim2391 ปีที่แล้ว +10

    This is a great tutorial. I used this in my project and I want to point out two things.
    1. the store/global state will be gone once the page refreshes. Use localstorage to store that.
    2. The reducer function used in this video are not pure functions, as you are assigning values on reducers, which is not a good practice.

    • @oussamaaitboulahna4849
      @oussamaaitboulahna4849 ปีที่แล้ว +1

      Hi brother , can u tell me how did u store ur data into localstorage and fetch it again , cuz for me im only get [object,object] ??

    • @tanjimanim2391
      @tanjimanim2391 ปีที่แล้ว +1

      @@oussamaaitboulahna4849 share your code brother

    • @shariqansari4056
      @shariqansari4056 ปีที่แล้ว +2

      @@oussamaaitboulahna4849 Convert your data into string , then store in local storage.

    • @oussamaaitboulahna4849
      @oussamaaitboulahna4849 ปีที่แล้ว

      @@shariqansari4056 Oh Thanks Man

    • @abbaskagdi1
      @abbaskagdi1 ปีที่แล้ว +3

      This comment needs to be on top

  • @parmaryash4406
    @parmaryash4406 2 ปีที่แล้ว +1

    Amazing

  • @souleymanecisse8644
    @souleymanecisse8644 2 ปีที่แล้ว

    Great content , thanks for sharing

  • @korndev6862
    @korndev6862 2 ปีที่แล้ว +1

    Great Tutorial. i would like the react + typescript + combine reducers tutorial plz.

  • @iqbal5942
    @iqbal5942 3 ปีที่แล้ว +1

    you deserve more subscribers and likes 💖

    • @RoadsideCoder
      @RoadsideCoder  3 ปีที่แล้ว +1

      Thanks man. You can support me by sharing this to people who need it.

  • @azizulhakim1534
    @azizulhakim1534 2 ปีที่แล้ว +1

    amazing content brother.
    You deserve more subs,
    One request: if possible please use a loud microphone.

    • @RoadsideCoder
      @RoadsideCoder  2 ปีที่แล้ว

      Thanks brother, I'll improve the audio quality 🤘

  • @meidadb5992
    @meidadb5992 ปีที่แล้ว

    Thank you❤️

  • @vaibhavsharma8012
    @vaibhavsharma8012 6 หลายเดือนก่อน

    Good Project

  • @NCS8331
    @NCS8331 6 หลายเดือนก่อน

    thank you

  • @namethse01
    @namethse01 ปีที่แล้ว

    thanks bro, though manything outdate and alot update after time, but it still a good tutorial to start and easy to understand

  • @saurabhtiwari-kg9vn
    @saurabhtiwari-kg9vn ปีที่แล้ว

    Bhai kya khate ho 🤔 itna energy rahta hai 😄
    Bhokal video h 🔥🔥

  • @miansaqlain8360
    @miansaqlain8360 ปีที่แล้ว

    Thank you Sir

  • @navinkumarsahu1159
    @navinkumarsahu1159 ปีที่แล้ว

    Please bring more such contents

  • @chafikgouasmia8089
    @chafikgouasmia8089 2 ปีที่แล้ว

    Thanks dear oracle : )

  • @mprasanth18
    @mprasanth18 ปีที่แล้ว +2

    In interviews is it okay to use plain css modules instead of bootstrap?

  • @phuquang8558
    @phuquang8558 2 ปีที่แล้ว

    very good

  • @shujathaliirfan2662
    @shujathaliirfan2662 3 ปีที่แล้ว +1

    superrrr bro

  • @sushmitagupta
    @sushmitagupta 2 ปีที่แล้ว +7

    Great tutorial! It helps me a lot while adding some feature in my E-commerce project but I'm using my own database and I have not added the "inStock" in my database so can you please tell me how can I add that and use in the qty increment feature of cart cards.

  • @saichaitanyaemandi6386
    @saichaitanyaemandi6386 ปีที่แล้ว

    bro thanks a lot

  • @akashawasthi9515
    @akashawasthi9515 2 ปีที่แล้ว

    utub recommending this piece of work

  • @sahanan7117
    @sahanan7117 2 ปีที่แล้ว +1

    Hi..
    In creating page router, I have written same code as yours but their is error in my output... Please help me out

  • @huyenminh2631
    @huyenminh2631 2 ปีที่แล้ว

    From VietNam thanks you so much

  • @MrPeepa
    @MrPeepa 2 ปีที่แล้ว +1

    "A is only ever to be used as the child of element, never rendered directly. Please wrap your in a "
    what to do if i get this error?? because if i wrap with it says [home] is not a react component or react.fragment

  • @emonislam1660
    @emonislam1660 2 ปีที่แล้ว

    Great

  • @anhduc97hn
    @anhduc97hn ปีที่แล้ว

    can someone explain the `onClick` props in rating component for me please? why they're so different in `filter` and `rating` components? thanks!

  • @nishantbindhani9434
    @nishantbindhani9434 11 หลายเดือนก่อน

    how is ur dropdown menu position like this (end of dropdown menu container is aligned with the end of dropdown button)

  • @alphonsesossou4283
    @alphonsesossou4283 ปีที่แล้ว

    Thanks so much for this awesome course. I am making an excellent use of it. Only one minore issue. Children props is flagged with the error message "Children is missing in props validation". I am using react app created through latest vite. Any hint on what to add to the app so that error disappears? I should mention that the context provider function in jsx nor js.

  • @islamel7adidy898
    @islamel7adidy898 ปีที่แล้ว

    بتتكلم اسرع من حياتي م براحه ي غالي

  • @iqbal5942
    @iqbal5942 3 ปีที่แล้ว +1

    Amazing video bro ❤️🙌

  • @simranmundada
    @simranmundada 2 ปีที่แล้ว +1

    I am getting module not found error which says can't resolve faker in my project

  • @ABDULLASHAIK-yp8qf
    @ABDULLASHAIK-yp8qf ปีที่แล้ว +2

    bro alignRight from drop down is not working .please help me

  • @celticspyd5887
    @celticspyd5887 4 หลายเดือนก่อน

    sir i want to know If a customer clicks on order btn to order and the order list should received at the admins page/panel without any database or backend possible?? if yes how sir?

  • @iliyasahmedfarooqui6717
    @iliyasahmedfarooqui6717 2 ปีที่แล้ว

    Hey bro i am trying run your Project i am getting error
    Cannot read properties of undefined (reading 'seed')

  • @TajminurRahmanmeshadowscream
    @TajminurRahmanmeshadowscream 2 ปีที่แล้ว +2

    Great tutorial. So much helpful. I have a question though. How to initialize state with products from API call? Because you're loading dummy products which are synchronised call. How about an async call using API? I tried but the initial state in useReducer initialized first before the products from API get loaded. What do you think?

    • @RoadsideCoder
      @RoadsideCoder  2 ปีที่แล้ว +1

      You can do it the same way, that dummy data is also the result of an api call from faker

  • @kuldeepsingh-wd7pe
    @kuldeepsingh-wd7pe ปีที่แล้ว

    great

  • @sushilkumar-ef7gh
    @sushilkumar-ef7gh ปีที่แล้ว

    Only when components need lot of different state than , its recommended to use state hook else switch on reducer or redux

  • @sanyamjain4777
    @sanyamjain4777 2 ปีที่แล้ว

    Can i use api endpoint to get fake data will it work the same?

  • @Insane.18_7
    @Insane.18_7 9 หลายเดือนก่อน

    Hi bro thank you so much. You helped me a lot by sharing this content ❤. Can I know one thing, is this responsive, I mean is this compatible for smaller devices like mobile applications?

  • @himankshu
    @himankshu 5 หลายเดือนก่อน

    So what will happen if you add some items and then hard refresh the page? Does the cart items updated to its initial state? If yes, how would you fix it?

  • @kacperj780
    @kacperj780 2 ปีที่แล้ว

    hey how do you import components by just clicking at underlined red text in your code? is it some extension?

    • @width19
      @width19 ปีที่แล้ว

      same, i didnt also see where he imported bootstrap

  • @lle5159
    @lle5159 2 ปีที่แล้ว +6

    This is too awesome, I've learned a ton by this video. Thank you very much!
    Just a little question: `alignRight` in is not working in my end. Has anyone caught the same thing?

    • @kelongFX
      @kelongFX 2 ปีที่แล้ว +1

      yes it says something about the dom i didnt quite get it

    • @lle5159
      @lle5159 2 ปีที่แล้ว

      @@kelongFX I use CSS to align the dropdown menu, that I set position: relative for container and position: absolute for dropdown-menu

    • @cat_onthe_
      @cat_onthe_ 2 ปีที่แล้ว +6

      Remove 'alignRight'
      and add
      Worked for me.

    • @andress9525
      @andress9525 2 ปีที่แล้ว

      You can add inline styling to the tag like so: style={{ alignRight: true }}

    • @nobodyneedstoknow128
      @nobodyneedstoknow128 ปีที่แล้ว

      align={'end'}

  • @viditkumarjain1994
    @viditkumarjain1994 2 ปีที่แล้ว

    Hi try to make the same getting error when trying to add or remove to cart button

  • @artemkhasin3735
    @artemkhasin3735 2 ปีที่แล้ว +1

    Is it possible to specify versions of all nmp's you are using, and react version as well.
    Every time I'm installing something it is not working the propper way. I follow the code line by line and check each character but the result is different.
    I actually stoped wne you installed "faker", since it is not working at all, it just says module is not found

  • @manojsuggala4666
    @manojsuggala4666 ปีที่แล้ว +1

    Good video with clear Explanation.
    I tried implementing this project, But I didn’t get the output. I got an error saying that:
    Module not found ‘Faker’ can’t resolve in src/context/context.js.
    Even I install the package by npm install faker, the error is not re-solving.
    Can any one help me in resolving the error
    Thanks in Advance.

  • @ronyroy3587
    @ronyroy3587 3 หลายเดือนก่อน

    How I will create increment and decrement button . Alternative of select and option. Can you tell me. I created but not working properly

  • @muhammadsibtain4855
    @muhammadsibtain4855 ปีที่แล้ว

    (6:61388) autoprefixer: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated.
    How to Fix this ??

  • @codedude8253
    @codedude8253 ปีที่แล้ว

    whenever I add items to cart in Context it works fine , but when I go to Cart page the cart Context gets reset and it becomes empty.What should I do ? I thik its happening due to when I route to cart page the page gets refreshed.

  • @GauravPatel-kh1sq
    @GauravPatel-kh1sq 2 ปีที่แล้ว +1

    Very Nice explanation with real project. thank you. Can you create/share video with Backend API calling like realword application?

    • @RoadsideCoder
      @RoadsideCoder  2 ปีที่แล้ว +1

      I already have a mern stack tutorial series. You can check it out!

  • @devsingal8373
    @devsingal8373 2 ปีที่แล้ว

    thank you bhaiya so much this hepls a ton, i was stuck in my cart app but this helped me get a new perspective
    thank you so much
    can you also make full working ecommerce website video plzzzzzzzzzzzzzzzzzzzzzzzzzzzz

  • @sarthakkanungo9790
    @sarthakkanungo9790 ปีที่แล้ว

    why it is throwing error in single product component ,Cannot read properties of undefined (reading 'some')

  • @priyankashingne8143
    @priyankashingne8143 ปีที่แล้ว

    This is really helpful video i m trying to create a same project but i m getting problem to access faker

  • @wayofexcellence3629
    @wayofexcellence3629 ปีที่แล้ว

    how can be used local storage to persist state in cart

  • @webber5629
    @webber5629 ปีที่แล้ว

    what to do if we need to fetch data from api using axios coz faker is no more

  • @ritik3700
    @ritik3700 ปีที่แล้ว

    so, I am getting error on image: faker.random.image( ), it says this is not a function. Does anyone has a solution of this problem.

  • @purusharma8192
    @purusharma8192 ปีที่แล้ว

    Please make more react projects....thanks a lot
    btw are you in akshay saini discord voice chat on first day😁

  • @SagarTakoresdt
    @SagarTakoresdt 2 ปีที่แล้ว

    40:29 Can you please explain how this destructing work while using spread operator, understand, but fill like something missing

    • @RoadsideCoder
      @RoadsideCoder  2 ปีที่แล้ว +1

      You can try to google. Will find awesome resources