adrianhajdin / project_e_commerce

This is a code repository for the corresponding video tutorial. In this video, we're going to build a fully functional eCommerce application using commerce.js.
https://jsmastery.pro
1.88k stars 504 forks source link

Products in cart are not showing and when I click add cart button it goes blank #63

Open Alba1020 opened 2 years ago

Alba1020 commented 2 years ago

errors

I am getting these errors in console after clicking add to cart button, strangely enough when I reload the page it will show correct updated number of products. However, I still don't see anything when I go on the cart section besides the title. Anyone had this issue or maybe have any idea what is causing it

crimsoncreates commented 2 years ago

I also have this same error with total_items

kevdau03 commented 2 years ago

Same error here. Any fix OP?

Oluwa-bunmi commented 2 years ago

I'm having the same issue, anyone with possible solutions?

Uwill18 commented 2 years ago

I am having the same issues. If I figure it out I will let you guys know. I think it has something to do with :

--mounting the component --the useState hook or --the icon used

https://www.geeksforgeeks.org/what-does-it-mean-for-a-component-to-be-mounted-in-reactjs/#:~:text=Mounting%20is%20the%20initial%20phase,being%20present%20in%20the%20DOM.

https://reactjs.org/docs/react-component.html#mounting

https://daveceddia.com/usestate-hook-examples/

https://mui.com/material-ui/getting-started/installation/

Oluwa-bunmi commented 2 years ago

Hey guys, I found the reason for the blank page. In the App.js, make sure these async functions are written exactly like this, don't destructure the cart yet:

const handleAddToCart = async (productId, quantity) => { const item = await commerce.cart.add(productId, quantity); setCart(item); }; const handleUpdateCart = async (productId, quantity) => { const item = await commerce.cart.update(productId, { quantity }); setCart(item); }; const handleRemoveFromCart = async (productId) => { const item = await commerce.cart.remove(productId); setCart(item); }; const handleEmptyCart = async () => { const item = await commerce.cart.empty(); setCart(item); };

Uwill18 commented 2 years ago

Thank you @Oluwa-bunmi! That is super helpful!

developerUmair commented 1 year ago

@Oluwa-bunmi Thanks buddy, saved tons of time

Auzaiealias commented 1 year ago

Thank you @Oluwa-bunmi :)