Skip to content

davidgannerud/indide-commercelayer-sanity

Repository files navigation

Commerce Layer Sanity Template

Release Netlify Status

A multi-country ecommerce template built with Commerce Layer, Nextjs, Sanity studio, and deployed to Netlify.

A preview image showing the frontend demo with some products.

Want to learn more about how we built the first version of this template and how you can build yours? Then you should read this article on our blog.


Table of Contents


Template Features

  • A user-friendly and performant ecommerce storefront (with products, categories, i18n, cart, checkout, etc.) built with TypeScript, Nextjs, Commerce Layer React Components library, and Tailwind CSS.
  • International transactional functionalities powered by Commerce Layer API.
  • Structured content and a customizable Sanity authoring environment (including demo data), accessible on <yourdomain>/studio.
  • PSD2-compliant and production-ready checkout functionality powered by Commerce Layer React Checkout application.
  • Commerce seed data powered by Commerce Layer CLI Seeder plugin.
  • React18 and Next13 support.
  • Type-checking and code linting.
  • Localization support (including Italian and French translations).
  • SEO and progressive web application (PWA) support.
  • Comprehensive installation and usage documentation.
  • One-click deployment configuration to Netlify.
Storefront (/ page) Sanity studio (/studio page)
A preview image showing the Commerce Layer dashboard. A preview image showing the Sanity studio.

Important Files and Folders

Path Description
.env.local.sample Example file with all the required environment variables.
/components React components for the storefront.
/locale/index.ts Config file for the storefront's transalations (en-US, it-IT, and fr-FR).
/hooks/GetToken.ts React hook file to fetch a salesChannel token from Commerce Layer and save as a cookie.
/pages/[countryCode]/[lang]/index.tsx Index page for the storefront (country selector and product listing).
/pages/[countryCode]/[lang]/[product].tsx Page for all product items (image, product information, and variant selection).
/pages/[countryCode]/[lang]/cart.tsx Cart page for for the storefront with link to checkout.
/data Exported data to seed your Sanity studio with.
/utils/sanity/api.ts Where all data from Sanity is fetched using groq queries.
sanity.config.ts Config file for Sanity Studio.
sanity.cli.ts Config file for Sanity CLI.
/pages/studio/[[...index]].tsx Where Sanity Studio is mounted using next-sanity.
/schemas Where Sanity Studio gets its content types from.
/plugins Where the advanced Sanity Studio customization is setup.

Getting Started

The quickest way to get up and running is to use the deploy button below to set up and deploy automatically to Netlify. Afterward, you will add some seed data to Commerce Layer and Sanity studio. The deploy button will clone this repository and ask you to enter all the required environment variables. Alternatively, you can clone this repository, configure the template, import the dataset into your Sanity studio, import some seed commerce data into your Commerce Layer organization, and deploy your application. The installation guides below will show you how to achieve this.

Deploy to Netlify

Installation Guide

  1. Clone this repository (learn how to do this).

  2. Rename the /env.local.example file to .env.local and add the following credentials:

Variable Description
BUILD_LANGUAGES The supported locales (the default is en-US, it-IT, fr-FR).
NEXT_PUBLIC_SITE_NAME Optional name for the <title> head tag (you can also edit this directly in the code).
NEXT_PUBLIC_SITE_URL Optional URL of your deployed project for the og:url meta property (you can also edit this directly in the code).
NEXT_PUBLIC_CL_CLIENT_ID Your Commerce Layer sales channels application client ID (you can create this automatically by following this onboarding guide or manually on the Commerce Layer dashboard.
NEXT_PUBLIC_CL_ENDPOINT Your Commerce Layer organization's base endpoint (you can copy this on the Commerce Layer dashboard.
NEXT_PUBLIC_SANITY_PROJECT_TITLE Optional name for the <title> head tag in Sanity studio (you can also edit this directly in the code).
NEXT_PUBLIC_SANITY_PROJECT_ID Sanity project ID (you can get this from sanity.io/manage after creating a new project with the npm -y create sanity@latest CLI command or this quick start wizard.
NEXT_PUBLIC_SANITY_DATASET Sanity dataset (you can get this from sanity.io/manage).
NEXT_PUBLIC_SANITY_API_VERSION Sanity API version in the ISO date format, e.g 2022-02-15 (you can learn more about this in Sanity docs).
NEXT_PUBLIC_SANITY_TOKEN Sanity API token (you can get this from sanity.io/manage).
  1. Run the command below to install the required dependencies:
pnpm install
  1. Run the command below to start the development server:
pnpm run dev

This will run the storefront at localhost:3000 and studio at localhost:3000/studio.

Import Seed Commerce Layer Data

  1. Create a free Commerce Layer account. If you already have an active account, kindly skip to Step 3.

  2. Create a new organization or follow the onboarding tutorial guide.

  3. Create a new Integrations application with Name set to CLI and Role set to admin.

  4. In your newly created application, copy the Client ID, Client secret, and Base endpoint credentials.

  5. Install the Commerce Layer CLI which is available as an npm package or yarn package using the command below:

//npm
npm install -g @commercelayer/cli

//yarn
yarn global add @commercelayer/cli
  1. Log into your application via the CLI using the previously created CLI credentials like so:
cl applications:login -o <organizationSlug> -i <clientId> -s <clientSecret> -a <applicationAlias>
  1. Install the seeder plugin using the command below:
cl plugins:install seeder
  1. Run the command below to import three demo markets (UK, USA, and Europe), a set of SKUs, related price lists, related prices, stock locations, and inventory into your organization using the multi_market business model.
cl seed -b multi_market
  1. To see the commands for other seeder options, type the command below:
cl --help

Import Seed Sanity Studio Content

Kindly follow the steps below to add the dataset the template was developed with (structured text and image files for all Sanity schema documents). This data will match the commerce data in Commerce Layer (SKUs, prices, etc.).

  1. Extract the production.tar.gz file in the /data directory using the command below:
tar -xf ./data/production.tar.gz

The extracted folder name should look like production-export-2021-02-26t14-15-56-557z.

  1. Run the command below to import the data.ndjson file in the extracted folder.
sanity dataset import ./data/<name of extracted folder>/data.ndjson <your_dataset>
  1. Check the Sanity studio now on localhost:3000/studio to preview the imported content.

Note

The Sanity content data includes a collection of sample countries, products, variants, sizes, taxons, taxonomies, catalogs, and product images created during development. To get an access token for the Nextjs storefront, we fetch the scope (market ID) from the Market Id attribute set in the Sanity country document schema.

So, when you seed your Commerce Layer organization, some markets will be created with a different market ID from the one imported into Sanity. Hence, you will need to fetch the valid market scope's number (4 digits) from the sales channel tab of your organization in the Commerce Layer dashboard and update the appropriate country model in Sanity. For example, the Europe Market on Commerce Layer and Italy country model on Sanity. Failure to do this will result in an invalid scope authentication error when you try to access the storefront.

Commerce Layer dashboard (sales channel tab) Sanity studio (country model schema)
A preview image showing the Commerce Layer dashboard. A preview image showing the sanity studio.

Warning

You must access the application using the right locale slug for the country you have configured (e.g., localhost:3000/it/it-it or localhost:3000/us/en-us). Currently, Italy and France are the only countries with a default language different from en-us. Hence their slug is localhost:3000/it/it-it and localhost:3000/fr/fr-fr. Other countries will have the en-us slug (e.g., localhost:3000/ng/en-us). If you want to set up other countries, then create a market for it on Commerce Layer alongside the associated resources and update the Market ID on Sanity, as mentioned earlier.

Add Custom Commerce and Content Data

Eventually, you would want to set up commerce data in Commerce Layer manually and add your content data in Sanity based on your use case. To ensure the template runs smoothly, kindly do the following:

  1. In the Commerce Layer dashboard, create a market (if you need a new one) associated with a stock location, stock item, price list, price, and SKU(s) and add a new Country content in Sanity using a valid market ID attribute.

  2. In the Sanity studio, add the content for the new SKUs as a Variant and associate them with a Product content model. You can then go ahead to update other content models like Taxon, Taxonomy, and Catalog as you deem fit.

  3. Ensure to read our onboarding guide, manual configuration guide, or data models documentation to learn more about how Commerce Layer works and the relationships between each API resource.

Note

If you want to start a fresh project, we recommend you use a fresh Commerce Layer organization and a fresh Sanity studio without seed data so you can add your data from scratch. You can then use the seed data as a guide to set up all the required resources in Commerce Layer. If you have existing commerce data, you can also leverage our Import API or CLI Import Plugin.

Contributors Guide

  1. Fork this repository (learn how to do this here).

  2. Clone the forked repository like so:

git clone https://github.com/<your username>/commercelayer-sanity-template.git && cd commercelayer-sanity-template
  1. Make your changes and create a pull request (learn how to do this).

  2. Someone will attend to your pull request and provide some feedback.

Need Help?

  1. Join Commerce Layer's Slack community.

  2. Create an issue in this repository.

  3. Ping us on Twitter.

License

This repository is published under the MIT license.


Commerce Layer Logo

Commerce Layer is a multi-market commerce API and order management system that lets you add global shopping capabilities to any website, mobile app, chatbot, wearable, voice, or IoT device, with ease. Compose your stack with the best-of-breed tools you already mastered and love. Make any experience shoppable, anywhere, through a blazing-fast, enterprise-grade, and secure API.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published