DEV Community

Cover image for ๐Ÿ Cooking a Deliveroo clone with Next.js (React), GraphQL, Strapi and Stripe - ๐Ÿ›’ Shopping cart (part 5/7)
Ryan
Ryan

Posted on • Updated on

๐Ÿ Cooking a Deliveroo clone with Next.js (React), GraphQL, Strapi and Stripe - ๐Ÿ›’ Shopping cart (part 5/7)

Strapi Next.js tutorial

This tutorial is part of the ยซ Cooking a Deliveroo clone with Next.js (React), GraphQL, Strapi and Stripe ยป tutorial series.

Table of contents

Note: the **source code* is available on GitHub: https://github.com/strapi/strapi-examples/tree/master/nextjs-react-strapi-deliveroo-clone-tutorial*

๐Ÿ›’ Shopping Cart

All of these dishes look so tasty! What if we could add some of them in a shopping card?

Shopping card

Next, we create a new component named Cart.js:

cd ..
cd components
mkdir Cart
cd Cart
touch Cart.js

Path: /frontend/components/Cart/Cart.js

React Context

To keep track of our items added to our cart across pages we will use the React Context API. Context will allow us to manage the state of items in a provider component that will be re-used on the checkout page. The only thing React Context will not take care of for us is saving items on a page refresh, for that you would want to save the items to a cookie and restore the items from the cookie. I will work to implement this soon if requested.

The items are currently saved to a cookie called items, but the items are not restored on refresh.

Create a new directory inside our components folder:

Note: you can name your AppProvider anything related to the context you are storing (i.e. ItemsContextProvder). This would allow you to use and keep track of multiple providers/consumers throughout the app if your needs grow.

cd ..
mkdir Context
cd Context
touch AppProvider.js

Path: /frontend/components/Context/AppProvider.js

Now we will need to make some changes to use our Context throughout the application and on the dishes page.

Update the _app.js and /pages/restaurants.js files to use the AppProvider/Consumer components:

Path: /frontend/pages/_app.js

Path: /frontend/pages/restaurants.js

Now if you refresh the page you should see the Cart component to the right of the dishes.

Your Layout header should also update with the username of the logged in user and show a logout button if you are logged in.

To actually place an order the isAuthenticated prop must pass to true, in a real world app you would want to secure these routes on the server side rather than on the client side. Any props/state on the client can be altered and therefore should not expose real world data without server validation.

For the sake of the tutorial we are not currently implementing this.

Good job!

๐Ÿ’ต In the next section, you will learn how to setup Stripe for checkout and create orders: https://dev.to/ryanrez/-cooking-a-deliveroo-clone-with-nextjs-react-graphql-strapi-and-stripe----order-and-checkout-part-67-fph

Top comments (2)

Collapse
 
gameoverwill profile image
Wilfredo Pรฉrez

Hey Ryan, it's me again. I saw a cople of thing that are not correct.

1.- the code of AppProvider.js is equal than Cart.js so that should be fixed because I'm stuck and I can't continue.

2.- Next you say "Update the _app.js and /pages/restaurants.js files to use the AppProvider/Consumer components:" but below the path is "Path: /frontend/pages/_app.js" for me that was confused.

Thanks a lot for this tutorial, I hope you fix it faster as you can and I can complete :D

Collapse
 
ryanaz profile image
Ryan

Hey Wilfredo,

Could you help me understand question #1? I am looking at AppProvider and Cart.js and it looks correct to me, am I missing something?

For #2, those are the files you will be updating to use the AppProvider. You will be moving the AppProvider and AppConsumer into those files to use the React Context API. When I write out the tutorials its difficult to write out the code being added into the file so I just try to add some context on what you will be doing. You should be able to copy/paste the whole contents of the new file into yours to get it to work