✨ Strapi MCP is now Generally Available - let your agents manage your Strapi content ✨

App3 min read

Deliveroo clone with Next.js, GraphQL, Strapi and Stripe (5/7)

November 12, 2018Updated on May 22, 2026
🍝 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, S[trapi 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 cart?

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://blog.strapi.io/strapi-next-order-checkout.

Ryan BelkeSoftware Applications Engineer @ Charles Schwab

Ryan is an active member of the Strapi community and he's been contributing at a very early stage by writing awesome tutorial series to help fellow Strapier grow and learn.

App·26 min read

Build a To-Do App with Strapi GraphQL Plugin and Flutter

Learn to build a To-Do app using Strapi GraphQL plugin and Flutter, covering setup, queries, mutations, and UI development.

·August 30, 2023
App·16 min read

How to build a To-do App using Next.js and Strapi

In this tutorial you will learn how to build a simple To-do App using Next.js and Strapi.

·August 29, 2023
How to setup Amazon S3 Upload Provider Plugin for your Strapi App
AppBeginner·14 min read

How to Set up Amazon S3 Upload Provider Plugin for Your Strapi App

Learn how to set up the Amazon S3 Upload Provider Plugin for your Strapi App to work with an Amazon S3 storage bucket.

·July 3, 2023