Snapshot of sanity-io/hydrogen-sanity-demo: 337★, TypeScript. A starter for Hydrogen + Sanity projects
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
[!NOTE]
This repository for a Hydrogen front end is no longer maintained, but the connecting plugin Sanity Connect for Shopify as well as the shopify starter template for Sanity Studio are still in active development. See the Sanity Templates page for other ecommerce templates.
AKVA - An example storefront powered by Sanity + Hydrogen
This demo is compatible with @shopify/hydrogen >= 2023.10.0 built on Remix.
For a more complex reference example, please see our demo-ecommerce repo which features a monorepo with an embedded Sanity Studio, full live preview, more content models and added internationalisation.
For the legacy Hydrogen v1 template, please refer to the hydrogen-v1 branch.
Demo | Sanity Studio | Sanity Connect for Shopify
About
AKVA is our customized Hydrogen starter that presents a real-world example of how Sanity and Structured Content can elevate your custom Shopify storefronts.
It's designed to be used alongside our pre-configured Studio and Sanity Connect for Shopify, which syncs products and collections from your Shopify storefront to your Sanity dataset.
This starter showcases a few patterns you can adopt when creating your own custom storefronts. Use Sanity and Hydrogen to delight customers with rich, shoppable editorial experiences that best tell your story.
Features
View the feature gallery
This TypeScript demo adopts many of Hydrogen's framework conventions and third-party libraries. If you've used Hydrogen then you should hopefully feel at home here.
Fetching Sanity data
This demo comes preconfigured to use hydrogen-sanity, which adds a Sanity client to the Remix context. This enables you to fetch content from Sanity in Remix loaders and actions.
In addition to this, we've created a query utility, which uses Hydrogen's caching strategies to reduce the number of calls to Sanity's API. If no strategy is provided to the cache option, then the Hydrogen CacheLong() strategy will be used by default.
It's possible to make calls to the Sanity API either with query:
import {json, type LoaderFunctionArgs} from '@shopify/remix-oxygen';
import type {SanityProductPage} from '~/lib/sanity';
const QUERY = `*[_type == 'product' && slug.current == $slug]`;
export async function loader({params, context}: LoaderFunctionArgs) {
const cache = context.storefront.CacheLong();
const sanityContent = await context.sanity.query<SanityProductPage>({
query: QUERY,
params: {
slug: params.handle,
},
cache,
});
return json({sanityContent});
}
or directly with the Sanity client:
// <root>/app/routes/($lang).products.$handle.tsx
import {useLoaderData} from '@remix-run/react';
import {json, type LoaderFunctionArgs} from '@shopify/remix-oxygen';
import type {SanityProductPage} from '~/lib/sanity';
const QUERY = `*[_type == 'product' && slug.current == $slug]`;
export async function loader({params, context}: LoaderFunctionArgs) {
const sanityContent = await context.sanity.client.fetch<SanityProductPage>(
QUERY,
{
slug: params.handle,
},
);
return json({sanityContent});
}
export default function Product() {
const {sanityContent} = useLoaderData<typeof loader>();
// ...
}
This uses our official @sanity/client library, so it supports all the methods you would expect to interact with Sanity API's
You can also use the defer and Await utilities from Remix to prioritize critical data:
// <root>/app/routes/($lang).products.$handle.tsx
import {Suspense} from 'react';
import {Await, useLoaderData} from '@remix-run/react';
import {defer, type LoaderFunctionArgs} from '@shopify/remix-oxygen';
import type {SanityProductPage, LessImportant} from '~/lib/sanity';
const QUERY = `*[_type == 'product' && slug.current == $slug]`;
const ANOTHER_QUERY = `*[references($id)]`;
export async function loader({params, context}: LoaderFunctionArgs) {
/* Await the important content here */
const sanityContent = await context.sanity.query<SanityProductPage>({
query: QUERY,
params: {
slug: params.handle,
},
});
/* This can wait - so don't await it - keep it as a promise */
const moreSanityContent = context.sanity.query<LessImportant>({
query: ANOTHER_QUERY,
params: {
id: sanityContent._id,
},
});
return defer({sanityContent});
}
export default function Product() {
const {sanityContent, moreSanityContent} = useLoaderData<typeof loader>();
return (
<div>
<Content value={sanityContent} />
{/* Wrap promises in a Suspense fallback and await them */}
<Suspense fallback={<Spinner />}>
<Await resolve={moreSanityContent}>
{(content) => <MoreContent value={content} />}
</Await>
</Suspense>
</div>
);
}
Live Preview
In addition to providing a Sanity Client, hydrogen-sanity can utilize Sanity's realtime content platform to give editors live-as-you-type previewing of their content. That way they can see, in context, how their changes will appear directly in the storefront.
You can read more about configuration in the hydrogen-sanity documentation.
This demo is set up with an example of live preview on the ($lang)._index.tsx route.
Opinions
We've taken the following opinions on how we've approached this demo.
Shopify is the source of truth for non-editorial content
For products, this includes titles, handles, variant images and product options.
For collections, this includes titles and collection images.
Shopify data stored in our Sanity dataset is used to improve the editor experience
This allows us to display things like product status, prices and even inventory levels right in our Sanity Studio.
Our application always fetches from Shopify's Storefront API at runtime to ensure we have the freshest data possible, especially important when dealing with fast-moving inventory.
Collections are managed entirely by Shopify
Shopify is used to handle collection rules and sort orders.
Product options are customized in Sanity
Data added to specific product options (for example, associating a hex value with the color 'Red', or a string value with the Poster size 'A2') is done in Sanity.
We treat this quite simply and manage these in a dedicated field within the Settings section of our studio. We also make sure to query this field whenever querying products in our Sanity dataset.
This could alternatively be managed with Shopify's metatags.
We don't surface Shopify HTML descriptions and metatags
For this demo, Shopify tags are used purely as a non-visual organizational tool (to drive automated collections) and we use Portable Text over Shopify's description HTML field. However, Hydrogen makes it very easy to surface these in your application if needed.
Non-product (regular) pages are managed entirely by Sanity
Shopify pages and blog posts (associated with the Online Store) channel aren't used in this demo. A dedicated page document type in Sanity has been created for this purpose.
We query our Sanity dataset when building sitemap.xml entries
We use Sanity as the source of truth when determining whether a product or collection page is visible.
This gives us the flexibility to add custom logic to control whether certain pages should be visible or not. For example, if you wanted to hide product pages within a specific date range, or hide collections that didn't have any editorial modules assigned to them.
Analytics
We've set up basic Shopify Analytics on this demo. The hasUserConsent boolean in <root>/app/root.tsx is set to true - you'll likely need to set up user consent based on the relevant regulations for your storefront.
Getting started
Requirements:
Node.js version 16.14.0 or higher
npm (or your package manager of choice, such as yarn or pnpm)
Getting Started
Create a .env file, based on the .env.template file.
Install dependencies and start the development server
npm i
npm run dev
Visit the development environment running at http://localhost:3000.
For information on running production builds and deployment, see the Hydrogen documentation.
License
This repository is published under the MIT license.
Does sanity-io/hydrogen-sanity-demo have any tags?
TopGit's last sync did not record any GitHub topics for sanity-io/hydrogen-sanity-demo. GitHub topics appear in the right sidebar of a repository page; that's the authoritative place to check.
How active is development on sanity-io/hydrogen-sanity-demo?
The most recent commit recorded on sanity-io/hydrogen-sanity-demo was 2.4 years ago, based on the GitHub push timestamp. The repository has 89 forks — one of the better signals of community interest.
How many stars does sanity-io/hydrogen-sanity-demo have?
sanity-io/hydrogen-sanity-demo has 337 GitHub stars — refresh the page for the live number, or check github.com/sanity-io/hydrogen-sanity-demo. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
What language is sanity-io/hydrogen-sanity-demo written in?
sanity-io/hydrogen-sanity-demo is written primarily in TypeScript. GitHub's language field is based on the largest share of bytes in the default branch.
Where do I read more about sanity-io/hydrogen-sanity-demo?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/sanity-io/hydrogen-sanity-demo is the definitive source.
Read full README in the tab above.
Still deciding about hydrogen-sanity-demo?
One click hands the question to an AI along with this page — see what it says about hydrogen-sanity-demo.