forked from crowetic/commerce
Compare commits
32 Commits
add-useopt
...
main
Author | SHA1 | Date | |
---|---|---|---|
|
28f9a645bd | ||
|
9f4fdbb600 | ||
|
63725d82d9 | ||
|
6946bf713a | ||
|
7f8f9ff1a3 | ||
|
675942141b | ||
|
88762ba1bc | ||
|
386392be02 | ||
|
3a26bae429 | ||
|
cf413a51fc | ||
|
8d4cc9a9a7 | ||
|
ce004c05fa | ||
|
b7e9e1c7e3 | ||
|
cb99695b72 | ||
|
815bea2c1a | ||
|
64ca2ac790 | ||
|
694c5c17ba | ||
|
556aa77649 | ||
|
84224f8d7e | ||
|
94b85fca6f | ||
|
37cb5e38da | ||
|
9a4c995bb6 | ||
|
dd7449f975 | ||
|
cea56f608b | ||
|
0ebf071826 | ||
|
d7a4f3dc46 | ||
|
ec21369389 | ||
|
7c1b34abdb | ||
|
7fd9ad8a8c | ||
|
42d5d8efcf | ||
|
a5de9173e8 | ||
|
887d437795 |
@ -1,6 +1,4 @@
|
|||||||
COMPANY_NAME="Vercel Inc."
|
COMPANY_NAME="Vercel Inc."
|
||||||
TWITTER_CREATOR="@vercel"
|
|
||||||
TWITTER_SITE="https://nextjs.org/commerce"
|
|
||||||
SITE_NAME="Next.js Commerce"
|
SITE_NAME="Next.js Commerce"
|
||||||
SHOPIFY_REVALIDATION_SECRET=""
|
SHOPIFY_REVALIDATION_SECRET=""
|
||||||
SHOPIFY_STOREFRONT_ACCESS_TOKEN=""
|
SHOPIFY_STOREFRONT_ACCESS_TOKEN=""
|
||||||
|
23
.eslintrc.js
23
.eslintrc.js
@ -1,23 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
extends: ['next', 'prettier'],
|
|
||||||
plugins: ['unicorn'],
|
|
||||||
rules: {
|
|
||||||
'no-unused-vars': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
args: 'after-used',
|
|
||||||
caughtErrors: 'none',
|
|
||||||
ignoreRestSiblings: true,
|
|
||||||
vars: 'all'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'prefer-const': 'error',
|
|
||||||
'react-hooks/exhaustive-deps': 'error',
|
|
||||||
'unicorn/filename-case': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
case: 'kebabCase'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
};
|
|
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
@ -1,6 +0,0 @@
|
|||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: 'github-actions'
|
|
||||||
directory: '/'
|
|
||||||
schedule:
|
|
||||||
interval: 'weekly'
|
|
35
.github/workflows/test.yml
vendored
35
.github/workflows/test.yml
vendored
@ -1,35 +0,0 @@
|
|||||||
name: test
|
|
||||||
on: pull_request
|
|
||||||
|
|
||||||
# Cancel in progress workflows on pull_requests.
|
|
||||||
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repo
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Set node version
|
|
||||||
uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
node-version-file: '.nvmrc'
|
|
||||||
- name: Set pnpm version
|
|
||||||
uses: pnpm/action-setup@v2
|
|
||||||
with:
|
|
||||||
run_install: false
|
|
||||||
version: 7
|
|
||||||
- name: Cache node_modules
|
|
||||||
id: node-modules-cache
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: '**/node_modules'
|
|
||||||
key: node-modules-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
- name: Install dependencies
|
|
||||||
if: steps.node-modules-cache.outputs.cache-hit != 'true'
|
|
||||||
run: pnpm install --no-frozen-lockfile
|
|
||||||
- name: Run tests
|
|
||||||
run: pnpm test
|
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -36,3 +36,4 @@ yarn-error.log*
|
|||||||
# typescript
|
# typescript
|
||||||
*.tsbuildinfo
|
*.tsbuildinfo
|
||||||
next-env.d.ts
|
next-env.d.ts
|
||||||
|
.env*.local
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
.vercel
|
|
||||||
.next
|
|
||||||
pnpm-lock.yaml
|
|
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
@ -2,8 +2,8 @@
|
|||||||
"typescript.tsdk": "node_modules/typescript/lib",
|
"typescript.tsdk": "node_modules/typescript/lib",
|
||||||
"typescript.enablePromptUseWorkspaceTsdk": true,
|
"typescript.enablePromptUseWorkspaceTsdk": true,
|
||||||
"editor.codeActionsOnSave": {
|
"editor.codeActionsOnSave": {
|
||||||
"source.fixAll": true,
|
"source.fixAll": "explicit",
|
||||||
"source.organizeImports": true,
|
"source.organizeImports": "explicit",
|
||||||
"source.sortMembers": true
|
"source.sortMembers": "explicit"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
27
README.md
27
README.md
@ -1,19 +1,10 @@
|
|||||||
[](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fvercel%2Fcommerce&project-name=commerce&repo-name=commerce&demo-title=Next.js%20Commerce&demo-url=https%3A%2F%2Fdemo.vercel.store&demo-image=https%3A%2F%2Fbigcommerce-demo-asset-ksvtgfvnd.vercel.app%2Fbigcommerce.png&env=COMPANY_NAME,SHOPIFY_REVALIDATION_SECRET,SHOPIFY_STORE_DOMAIN,SHOPIFY_STOREFRONT_ACCESS_TOKEN,SITE_NAME,TWITTER_CREATOR,TWITTER_SITE)
|
[](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fvercel%2Fcommerce&project-name=commerce&repo-name=commerce&demo-title=Next.js%20Commerce&demo-url=https%3A%2F%2Fdemo.vercel.store&demo-image=https%3A%2F%2Fbigcommerce-demo-asset-ksvtgfvnd.vercel.app%2Fbigcommerce.png&env=COMPANY_NAME,SHOPIFY_REVALIDATION_SECRET,SHOPIFY_STORE_DOMAIN,SHOPIFY_STOREFRONT_ACCESS_TOKEN,SITE_NAME)
|
||||||
|
|
||||||
# Next.js Commerce
|
# Next.js Commerce
|
||||||
|
|
||||||
A Next.js 14 and App Router-ready ecommerce template featuring:
|
A high-performance, server-rendered Next.js App Router ecommerce application.
|
||||||
|
|
||||||
- Next.js App Router
|
This template uses React Server Components, Server Actions, `Suspense`, `useOptimistic`, and more.
|
||||||
- Optimized for SEO using Next.js's Metadata
|
|
||||||
- React Server Components (RSCs) and Suspense
|
|
||||||
- Server Actions for mutations
|
|
||||||
- Edge Runtime
|
|
||||||
- New fetching and caching paradigms
|
|
||||||
- Dynamic OG images
|
|
||||||
- Styling with Tailwind CSS
|
|
||||||
- Checkout and payments with Shopify
|
|
||||||
- Automatic light/dark mode based on system settings
|
|
||||||
|
|
||||||
<h3 id="v1-note"></h3>
|
<h3 id="v1-note"></h3>
|
||||||
|
|
||||||
@ -27,12 +18,16 @@ Vercel is happy to partner and work with any commerce provider to help them get
|
|||||||
|
|
||||||
- Shopify (this repository)
|
- Shopify (this repository)
|
||||||
- [BigCommerce](https://github.com/bigcommerce/nextjs-commerce) ([Demo](https://next-commerce-v2.vercel.app/))
|
- [BigCommerce](https://github.com/bigcommerce/nextjs-commerce) ([Demo](https://next-commerce-v2.vercel.app/))
|
||||||
|
- [Ecwid by Lightspeed](https://github.com/Ecwid/ecwid-nextjs-commerce/) ([Demo](https://ecwid-nextjs-commerce.vercel.app/))
|
||||||
|
- [Geins](https://github.com/geins-io/vercel-nextjs-commerce) ([Demo](https://geins-nextjs-commerce-starter.vercel.app/))
|
||||||
- [Medusa](https://github.com/medusajs/vercel-commerce) ([Demo](https://medusa-nextjs-commerce.vercel.app/))
|
- [Medusa](https://github.com/medusajs/vercel-commerce) ([Demo](https://medusa-nextjs-commerce.vercel.app/))
|
||||||
|
- [Prodigy Commerce](https://github.com/prodigycommerce/nextjs-commerce) ([Demo](https://prodigy-nextjs-commerce.vercel.app/))
|
||||||
- [Saleor](https://github.com/saleor/nextjs-commerce) ([Demo](https://saleor-commerce.vercel.app/))
|
- [Saleor](https://github.com/saleor/nextjs-commerce) ([Demo](https://saleor-commerce.vercel.app/))
|
||||||
- [Shopware](https://github.com/shopwareLabs/vercel-commerce) ([Demo](https://shopware-vercel-commerce-react.vercel.app/))
|
- [Shopware](https://github.com/shopwareLabs/vercel-commerce) ([Demo](https://shopware-vercel-commerce-react.vercel.app/))
|
||||||
- [Swell](https://github.com/swellstores/verswell-commerce) ([Demo](https://verswell-commerce.vercel.app/))
|
- [Swell](https://github.com/swellstores/verswell-commerce) ([Demo](https://verswell-commerce.vercel.app/))
|
||||||
- [Umbraco](https://github.com/umbraco/Umbraco.VercelCommerce.Demo) ([Demo](https://vercel-commerce-demo.umbraco.com/))
|
- [Umbraco](https://github.com/umbraco/Umbraco.VercelCommerce.Demo) ([Demo](https://vercel-commerce-demo.umbraco.com/))
|
||||||
- [Wix](https://github.com/wix/nextjs-commerce) ([Demo](https://wix-nextjs-commerce.vercel.app/))
|
- [Wix](https://github.com/wix/headless-templates/tree/main/nextjs/commerce) ([Demo](https://wix-nextjs-commerce.vercel.app/))
|
||||||
|
- [Fourthwall](https://github.com/FourthwallHQ/vercel-commerce) ([Demo](https://vercel-storefront.fourthwall.app/))
|
||||||
|
|
||||||
> Note: Providers, if you are looking to use similar products for your demo, you can [download these assets](https://drive.google.com/file/d/1q_bKerjrwZgHwCw0ovfUMW6He9VtepO_/view?usp=sharing).
|
> Note: Providers, if you are looking to use similar products for your demo, you can [download these assets](https://drive.google.com/file/d/1q_bKerjrwZgHwCw0ovfUMW6He9VtepO_/view?usp=sharing).
|
||||||
|
|
||||||
@ -41,9 +36,13 @@ Vercel is happy to partner and work with any commerce provider to help them get
|
|||||||
Integrations enable upgraded or additional functionality for Next.js Commerce
|
Integrations enable upgraded or additional functionality for Next.js Commerce
|
||||||
|
|
||||||
- [Orama](https://github.com/oramasearch/nextjs-commerce) ([Demo](https://vercel-commerce.oramasearch.com/))
|
- [Orama](https://github.com/oramasearch/nextjs-commerce) ([Demo](https://vercel-commerce.oramasearch.com/))
|
||||||
|
|
||||||
- Upgrades search to include typeahead with dynamic re-rendering, vector-based similarity search, and JS-based configuration.
|
- Upgrades search to include typeahead with dynamic re-rendering, vector-based similarity search, and JS-based configuration.
|
||||||
- Search runs entirely in the browser for smaller catalogs or on a CDN for larger.
|
- Search runs entirely in the browser for smaller catalogs or on a CDN for larger.
|
||||||
|
|
||||||
|
- [React Bricks](https://github.com/ReactBricks/nextjs-commerce-rb) ([Demo](https://nextjs-commerce.reactbricks.com/))
|
||||||
|
- Edit pages, product details, and footer content visually using [React Bricks](https://www.reactbricks.com) visual headless CMS.
|
||||||
|
|
||||||
## Running locally
|
## Running locally
|
||||||
|
|
||||||
You will need to use the environment variables [defined in `.env.example`](.env.example) to run Next.js Commerce. It's recommended you use [Vercel Environment Variables](https://vercel.com/docs/concepts/projects/environment-variables) for this, but a `.env` file is all that is necessary.
|
You will need to use the environment variables [defined in `.env.example`](.env.example) to run Next.js Commerce. It's recommended you use [Vercel Environment Variables](https://vercel.com/docs/concepts/projects/environment-variables) for this, but a `.env` file is all that is necessary.
|
||||||
@ -73,4 +72,4 @@ Your app should now be running on [localhost:3000](http://localhost:3000/).
|
|||||||
|
|
||||||
## Vercel, Next.js Commerce, and Shopify Integration Guide
|
## Vercel, Next.js Commerce, and Shopify Integration Guide
|
||||||
|
|
||||||
You can use this comprehensive [integration guide](http://vercel.com/docs/integrations/shopify) with step-by-step instructions on how to configure Shopify as a headless CMS using Next.js Commerce as your headless Shopify storefront on Vercel.
|
You can use this comprehensive [integration guide](https://vercel.com/docs/integrations/ecommerce/shopify) with step-by-step instructions on how to configure Shopify as a headless CMS using Next.js Commerce as your headless Shopify storefront on Vercel.
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
import Footer from 'components/layout/footer';
|
import Footer from 'components/layout/footer';
|
||||||
import { Suspense } from 'react';
|
|
||||||
|
|
||||||
export default function Layout({ children }: { children: React.ReactNode }) {
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
||||||
return (
|
return (
|
||||||
<Suspense>
|
<>
|
||||||
<div className="w-full">
|
<div className="w-full">
|
||||||
<div className="mx-8 max-w-2xl py-20 sm:mx-auto">
|
<div className="mx-8 max-w-2xl py-20 sm:mx-auto">{children}</div>
|
||||||
<Suspense>{children}</Suspense>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<Footer />
|
<Footer />
|
||||||
</Suspense>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import OpengraphImage from 'components/opengraph-image';
|
import OpengraphImage from 'components/opengraph-image';
|
||||||
import { getPage } from 'lib/shopify';
|
import { getPage } from 'lib/shopify';
|
||||||
|
|
||||||
export const runtime = 'edge';
|
|
||||||
|
|
||||||
export default async function Image({ params }: { params: { page: string } }) {
|
export default async function Image({ params }: { params: { page: string } }) {
|
||||||
const page = await getPage(params.page);
|
const page = await getPage(params.page);
|
||||||
const title = page.seo?.title || page.title;
|
const title = page.seo?.title || page.title;
|
||||||
|
@ -4,13 +4,10 @@ import Prose from 'components/prose';
|
|||||||
import { getPage } from 'lib/shopify';
|
import { getPage } from 'lib/shopify';
|
||||||
import { notFound } from 'next/navigation';
|
import { notFound } from 'next/navigation';
|
||||||
|
|
||||||
export const runtime = 'edge';
|
export async function generateMetadata(props: {
|
||||||
|
params: Promise<{ page: string }>;
|
||||||
export async function generateMetadata({
|
|
||||||
params
|
|
||||||
}: {
|
|
||||||
params: { page: string };
|
|
||||||
}): Promise<Metadata> {
|
}): Promise<Metadata> {
|
||||||
|
const params = await props.params;
|
||||||
const page = await getPage(params.page);
|
const page = await getPage(params.page);
|
||||||
|
|
||||||
if (!page) return notFound();
|
if (!page) return notFound();
|
||||||
@ -26,7 +23,8 @@ export async function generateMetadata({
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async function Page({ params }: { params: { page: string } }) {
|
export default async function Page(props: { params: Promise<{ page: string }> }) {
|
||||||
|
const params = await props.params;
|
||||||
const page = await getPage(params.page);
|
const page = await getPage(params.page);
|
||||||
|
|
||||||
if (!page) return notFound();
|
if (!page) return notFound();
|
||||||
@ -34,7 +32,7 @@ export default async function Page({ params }: { params: { page: string } }) {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<h1 className="mb-8 text-5xl font-bold">{page.title}</h1>
|
<h1 className="mb-8 text-5xl font-bold">{page.title}</h1>
|
||||||
<Prose className="mb-8" html={page.body as string} />
|
<Prose className="mb-8" html={page.body} />
|
||||||
<p className="text-sm italic">
|
<p className="text-sm italic">
|
||||||
{`This document was last updated on ${new Intl.DateTimeFormat(undefined, {
|
{`This document was last updated on ${new Intl.DateTimeFormat(undefined, {
|
||||||
year: 'numeric',
|
year: 'numeric',
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { revalidate } from 'lib/shopify';
|
import { revalidate } from 'lib/shopify';
|
||||||
import { NextRequest, NextResponse } from 'next/server';
|
import { NextRequest, NextResponse } from 'next/server';
|
||||||
|
|
||||||
export const runtime = 'edge';
|
|
||||||
|
|
||||||
export async function POST(req: NextRequest): Promise<NextResponse> {
|
export async function POST(req: NextRequest): Promise<NextResponse> {
|
||||||
return revalidate(req);
|
return revalidate(req);
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,17 @@
|
|||||||
@tailwind base;
|
@import 'tailwindcss';
|
||||||
@tailwind components;
|
|
||||||
@tailwind utilities;
|
@plugin "@tailwindcss/container-queries";
|
||||||
|
@plugin "@tailwindcss/typography";
|
||||||
|
|
||||||
|
@layer base {
|
||||||
|
*,
|
||||||
|
::after,
|
||||||
|
::before,
|
||||||
|
::backdrop,
|
||||||
|
::file-selector-button {
|
||||||
|
border-color: var(--color-gray-200, currentColor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
html {
|
html {
|
||||||
@ -17,5 +28,5 @@
|
|||||||
a,
|
a,
|
||||||
input,
|
input,
|
||||||
button {
|
button {
|
||||||
@apply focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-neutral-400 focus-visible:ring-offset-2 focus-visible:ring-offset-neutral-50 dark:focus-visible:ring-neutral-600 dark:focus-visible:ring-offset-neutral-900;
|
@apply focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-neutral-400 focus-visible:ring-offset-2 focus-visible:ring-offset-neutral-50 dark:focus-visible:ring-neutral-600 dark:focus-visible:ring-offset-neutral-900;
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,14 @@
|
|||||||
import Navbar from 'components/layout/navbar';
|
import { CartProvider } from 'components/cart/cart-context';
|
||||||
import { GeistSans } from 'geist/font';
|
import { Navbar } from 'components/layout/navbar';
|
||||||
import { ensureStartsWith } from 'lib/utils';
|
import { WelcomeToast } from 'components/welcome-toast';
|
||||||
import { ReactNode, Suspense } from 'react';
|
import { GeistSans } from 'geist/font/sans';
|
||||||
|
import { getCart } from 'lib/shopify';
|
||||||
|
import { ReactNode } from 'react';
|
||||||
|
import { Toaster } from 'sonner';
|
||||||
import './globals.css';
|
import './globals.css';
|
||||||
|
import { baseUrl } from 'lib/utils';
|
||||||
|
|
||||||
const { TWITTER_CREATOR, TWITTER_SITE, SITE_NAME } = process.env;
|
const { SITE_NAME } = process.env;
|
||||||
const baseUrl = process.env.NEXT_PUBLIC_VERCEL_URL
|
|
||||||
? `https://${process.env.NEXT_PUBLIC_VERCEL_URL}`
|
|
||||||
: 'http://localhost:3000';
|
|
||||||
const twitterCreator = TWITTER_CREATOR ? ensureStartsWith(TWITTER_CREATOR, '@') : undefined;
|
|
||||||
const twitterSite = TWITTER_SITE ? ensureStartsWith(TWITTER_SITE, 'https://') : undefined;
|
|
||||||
|
|
||||||
export const metadata = {
|
export const metadata = {
|
||||||
metadataBase: new URL(baseUrl),
|
metadataBase: new URL(baseUrl),
|
||||||
@ -20,25 +19,28 @@ export const metadata = {
|
|||||||
robots: {
|
robots: {
|
||||||
follow: true,
|
follow: true,
|
||||||
index: true
|
index: true
|
||||||
},
|
}
|
||||||
...(twitterCreator &&
|
|
||||||
twitterSite && {
|
|
||||||
twitter: {
|
|
||||||
card: 'summary_large_image',
|
|
||||||
creator: twitterCreator,
|
|
||||||
site: twitterSite
|
|
||||||
}
|
|
||||||
})
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default async function RootLayout({ children }: { children: ReactNode }) {
|
export default async function RootLayout({
|
||||||
|
children
|
||||||
|
}: {
|
||||||
|
children: ReactNode;
|
||||||
|
}) {
|
||||||
|
// Don't await the fetch, pass the Promise to the context provider
|
||||||
|
const cart = getCart();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<html lang="en" className={GeistSans.variable}>
|
<html lang="en" className={GeistSans.variable}>
|
||||||
<body className="bg-neutral-50 text-black selection:bg-teal-300 dark:bg-neutral-900 dark:text-white dark:selection:bg-pink-500 dark:selection:text-white">
|
<body className="bg-neutral-50 text-black selection:bg-teal-300 dark:bg-neutral-900 dark:text-white dark:selection:bg-pink-500 dark:selection:text-white">
|
||||||
<Navbar />
|
<CartProvider cartPromise={cart}>
|
||||||
<Suspense>
|
<Navbar />
|
||||||
<main>{children}</main>
|
<main>
|
||||||
</Suspense>
|
{children}
|
||||||
|
<Toaster closeButton />
|
||||||
|
<WelcomeToast />
|
||||||
|
</main>
|
||||||
|
</CartProvider>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import OpengraphImage from 'components/opengraph-image';
|
import OpengraphImage from 'components/opengraph-image';
|
||||||
|
|
||||||
export const runtime = 'edge';
|
|
||||||
|
|
||||||
export default async function Image() {
|
export default async function Image() {
|
||||||
return await OpengraphImage();
|
return await OpengraphImage();
|
||||||
}
|
}
|
||||||
|
16
app/page.tsx
16
app/page.tsx
@ -1,27 +1,21 @@
|
|||||||
import { Carousel } from 'components/carousel';
|
import { Carousel } from 'components/carousel';
|
||||||
import { ThreeItemGrid } from 'components/grid/three-items';
|
import { ThreeItemGrid } from 'components/grid/three-items';
|
||||||
import Footer from 'components/layout/footer';
|
import Footer from 'components/layout/footer';
|
||||||
import { Suspense } from 'react';
|
|
||||||
|
|
||||||
export const runtime = 'edge';
|
|
||||||
|
|
||||||
export const metadata = {
|
export const metadata = {
|
||||||
description: 'High-performance ecommerce store built with Next.js, Vercel, and Shopify.',
|
description:
|
||||||
|
'High-performance ecommerce store built with Next.js, Vercel, and Shopify.',
|
||||||
openGraph: {
|
openGraph: {
|
||||||
type: 'website'
|
type: 'website'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default async function HomePage() {
|
export default function HomePage() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<ThreeItemGrid />
|
<ThreeItemGrid />
|
||||||
<Suspense>
|
<Carousel />
|
||||||
<Carousel />
|
<Footer />
|
||||||
<Suspense>
|
|
||||||
<Footer />
|
|
||||||
</Suspense>
|
|
||||||
</Suspense>
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,23 +1,21 @@
|
|||||||
import type { Metadata } from 'next';
|
import type { Metadata } from 'next';
|
||||||
import { notFound } from 'next/navigation';
|
import { notFound } from 'next/navigation';
|
||||||
import { Suspense } from 'react';
|
|
||||||
|
|
||||||
import { GridTileImage } from 'components/grid/tile';
|
import { GridTileImage } from 'components/grid/tile';
|
||||||
import Footer from 'components/layout/footer';
|
import Footer from 'components/layout/footer';
|
||||||
import { Gallery } from 'components/product/gallery';
|
import { Gallery } from 'components/product/gallery';
|
||||||
|
import { ProductProvider } from 'components/product/product-context';
|
||||||
import { ProductDescription } from 'components/product/product-description';
|
import { ProductDescription } from 'components/product/product-description';
|
||||||
import { HIDDEN_PRODUCT_TAG } from 'lib/constants';
|
import { HIDDEN_PRODUCT_TAG } from 'lib/constants';
|
||||||
import { getProduct, getProductRecommendations } from 'lib/shopify';
|
import { getProduct, getProductRecommendations } from 'lib/shopify';
|
||||||
import { Image } from 'lib/shopify/types';
|
import { Image } from 'lib/shopify/types';
|
||||||
import Link from 'next/link';
|
import Link from 'next/link';
|
||||||
|
import { Suspense } from 'react';
|
||||||
|
|
||||||
export const runtime = 'edge';
|
export async function generateMetadata(props: {
|
||||||
|
params: Promise<{ handle: string }>;
|
||||||
export async function generateMetadata({
|
|
||||||
params
|
|
||||||
}: {
|
|
||||||
params: { handle: string };
|
|
||||||
}): Promise<Metadata> {
|
}): Promise<Metadata> {
|
||||||
|
const params = await props.params;
|
||||||
const product = await getProduct(params.handle);
|
const product = await getProduct(params.handle);
|
||||||
|
|
||||||
if (!product) return notFound();
|
if (!product) return notFound();
|
||||||
@ -51,7 +49,8 @@ export async function generateMetadata({
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async function ProductPage({ params }: { params: { handle: string } }) {
|
export default async function ProductPage(props: { params: Promise<{ handle: string }> }) {
|
||||||
|
const params = await props.params;
|
||||||
const product = await getProduct(params.handle);
|
const product = await getProduct(params.handle);
|
||||||
|
|
||||||
if (!product) return notFound();
|
if (!product) return notFound();
|
||||||
@ -74,14 +73,14 @@ export default async function ProductPage({ params }: { params: { handle: string
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<ProductProvider>
|
||||||
<script
|
<script
|
||||||
type="application/ld+json"
|
type="application/ld+json"
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: JSON.stringify(productJsonLd)
|
__html: JSON.stringify(productJsonLd)
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<div className="mx-auto max-w-screen-2xl px-4">
|
<div className="mx-auto max-w-(--breakpoint-2xl) px-4">
|
||||||
<div className="flex flex-col rounded-lg border border-neutral-200 bg-white p-8 md:p-12 lg:flex-row lg:gap-8 dark:border-neutral-800 dark:bg-black">
|
<div className="flex flex-col rounded-lg border border-neutral-200 bg-white p-8 md:p-12 lg:flex-row lg:gap-8 dark:border-neutral-800 dark:bg-black">
|
||||||
<div className="h-full w-full basis-full lg:basis-4/6">
|
<div className="h-full w-full basis-full lg:basis-4/6">
|
||||||
<Suspense
|
<Suspense
|
||||||
@ -90,7 +89,7 @@ export default async function ProductPage({ params }: { params: { handle: string
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Gallery
|
<Gallery
|
||||||
images={product.images.map((image: Image) => ({
|
images={product.images.slice(0, 5).map((image: Image) => ({
|
||||||
src: image.url,
|
src: image.url,
|
||||||
altText: image.altText
|
altText: image.altText
|
||||||
}))}
|
}))}
|
||||||
@ -99,17 +98,15 @@ export default async function ProductPage({ params }: { params: { handle: string
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="basis-full lg:basis-2/6">
|
<div className="basis-full lg:basis-2/6">
|
||||||
<ProductDescription product={product} />
|
<Suspense fallback={null}>
|
||||||
|
<ProductDescription product={product} />
|
||||||
|
</Suspense>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Suspense>
|
<RelatedProducts id={product.id} />
|
||||||
<RelatedProducts id={product.id} />
|
|
||||||
</Suspense>
|
|
||||||
</div>
|
</div>
|
||||||
<Suspense>
|
<Footer />
|
||||||
<Footer />
|
</ProductProvider>
|
||||||
</Suspense>
|
|
||||||
</>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -127,7 +124,11 @@ async function RelatedProducts({ id }: { id: string }) {
|
|||||||
key={product.handle}
|
key={product.handle}
|
||||||
className="aspect-square w-full flex-none min-[475px]:w-1/2 sm:w-1/3 md:w-1/4 lg:w-1/5"
|
className="aspect-square w-full flex-none min-[475px]:w-1/2 sm:w-1/3 md:w-1/4 lg:w-1/5"
|
||||||
>
|
>
|
||||||
<Link className="relative h-full w-full" href={`/product/${product.handle}`}>
|
<Link
|
||||||
|
className="relative h-full w-full"
|
||||||
|
href={`/product/${product.handle}`}
|
||||||
|
prefetch={true}
|
||||||
|
>
|
||||||
<GridTileImage
|
<GridTileImage
|
||||||
alt={product.title}
|
alt={product.title}
|
||||||
label={{
|
label={{
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
const baseUrl = process.env.NEXT_PUBLIC_VERCEL_URL
|
import { baseUrl } from 'lib/utils';
|
||||||
? `https://${process.env.NEXT_PUBLIC_VERCEL_URL}`
|
|
||||||
: 'http://localhost:3000';
|
|
||||||
|
|
||||||
export default function robots() {
|
export default function robots() {
|
||||||
return {
|
return {
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
import OpengraphImage from 'components/opengraph-image';
|
import OpengraphImage from 'components/opengraph-image';
|
||||||
import { getCollection } from 'lib/shopify';
|
import { getCollection } from 'lib/shopify';
|
||||||
|
|
||||||
export const runtime = 'edge';
|
export default async function Image({
|
||||||
|
params
|
||||||
export default async function Image({ params }: { params: { collection: string } }) {
|
}: {
|
||||||
|
params: { collection: string };
|
||||||
|
}) {
|
||||||
const collection = await getCollection(params.collection);
|
const collection = await getCollection(params.collection);
|
||||||
const title = collection?.seo?.title || collection?.title;
|
const title = collection?.seo?.title || collection?.title;
|
||||||
|
|
||||||
|
@ -6,13 +6,10 @@ import Grid from 'components/grid';
|
|||||||
import ProductGridItems from 'components/layout/product-grid-items';
|
import ProductGridItems from 'components/layout/product-grid-items';
|
||||||
import { defaultSort, sorting } from 'lib/constants';
|
import { defaultSort, sorting } from 'lib/constants';
|
||||||
|
|
||||||
export const runtime = 'edge';
|
export async function generateMetadata(props: {
|
||||||
|
params: Promise<{ collection: string }>;
|
||||||
export async function generateMetadata({
|
|
||||||
params
|
|
||||||
}: {
|
|
||||||
params: { collection: string };
|
|
||||||
}): Promise<Metadata> {
|
}): Promise<Metadata> {
|
||||||
|
const params = await props.params;
|
||||||
const collection = await getCollection(params.collection);
|
const collection = await getCollection(params.collection);
|
||||||
|
|
||||||
if (!collection) return notFound();
|
if (!collection) return notFound();
|
||||||
@ -24,13 +21,12 @@ export async function generateMetadata({
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async function CategoryPage({
|
export default async function CategoryPage(props: {
|
||||||
params,
|
params: Promise<{ collection: string }>;
|
||||||
searchParams
|
searchParams?: Promise<{ [key: string]: string | string[] | undefined }>;
|
||||||
}: {
|
|
||||||
params: { collection: string };
|
|
||||||
searchParams?: { [key: string]: string | string[] | undefined };
|
|
||||||
}) {
|
}) {
|
||||||
|
const searchParams = await props.searchParams;
|
||||||
|
const params = await props.params;
|
||||||
const { sort } = searchParams as { [key: string]: string };
|
const { sort } = searchParams as { [key: string]: string };
|
||||||
const { sortKey, reverse } = sorting.find((item) => item.slug === sort) || defaultSort;
|
const { sortKey, reverse } = sorting.find((item) => item.slug === sort) || defaultSort;
|
||||||
const products = await getCollectionProducts({ collection: params.collection, sortKey, reverse });
|
const products = await getCollectionProducts({ collection: params.collection, sortKey, reverse });
|
||||||
|
10
app/search/children-wrapper.tsx
Normal file
10
app/search/children-wrapper.tsx
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import { useSearchParams } from 'next/navigation';
|
||||||
|
import { Fragment } from 'react';
|
||||||
|
|
||||||
|
// Ensure children are re-rendered when the search query changes
|
||||||
|
export default function ChildrenWrapper({ children }: { children: React.ReactNode }) {
|
||||||
|
const searchParams = useSearchParams();
|
||||||
|
return <Fragment key={searchParams.get('q')}>{children}</Fragment>;
|
||||||
|
}
|
@ -2,21 +2,30 @@ import Footer from 'components/layout/footer';
|
|||||||
import Collections from 'components/layout/search/collections';
|
import Collections from 'components/layout/search/collections';
|
||||||
import FilterList from 'components/layout/search/filter';
|
import FilterList from 'components/layout/search/filter';
|
||||||
import { sorting } from 'lib/constants';
|
import { sorting } from 'lib/constants';
|
||||||
|
import ChildrenWrapper from './children-wrapper';
|
||||||
import { Suspense } from 'react';
|
import { Suspense } from 'react';
|
||||||
|
|
||||||
export default function SearchLayout({ children }: { children: React.ReactNode }) {
|
export default function SearchLayout({
|
||||||
|
children
|
||||||
|
}: {
|
||||||
|
children: React.ReactNode;
|
||||||
|
}) {
|
||||||
return (
|
return (
|
||||||
<Suspense>
|
<>
|
||||||
<div className="mx-auto flex max-w-screen-2xl flex-col gap-8 px-4 pb-4 text-black md:flex-row dark:text-white">
|
<div className="mx-auto flex max-w-(--breakpoint-2xl) flex-col gap-8 px-4 pb-4 text-black md:flex-row dark:text-white">
|
||||||
<div className="order-first w-full flex-none md:max-w-[125px]">
|
<div className="order-first w-full flex-none md:max-w-[125px]">
|
||||||
<Collections />
|
<Collections />
|
||||||
</div>
|
</div>
|
||||||
<div className="order-last min-h-screen w-full md:order-none">{children}</div>
|
<div className="order-last min-h-screen w-full md:order-none">
|
||||||
|
<Suspense fallback={null}>
|
||||||
|
<ChildrenWrapper>{children}</ChildrenWrapper>
|
||||||
|
</Suspense>
|
||||||
|
</div>
|
||||||
<div className="order-none flex-none md:order-last md:w-[125px]">
|
<div className="order-none flex-none md:order-last md:w-[125px]">
|
||||||
<FilterList list={sorting} title="Sort by" />
|
<FilterList list={sorting} title="Sort by" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Footer />
|
<Footer />
|
||||||
</Suspense>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -2,14 +2,17 @@ import Grid from 'components/grid';
|
|||||||
|
|
||||||
export default function Loading() {
|
export default function Loading() {
|
||||||
return (
|
return (
|
||||||
<Grid className="grid-cols-2 lg:grid-cols-3">
|
<>
|
||||||
{Array(12)
|
<div className="mb-4 h-6" />
|
||||||
.fill(0)
|
<Grid className="grid-cols-2 lg:grid-cols-3">
|
||||||
.map((_, index) => {
|
{Array(12)
|
||||||
return (
|
.fill(0)
|
||||||
<Grid.Item key={index} className="animate-pulse bg-neutral-100 dark:bg-neutral-900" />
|
.map((_, index) => {
|
||||||
);
|
return (
|
||||||
})}
|
<Grid.Item key={index} className="animate-pulse bg-neutral-100 dark:bg-neutral-800" />
|
||||||
</Grid>
|
);
|
||||||
|
})}
|
||||||
|
</Grid>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -3,18 +3,15 @@ import ProductGridItems from 'components/layout/product-grid-items';
|
|||||||
import { defaultSort, sorting } from 'lib/constants';
|
import { defaultSort, sorting } from 'lib/constants';
|
||||||
import { getProducts } from 'lib/shopify';
|
import { getProducts } from 'lib/shopify';
|
||||||
|
|
||||||
export const runtime = 'edge';
|
|
||||||
|
|
||||||
export const metadata = {
|
export const metadata = {
|
||||||
title: 'Search',
|
title: 'Search',
|
||||||
description: 'Search for products in the store.'
|
description: 'Search for products in the store.'
|
||||||
};
|
};
|
||||||
|
|
||||||
export default async function SearchPage({
|
export default async function SearchPage(props: {
|
||||||
searchParams
|
searchParams?: Promise<{ [key: string]: string | string[] | undefined }>;
|
||||||
}: {
|
|
||||||
searchParams?: { [key: string]: string | string[] | undefined };
|
|
||||||
}) {
|
}) {
|
||||||
|
const searchParams = await props.searchParams;
|
||||||
const { sort, q: searchValue } = searchParams as { [key: string]: string };
|
const { sort, q: searchValue } = searchParams as { [key: string]: string };
|
||||||
const { sortKey, reverse } = sorting.find((item) => item.slug === sort) || defaultSort;
|
const { sortKey, reverse } = sorting.find((item) => item.slug === sort) || defaultSort;
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { getCollections, getPages, getProducts } from 'lib/shopify';
|
import { getCollections, getPages, getProducts } from 'lib/shopify';
|
||||||
import { validateEnvironmentVariables } from 'lib/utils';
|
import { baseUrl, validateEnvironmentVariables } from 'lib/utils';
|
||||||
import { MetadataRoute } from 'next';
|
import { MetadataRoute } from 'next';
|
||||||
|
|
||||||
type Route = {
|
type Route = {
|
||||||
@ -7,9 +7,7 @@ type Route = {
|
|||||||
lastModified: string;
|
lastModified: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
const baseUrl = process.env.NEXT_PUBLIC_VERCEL_URL
|
export const dynamic = 'force-dynamic';
|
||||||
? `https://${process.env.NEXT_PUBLIC_VERCEL_URL}`
|
|
||||||
: 'http://localhost:3000';
|
|
||||||
|
|
||||||
export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
|
export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
|
||||||
validateEnvironmentVariables();
|
validateEnvironmentVariables();
|
||||||
@ -43,7 +41,9 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
|
|||||||
let fetchedRoutes: Route[] = [];
|
let fetchedRoutes: Route[] = [];
|
||||||
|
|
||||||
try {
|
try {
|
||||||
fetchedRoutes = (await Promise.all([collectionsPromise, productsPromise, pagesPromise])).flat();
|
fetchedRoutes = (
|
||||||
|
await Promise.all([collectionsPromise, productsPromise, pagesPromise])
|
||||||
|
).flat();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
throw JSON.stringify(error, null, 2);
|
throw JSON.stringify(error, null, 2);
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@ export async function Carousel() {
|
|||||||
const carouselProducts = [...products, ...products, ...products];
|
const carouselProducts = [...products, ...products, ...products];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className=" w-full overflow-x-auto pb-6 pt-1">
|
<div className="w-full overflow-x-auto pb-6 pt-1">
|
||||||
<ul className="flex animate-carousel gap-4">
|
<ul className="flex animate-carousel gap-4">
|
||||||
{carouselProducts.map((product, i) => (
|
{carouselProducts.map((product, i) => (
|
||||||
<li
|
<li
|
||||||
|
@ -1,46 +1,51 @@
|
|||||||
'use server';
|
'use server';
|
||||||
|
|
||||||
import { TAGS } from 'lib/constants';
|
import { TAGS } from 'lib/constants';
|
||||||
import { addToCart, createCart, getCart, removeFromCart, updateCart } from 'lib/shopify';
|
import {
|
||||||
|
addToCart,
|
||||||
|
createCart,
|
||||||
|
getCart,
|
||||||
|
removeFromCart,
|
||||||
|
updateCart
|
||||||
|
} from 'lib/shopify';
|
||||||
import { revalidateTag } from 'next/cache';
|
import { revalidateTag } from 'next/cache';
|
||||||
import { cookies } from 'next/headers';
|
import { cookies } from 'next/headers';
|
||||||
|
import { redirect } from 'next/navigation';
|
||||||
|
|
||||||
export async function addItem(prevState: any, selectedVariantId: string | undefined) {
|
export async function addItem(
|
||||||
let cartId = cookies().get('cartId')?.value;
|
prevState: any,
|
||||||
let cart;
|
selectedVariantId: string | undefined
|
||||||
|
) {
|
||||||
if (cartId) {
|
|
||||||
cart = await getCart(cartId);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!cartId || !cart) {
|
|
||||||
cart = await createCart();
|
|
||||||
cartId = cart.id;
|
|
||||||
cookies().set('cartId', cartId);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!selectedVariantId) {
|
if (!selectedVariantId) {
|
||||||
return 'Missing product variant ID';
|
return 'Error adding item to cart';
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await addToCart(cartId, [{ merchandiseId: selectedVariantId, quantity: 1 }]);
|
await addToCart([{ merchandiseId: selectedVariantId, quantity: 1 }]);
|
||||||
revalidateTag(TAGS.cart);
|
revalidateTag(TAGS.cart);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return 'Error adding item to cart';
|
return 'Error adding item to cart';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function removeItem(prevState: any, lineId: string) {
|
export async function removeItem(prevState: any, merchandiseId: string) {
|
||||||
const cartId = cookies().get('cartId')?.value;
|
|
||||||
|
|
||||||
if (!cartId) {
|
|
||||||
return 'Missing cart ID';
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await removeFromCart(cartId, [lineId]);
|
const cart = await getCart();
|
||||||
revalidateTag(TAGS.cart);
|
|
||||||
|
if (!cart) {
|
||||||
|
return 'Error fetching cart';
|
||||||
|
}
|
||||||
|
|
||||||
|
const lineItem = cart.lines.find(
|
||||||
|
(line) => line.merchandise.id === merchandiseId
|
||||||
|
);
|
||||||
|
|
||||||
|
if (lineItem && lineItem.id) {
|
||||||
|
await removeFromCart([lineItem.id]);
|
||||||
|
revalidateTag(TAGS.cart);
|
||||||
|
} else {
|
||||||
|
return 'Item not found in cart';
|
||||||
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return 'Error removing item from cart';
|
return 'Error removing item from cart';
|
||||||
}
|
}
|
||||||
@ -49,35 +54,53 @@ export async function removeItem(prevState: any, lineId: string) {
|
|||||||
export async function updateItemQuantity(
|
export async function updateItemQuantity(
|
||||||
prevState: any,
|
prevState: any,
|
||||||
payload: {
|
payload: {
|
||||||
lineId: string;
|
merchandiseId: string;
|
||||||
variantId: string;
|
|
||||||
quantity: number;
|
quantity: number;
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
const cartId = cookies().get('cartId')?.value;
|
const { merchandiseId, quantity } = payload;
|
||||||
|
|
||||||
if (!cartId) {
|
|
||||||
return 'Missing cart ID';
|
|
||||||
}
|
|
||||||
|
|
||||||
const { lineId, variantId, quantity } = payload;
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (quantity === 0) {
|
const cart = await getCart();
|
||||||
await removeFromCart(cartId, [lineId]);
|
|
||||||
revalidateTag(TAGS.cart);
|
if (!cart) {
|
||||||
return;
|
return 'Error fetching cart';
|
||||||
}
|
}
|
||||||
|
|
||||||
await updateCart(cartId, [
|
const lineItem = cart.lines.find(
|
||||||
{
|
(line) => line.merchandise.id === merchandiseId
|
||||||
id: lineId,
|
);
|
||||||
merchandiseId: variantId,
|
|
||||||
quantity
|
if (lineItem && lineItem.id) {
|
||||||
|
if (quantity === 0) {
|
||||||
|
await removeFromCart([lineItem.id]);
|
||||||
|
} else {
|
||||||
|
await updateCart([
|
||||||
|
{
|
||||||
|
id: lineItem.id,
|
||||||
|
merchandiseId,
|
||||||
|
quantity
|
||||||
|
}
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
]);
|
} else if (quantity > 0) {
|
||||||
|
// If the item doesn't exist in the cart and quantity > 0, add it
|
||||||
|
await addToCart([{ merchandiseId, quantity }]);
|
||||||
|
}
|
||||||
|
|
||||||
revalidateTag(TAGS.cart);
|
revalidateTag(TAGS.cart);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
return 'Error updating item quantity';
|
return 'Error updating item quantity';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function redirectToCheckout() {
|
||||||
|
let cart = await getCart();
|
||||||
|
redirect(cart!.checkoutUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function createCartAndSetCookie() {
|
||||||
|
let cart = await createCart();
|
||||||
|
(await cookies()).set('cartId', cart.id!);
|
||||||
|
}
|
||||||
|
@ -3,10 +3,10 @@
|
|||||||
import { PlusIcon } from '@heroicons/react/24/outline';
|
import { PlusIcon } from '@heroicons/react/24/outline';
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import { addItem } from 'components/cart/actions';
|
import { addItem } from 'components/cart/actions';
|
||||||
import LoadingDots from 'components/loading-dots';
|
import { useProduct } from 'components/product/product-context';
|
||||||
import { ProductVariant } from 'lib/shopify/types';
|
import { Product, ProductVariant } from 'lib/shopify/types';
|
||||||
import { useSearchParams } from 'next/navigation';
|
import { useActionState } from 'react';
|
||||||
import { useFormState, useFormStatus } from 'react-dom';
|
import { useCart } from './cart-context';
|
||||||
|
|
||||||
function SubmitButton({
|
function SubmitButton({
|
||||||
availableForSale,
|
availableForSale,
|
||||||
@ -15,14 +15,13 @@ function SubmitButton({
|
|||||||
availableForSale: boolean;
|
availableForSale: boolean;
|
||||||
selectedVariantId: string | undefined;
|
selectedVariantId: string | undefined;
|
||||||
}) {
|
}) {
|
||||||
const { pending } = useFormStatus();
|
|
||||||
const buttonClasses =
|
const buttonClasses =
|
||||||
'relative flex w-full items-center justify-center rounded-full bg-blue-600 p-4 tracking-wide text-white';
|
'relative flex w-full items-center justify-center rounded-full bg-blue-600 p-4 tracking-wide text-white';
|
||||||
const disabledClasses = 'cursor-not-allowed opacity-60 hover:opacity-60';
|
const disabledClasses = 'cursor-not-allowed opacity-60 hover:opacity-60';
|
||||||
|
|
||||||
if (!availableForSale) {
|
if (!availableForSale) {
|
||||||
return (
|
return (
|
||||||
<button aria-disabled className={clsx(buttonClasses, disabledClasses)}>
|
<button disabled className={clsx(buttonClasses, disabledClasses)}>
|
||||||
Out Of Stock
|
Out Of Stock
|
||||||
</button>
|
</button>
|
||||||
);
|
);
|
||||||
@ -32,7 +31,7 @@ function SubmitButton({
|
|||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
aria-label="Please select an option"
|
aria-label="Please select an option"
|
||||||
aria-disabled
|
disabled
|
||||||
className={clsx(buttonClasses, disabledClasses)}
|
className={clsx(buttonClasses, disabledClasses)}
|
||||||
>
|
>
|
||||||
<div className="absolute left-0 ml-4">
|
<div className="absolute left-0 ml-4">
|
||||||
@ -45,45 +44,48 @@ function SubmitButton({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
onClick={(e: React.FormEvent<HTMLButtonElement>) => {
|
|
||||||
if (pending) e.preventDefault();
|
|
||||||
}}
|
|
||||||
aria-label="Add to cart"
|
aria-label="Add to cart"
|
||||||
aria-disabled={pending}
|
|
||||||
className={clsx(buttonClasses, {
|
className={clsx(buttonClasses, {
|
||||||
'hover:opacity-90': true,
|
'hover:opacity-90': true
|
||||||
disabledClasses: pending
|
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
<div className="absolute left-0 ml-4">
|
<div className="absolute left-0 ml-4">
|
||||||
{pending ? <LoadingDots className="mb-3 bg-white" /> : <PlusIcon className="h-5" />}
|
<PlusIcon className="h-5" />
|
||||||
</div>
|
</div>
|
||||||
Add To Cart
|
Add To Cart
|
||||||
</button>
|
</button>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function AddToCart({
|
export function AddToCart({ product }: { product: Product }) {
|
||||||
variants,
|
const { variants, availableForSale } = product;
|
||||||
availableForSale
|
const { addCartItem } = useCart();
|
||||||
}: {
|
const { state } = useProduct();
|
||||||
variants: ProductVariant[];
|
const [message, formAction] = useActionState(addItem, null);
|
||||||
availableForSale: boolean;
|
|
||||||
}) {
|
|
||||||
const [message, formAction] = useFormState(addItem, null);
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
const defaultVariantId = variants.length === 1 ? variants[0]?.id : undefined;
|
|
||||||
const variant = variants.find((variant: ProductVariant) =>
|
const variant = variants.find((variant: ProductVariant) =>
|
||||||
variant.selectedOptions.every(
|
variant.selectedOptions.every(
|
||||||
(option) => option.value === searchParams.get(option.name.toLowerCase())
|
(option) => option.value === state[option.name.toLowerCase()]
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
const defaultVariantId = variants.length === 1 ? variants[0]?.id : undefined;
|
||||||
const selectedVariantId = variant?.id || defaultVariantId;
|
const selectedVariantId = variant?.id || defaultVariantId;
|
||||||
const actionWithVariant = formAction.bind(null, selectedVariantId);
|
const addItemAction = formAction.bind(null, selectedVariantId);
|
||||||
|
const finalVariant = variants.find(
|
||||||
|
(variant) => variant.id === selectedVariantId
|
||||||
|
)!;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form action={actionWithVariant}>
|
<form
|
||||||
<SubmitButton availableForSale={availableForSale} selectedVariantId={selectedVariantId} />
|
action={async () => {
|
||||||
|
addCartItem(finalVariant, product);
|
||||||
|
addItemAction();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<SubmitButton
|
||||||
|
availableForSale={availableForSale}
|
||||||
|
selectedVariantId={selectedVariantId}
|
||||||
|
/>
|
||||||
<p aria-live="polite" className="sr-only" role="status">
|
<p aria-live="polite" className="sr-only" role="status">
|
||||||
{message}
|
{message}
|
||||||
</p>
|
</p>
|
||||||
|
238
components/cart/cart-context.tsx
Normal file
238
components/cart/cart-context.tsx
Normal file
@ -0,0 +1,238 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import type {
|
||||||
|
Cart,
|
||||||
|
CartItem,
|
||||||
|
Product,
|
||||||
|
ProductVariant
|
||||||
|
} from 'lib/shopify/types';
|
||||||
|
import React, {
|
||||||
|
createContext,
|
||||||
|
use,
|
||||||
|
useContext,
|
||||||
|
useMemo,
|
||||||
|
useOptimistic
|
||||||
|
} from 'react';
|
||||||
|
|
||||||
|
type UpdateType = 'plus' | 'minus' | 'delete';
|
||||||
|
|
||||||
|
type CartAction =
|
||||||
|
| {
|
||||||
|
type: 'UPDATE_ITEM';
|
||||||
|
payload: { merchandiseId: string; updateType: UpdateType };
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
type: 'ADD_ITEM';
|
||||||
|
payload: { variant: ProductVariant; product: Product };
|
||||||
|
};
|
||||||
|
|
||||||
|
type CartContextType = {
|
||||||
|
cartPromise: Promise<Cart | undefined>;
|
||||||
|
};
|
||||||
|
|
||||||
|
const CartContext = createContext<CartContextType | undefined>(undefined);
|
||||||
|
|
||||||
|
function calculateItemCost(quantity: number, price: string): string {
|
||||||
|
return (Number(price) * quantity).toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateCartItem(
|
||||||
|
item: CartItem,
|
||||||
|
updateType: UpdateType
|
||||||
|
): CartItem | null {
|
||||||
|
if (updateType === 'delete') return null;
|
||||||
|
|
||||||
|
const newQuantity =
|
||||||
|
updateType === 'plus' ? item.quantity + 1 : item.quantity - 1;
|
||||||
|
if (newQuantity === 0) return null;
|
||||||
|
|
||||||
|
const singleItemAmount = Number(item.cost.totalAmount.amount) / item.quantity;
|
||||||
|
const newTotalAmount = calculateItemCost(
|
||||||
|
newQuantity,
|
||||||
|
singleItemAmount.toString()
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
...item,
|
||||||
|
quantity: newQuantity,
|
||||||
|
cost: {
|
||||||
|
...item.cost,
|
||||||
|
totalAmount: {
|
||||||
|
...item.cost.totalAmount,
|
||||||
|
amount: newTotalAmount
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function createOrUpdateCartItem(
|
||||||
|
existingItem: CartItem | undefined,
|
||||||
|
variant: ProductVariant,
|
||||||
|
product: Product
|
||||||
|
): CartItem {
|
||||||
|
const quantity = existingItem ? existingItem.quantity + 1 : 1;
|
||||||
|
const totalAmount = calculateItemCost(quantity, variant.price.amount);
|
||||||
|
|
||||||
|
return {
|
||||||
|
id: existingItem?.id,
|
||||||
|
quantity,
|
||||||
|
cost: {
|
||||||
|
totalAmount: {
|
||||||
|
amount: totalAmount,
|
||||||
|
currencyCode: variant.price.currencyCode
|
||||||
|
}
|
||||||
|
},
|
||||||
|
merchandise: {
|
||||||
|
id: variant.id,
|
||||||
|
title: variant.title,
|
||||||
|
selectedOptions: variant.selectedOptions,
|
||||||
|
product: {
|
||||||
|
id: product.id,
|
||||||
|
handle: product.handle,
|
||||||
|
title: product.title,
|
||||||
|
featuredImage: product.featuredImage
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateCartTotals(
|
||||||
|
lines: CartItem[]
|
||||||
|
): Pick<Cart, 'totalQuantity' | 'cost'> {
|
||||||
|
const totalQuantity = lines.reduce((sum, item) => sum + item.quantity, 0);
|
||||||
|
const totalAmount = lines.reduce(
|
||||||
|
(sum, item) => sum + Number(item.cost.totalAmount.amount),
|
||||||
|
0
|
||||||
|
);
|
||||||
|
const currencyCode = lines[0]?.cost.totalAmount.currencyCode ?? 'USD';
|
||||||
|
|
||||||
|
return {
|
||||||
|
totalQuantity,
|
||||||
|
cost: {
|
||||||
|
subtotalAmount: { amount: totalAmount.toString(), currencyCode },
|
||||||
|
totalAmount: { amount: totalAmount.toString(), currencyCode },
|
||||||
|
totalTaxAmount: { amount: '0', currencyCode }
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function createEmptyCart(): Cart {
|
||||||
|
return {
|
||||||
|
id: undefined,
|
||||||
|
checkoutUrl: '',
|
||||||
|
totalQuantity: 0,
|
||||||
|
lines: [],
|
||||||
|
cost: {
|
||||||
|
subtotalAmount: { amount: '0', currencyCode: 'USD' },
|
||||||
|
totalAmount: { amount: '0', currencyCode: 'USD' },
|
||||||
|
totalTaxAmount: { amount: '0', currencyCode: 'USD' }
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function cartReducer(state: Cart | undefined, action: CartAction): Cart {
|
||||||
|
const currentCart = state || createEmptyCart();
|
||||||
|
|
||||||
|
switch (action.type) {
|
||||||
|
case 'UPDATE_ITEM': {
|
||||||
|
const { merchandiseId, updateType } = action.payload;
|
||||||
|
const updatedLines = currentCart.lines
|
||||||
|
.map((item) =>
|
||||||
|
item.merchandise.id === merchandiseId
|
||||||
|
? updateCartItem(item, updateType)
|
||||||
|
: item
|
||||||
|
)
|
||||||
|
.filter(Boolean) as CartItem[];
|
||||||
|
|
||||||
|
if (updatedLines.length === 0) {
|
||||||
|
return {
|
||||||
|
...currentCart,
|
||||||
|
lines: [],
|
||||||
|
totalQuantity: 0,
|
||||||
|
cost: {
|
||||||
|
...currentCart.cost,
|
||||||
|
totalAmount: { ...currentCart.cost.totalAmount, amount: '0' }
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
...currentCart,
|
||||||
|
...updateCartTotals(updatedLines),
|
||||||
|
lines: updatedLines
|
||||||
|
};
|
||||||
|
}
|
||||||
|
case 'ADD_ITEM': {
|
||||||
|
const { variant, product } = action.payload;
|
||||||
|
const existingItem = currentCart.lines.find(
|
||||||
|
(item) => item.merchandise.id === variant.id
|
||||||
|
);
|
||||||
|
const updatedItem = createOrUpdateCartItem(
|
||||||
|
existingItem,
|
||||||
|
variant,
|
||||||
|
product
|
||||||
|
);
|
||||||
|
|
||||||
|
const updatedLines = existingItem
|
||||||
|
? currentCart.lines.map((item) =>
|
||||||
|
item.merchandise.id === variant.id ? updatedItem : item
|
||||||
|
)
|
||||||
|
: [...currentCart.lines, updatedItem];
|
||||||
|
|
||||||
|
return {
|
||||||
|
...currentCart,
|
||||||
|
...updateCartTotals(updatedLines),
|
||||||
|
lines: updatedLines
|
||||||
|
};
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return currentCart;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function CartProvider({
|
||||||
|
children,
|
||||||
|
cartPromise
|
||||||
|
}: {
|
||||||
|
children: React.ReactNode;
|
||||||
|
cartPromise: Promise<Cart | undefined>;
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<CartContext.Provider value={{ cartPromise }}>
|
||||||
|
{children}
|
||||||
|
</CartContext.Provider>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useCart() {
|
||||||
|
const context = useContext(CartContext);
|
||||||
|
if (context === undefined) {
|
||||||
|
throw new Error('useCart must be used within a CartProvider');
|
||||||
|
}
|
||||||
|
|
||||||
|
const initialCart = use(context.cartPromise);
|
||||||
|
const [optimisticCart, updateOptimisticCart] = useOptimistic(
|
||||||
|
initialCart,
|
||||||
|
cartReducer
|
||||||
|
);
|
||||||
|
|
||||||
|
const updateCartItem = (merchandiseId: string, updateType: UpdateType) => {
|
||||||
|
updateOptimisticCart({
|
||||||
|
type: 'UPDATE_ITEM',
|
||||||
|
payload: { merchandiseId, updateType }
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const addCartItem = (variant: ProductVariant, product: Product) => {
|
||||||
|
updateOptimisticCart({ type: 'ADD_ITEM', payload: { variant, product } });
|
||||||
|
};
|
||||||
|
|
||||||
|
return useMemo(
|
||||||
|
() => ({
|
||||||
|
cart: optimisticCart,
|
||||||
|
updateCartItem,
|
||||||
|
addCartItem
|
||||||
|
}),
|
||||||
|
[optimisticCart]
|
||||||
|
);
|
||||||
|
}
|
@ -1,10 +0,0 @@
|
|||||||
import { XMarkIcon } from '@heroicons/react/24/outline';
|
|
||||||
import clsx from 'clsx';
|
|
||||||
|
|
||||||
export default function CloseCart({ className }: { className?: string }) {
|
|
||||||
return (
|
|
||||||
<div className="relative flex h-11 w-11 items-center justify-center rounded-md border border-neutral-200 text-black transition-colors dark:border-neutral-700 dark:text-white">
|
|
||||||
<XMarkIcon className={clsx('h-6 transition-all ease-in-out hover:scale-110 ', className)} />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
@ -1,47 +1,35 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { XMarkIcon } from '@heroicons/react/24/outline';
|
import { XMarkIcon } from '@heroicons/react/24/outline';
|
||||||
import clsx from 'clsx';
|
|
||||||
import { removeItem } from 'components/cart/actions';
|
import { removeItem } from 'components/cart/actions';
|
||||||
import LoadingDots from 'components/loading-dots';
|
|
||||||
import type { CartItem } from 'lib/shopify/types';
|
import type { CartItem } from 'lib/shopify/types';
|
||||||
import { useFormState, useFormStatus } from 'react-dom';
|
import { useActionState } from 'react';
|
||||||
|
|
||||||
function SubmitButton() {
|
export function DeleteItemButton({
|
||||||
const { pending } = useFormStatus();
|
item,
|
||||||
|
optimisticUpdate
|
||||||
|
}: {
|
||||||
|
item: CartItem;
|
||||||
|
optimisticUpdate: any;
|
||||||
|
}) {
|
||||||
|
const [message, formAction] = useActionState(removeItem, null);
|
||||||
|
const merchandiseId = item.merchandise.id;
|
||||||
|
const removeItemAction = formAction.bind(null, merchandiseId);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<button
|
<form
|
||||||
type="submit"
|
action={async () => {
|
||||||
onClick={(e: React.FormEvent<HTMLButtonElement>) => {
|
optimisticUpdate(merchandiseId, 'delete');
|
||||||
if (pending) e.preventDefault();
|
removeItemAction();
|
||||||
}}
|
}}
|
||||||
aria-label="Remove cart item"
|
|
||||||
aria-disabled={pending}
|
|
||||||
className={clsx(
|
|
||||||
'ease flex h-[17px] w-[17px] items-center justify-center rounded-full bg-neutral-500 transition-all duration-200',
|
|
||||||
{
|
|
||||||
'cursor-not-allowed px-0': pending
|
|
||||||
}
|
|
||||||
)}
|
|
||||||
>
|
>
|
||||||
{pending ? (
|
<button
|
||||||
<LoadingDots className="bg-white" />
|
type="submit"
|
||||||
) : (
|
aria-label="Remove cart item"
|
||||||
<XMarkIcon className="hover:text-accent-3 mx-[1px] h-4 w-4 text-white dark:text-black" />
|
className="flex h-[24px] w-[24px] items-center justify-center rounded-full bg-neutral-500"
|
||||||
)}
|
>
|
||||||
</button>
|
<XMarkIcon className="mx-[1px] h-4 w-4 text-white dark:text-black" />
|
||||||
);
|
</button>
|
||||||
}
|
|
||||||
|
|
||||||
export function DeleteItemButton({ item }: { item: CartItem }) {
|
|
||||||
const [message, formAction] = useFormState(removeItem, null);
|
|
||||||
const itemId = item.id;
|
|
||||||
const actionWithVariant = formAction.bind(null, itemId);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<form action={actionWithVariant}>
|
|
||||||
<SubmitButton />
|
|
||||||
<p aria-live="polite" className="sr-only" role="status">
|
<p aria-live="polite" className="sr-only" role="status">
|
||||||
{message}
|
{message}
|
||||||
</p>
|
</p>
|
||||||
|
@ -3,32 +3,24 @@
|
|||||||
import { MinusIcon, PlusIcon } from '@heroicons/react/24/outline';
|
import { MinusIcon, PlusIcon } from '@heroicons/react/24/outline';
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import { updateItemQuantity } from 'components/cart/actions';
|
import { updateItemQuantity } from 'components/cart/actions';
|
||||||
import LoadingDots from 'components/loading-dots';
|
|
||||||
import type { CartItem } from 'lib/shopify/types';
|
import type { CartItem } from 'lib/shopify/types';
|
||||||
import { useFormState, useFormStatus } from 'react-dom';
|
import { useActionState } from 'react';
|
||||||
|
|
||||||
function SubmitButton({ type }: { type: 'plus' | 'minus' }) {
|
function SubmitButton({ type }: { type: 'plus' | 'minus' }) {
|
||||||
const { pending } = useFormStatus();
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
type="submit"
|
type="submit"
|
||||||
onClick={(e: React.FormEvent<HTMLButtonElement>) => {
|
aria-label={
|
||||||
if (pending) e.preventDefault();
|
type === 'plus' ? 'Increase item quantity' : 'Reduce item quantity'
|
||||||
}}
|
}
|
||||||
aria-label={type === 'plus' ? 'Increase item quantity' : 'Reduce item quantity'}
|
|
||||||
aria-disabled={pending}
|
|
||||||
className={clsx(
|
className={clsx(
|
||||||
'ease flex h-full min-w-[36px] max-w-[36px] flex-none items-center justify-center rounded-full px-2 transition-all duration-200 hover:border-neutral-800 hover:opacity-80',
|
'ease flex h-full min-w-[36px] max-w-[36px] flex-none items-center justify-center rounded-full p-2 transition-all duration-200 hover:border-neutral-800 hover:opacity-80',
|
||||||
{
|
{
|
||||||
'cursor-not-allowed': pending,
|
|
||||||
'ml-auto': type === 'minus'
|
'ml-auto': type === 'minus'
|
||||||
}
|
}
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{pending ? (
|
{type === 'plus' ? (
|
||||||
<LoadingDots className="bg-black dark:bg-white" />
|
|
||||||
) : type === 'plus' ? (
|
|
||||||
<PlusIcon className="h-4 w-4 dark:text-neutral-500" />
|
<PlusIcon className="h-4 w-4 dark:text-neutral-500" />
|
||||||
) : (
|
) : (
|
||||||
<MinusIcon className="h-4 w-4 dark:text-neutral-500" />
|
<MinusIcon className="h-4 w-4 dark:text-neutral-500" />
|
||||||
@ -37,17 +29,29 @@ function SubmitButton({ type }: { type: 'plus' | 'minus' }) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function EditItemQuantityButton({ item, type }: { item: CartItem; type: 'plus' | 'minus' }) {
|
export function EditItemQuantityButton({
|
||||||
const [message, formAction] = useFormState(updateItemQuantity, null);
|
item,
|
||||||
|
type,
|
||||||
|
optimisticUpdate
|
||||||
|
}: {
|
||||||
|
item: CartItem;
|
||||||
|
type: 'plus' | 'minus';
|
||||||
|
optimisticUpdate: any;
|
||||||
|
}) {
|
||||||
|
const [message, formAction] = useActionState(updateItemQuantity, null);
|
||||||
const payload = {
|
const payload = {
|
||||||
lineId: item.id,
|
merchandiseId: item.merchandise.id,
|
||||||
variantId: item.merchandise.id,
|
|
||||||
quantity: type === 'plus' ? item.quantity + 1 : item.quantity - 1
|
quantity: type === 'plus' ? item.quantity + 1 : item.quantity - 1
|
||||||
};
|
};
|
||||||
const actionWithVariant = formAction.bind(null, payload);
|
const updateItemQuantityAction = formAction.bind(null, payload);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form action={actionWithVariant}>
|
<form
|
||||||
|
action={async () => {
|
||||||
|
optimisticUpdate(payload.merchandiseId, type);
|
||||||
|
updateItemQuantityAction();
|
||||||
|
}}
|
||||||
|
>
|
||||||
<SubmitButton type={type} />
|
<SubmitButton type={type} />
|
||||||
<p aria-live="polite" className="sr-only" role="status">
|
<p aria-live="polite" className="sr-only" role="status">
|
||||||
{message}
|
{message}
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
import { getCart } from 'lib/shopify';
|
|
||||||
import { cookies } from 'next/headers';
|
|
||||||
import CartModal from './modal';
|
|
||||||
|
|
||||||
export default async function Cart() {
|
|
||||||
const cartId = cookies().get('cartId')?.value;
|
|
||||||
let cart;
|
|
||||||
|
|
||||||
if (cartId) {
|
|
||||||
cart = await getCart(cartId);
|
|
||||||
}
|
|
||||||
|
|
||||||
return <CartModal cart={cart} />;
|
|
||||||
}
|
|
@ -1,15 +1,18 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
|
import clsx from 'clsx';
|
||||||
import { Dialog, Transition } from '@headlessui/react';
|
import { Dialog, Transition } from '@headlessui/react';
|
||||||
import { ShoppingCartIcon } from '@heroicons/react/24/outline';
|
import { ShoppingCartIcon, XMarkIcon } from '@heroicons/react/24/outline';
|
||||||
|
import LoadingDots from 'components/loading-dots';
|
||||||
import Price from 'components/price';
|
import Price from 'components/price';
|
||||||
import { DEFAULT_OPTION } from 'lib/constants';
|
import { DEFAULT_OPTION } from 'lib/constants';
|
||||||
import type { Cart } from 'lib/shopify/types';
|
|
||||||
import { createUrl } from 'lib/utils';
|
import { createUrl } from 'lib/utils';
|
||||||
import Image from 'next/image';
|
import Image from 'next/image';
|
||||||
import Link from 'next/link';
|
import Link from 'next/link';
|
||||||
import { Fragment, useEffect, useRef, useState } from 'react';
|
import { Fragment, useEffect, useRef, useState } from 'react';
|
||||||
import CloseCart from './close-cart';
|
import { useFormStatus } from 'react-dom';
|
||||||
|
import { createCartAndSetCookie, redirectToCheckout } from './actions';
|
||||||
|
import { useCart } from './cart-context';
|
||||||
import { DeleteItemButton } from './delete-item-button';
|
import { DeleteItemButton } from './delete-item-button';
|
||||||
import { EditItemQuantityButton } from './edit-item-quantity-button';
|
import { EditItemQuantityButton } from './edit-item-quantity-button';
|
||||||
import OpenCart from './open-cart';
|
import OpenCart from './open-cart';
|
||||||
@ -18,21 +21,28 @@ type MerchandiseSearchParams = {
|
|||||||
[key: string]: string;
|
[key: string]: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function CartModal({ cart }: { cart: Cart | undefined }) {
|
export default function CartModal() {
|
||||||
|
const { cart, updateCartItem } = useCart();
|
||||||
const [isOpen, setIsOpen] = useState(false);
|
const [isOpen, setIsOpen] = useState(false);
|
||||||
const quantityRef = useRef(cart?.totalQuantity);
|
const quantityRef = useRef(cart?.totalQuantity);
|
||||||
const openCart = () => setIsOpen(true);
|
const openCart = () => setIsOpen(true);
|
||||||
const closeCart = () => setIsOpen(false);
|
const closeCart = () => setIsOpen(false);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
// Open cart modal when quantity changes.
|
if (!cart) {
|
||||||
if (cart?.totalQuantity !== quantityRef.current) {
|
createCartAndSetCookie();
|
||||||
// But only if it's not already open (quantity also changes when editing items in cart).
|
}
|
||||||
|
}, [cart]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (
|
||||||
|
cart?.totalQuantity &&
|
||||||
|
cart?.totalQuantity !== quantityRef.current &&
|
||||||
|
cart?.totalQuantity > 0
|
||||||
|
) {
|
||||||
if (!isOpen) {
|
if (!isOpen) {
|
||||||
setIsOpen(true);
|
setIsOpen(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Always update the quantity reference
|
|
||||||
quantityRef.current = cart?.totalQuantity;
|
quantityRef.current = cart?.totalQuantity;
|
||||||
}
|
}
|
||||||
}, [isOpen, cart?.totalQuantity, quantityRef]);
|
}, [isOpen, cart?.totalQuantity, quantityRef]);
|
||||||
@ -67,7 +77,6 @@ export default function CartModal({ cart }: { cart: Cart | undefined }) {
|
|||||||
<Dialog.Panel className="fixed bottom-0 right-0 top-0 flex h-full w-full flex-col border-l border-neutral-200 bg-white/80 p-6 text-black backdrop-blur-xl md:w-[390px] dark:border-neutral-700 dark:bg-black/80 dark:text-white">
|
<Dialog.Panel className="fixed bottom-0 right-0 top-0 flex h-full w-full flex-col border-l border-neutral-200 bg-white/80 p-6 text-black backdrop-blur-xl md:w-[390px] dark:border-neutral-700 dark:bg-black/80 dark:text-white">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<p className="text-lg font-semibold">My Cart</p>
|
<p className="text-lg font-semibold">My Cart</p>
|
||||||
|
|
||||||
<button aria-label="Close cart" onClick={closeCart}>
|
<button aria-label="Close cart" onClick={closeCart}>
|
||||||
<CloseCart />
|
<CloseCart />
|
||||||
</button>
|
</button>
|
||||||
@ -76,81 +85,113 @@ export default function CartModal({ cart }: { cart: Cart | undefined }) {
|
|||||||
{!cart || cart.lines.length === 0 ? (
|
{!cart || cart.lines.length === 0 ? (
|
||||||
<div className="mt-20 flex w-full flex-col items-center justify-center overflow-hidden">
|
<div className="mt-20 flex w-full flex-col items-center justify-center overflow-hidden">
|
||||||
<ShoppingCartIcon className="h-16" />
|
<ShoppingCartIcon className="h-16" />
|
||||||
<p className="mt-6 text-center text-2xl font-bold">Your cart is empty.</p>
|
<p className="mt-6 text-center text-2xl font-bold">
|
||||||
|
Your cart is empty.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div className="flex h-full flex-col justify-between overflow-hidden p-1">
|
<div className="flex h-full flex-col justify-between overflow-hidden p-1">
|
||||||
<ul className="flex-grow overflow-auto py-4">
|
<ul className="grow overflow-auto py-4">
|
||||||
{cart.lines.map((item, i) => {
|
{cart.lines
|
||||||
const merchandiseSearchParams = {} as MerchandiseSearchParams;
|
.sort((a, b) =>
|
||||||
|
a.merchandise.product.title.localeCompare(
|
||||||
|
b.merchandise.product.title
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.map((item, i) => {
|
||||||
|
const merchandiseSearchParams =
|
||||||
|
{} as MerchandiseSearchParams;
|
||||||
|
|
||||||
item.merchandise.selectedOptions.forEach(({ name, value }) => {
|
item.merchandise.selectedOptions.forEach(
|
||||||
if (value !== DEFAULT_OPTION) {
|
({ name, value }) => {
|
||||||
merchandiseSearchParams[name.toLowerCase()] = value;
|
if (value !== DEFAULT_OPTION) {
|
||||||
}
|
merchandiseSearchParams[name.toLowerCase()] =
|
||||||
});
|
value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
const merchandiseUrl = createUrl(
|
const merchandiseUrl = createUrl(
|
||||||
`/product/${item.merchandise.product.handle}`,
|
`/product/${item.merchandise.product.handle}`,
|
||||||
new URLSearchParams(merchandiseSearchParams)
|
new URLSearchParams(merchandiseSearchParams)
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<li
|
<li
|
||||||
key={i}
|
key={i}
|
||||||
className="flex w-full flex-col border-b border-neutral-300 dark:border-neutral-700"
|
className="flex w-full flex-col border-b border-neutral-300 dark:border-neutral-700"
|
||||||
>
|
>
|
||||||
<div className="relative flex w-full flex-row justify-between px-1 py-4">
|
<div className="relative flex w-full flex-row justify-between px-1 py-4">
|
||||||
<div className="absolute z-40 -mt-2 ml-[55px]">
|
<div className="absolute z-40 -ml-1 -mt-2">
|
||||||
<DeleteItemButton item={item} />
|
<DeleteItemButton
|
||||||
</div>
|
item={item}
|
||||||
<Link
|
optimisticUpdate={updateCartItem}
|
||||||
href={merchandiseUrl}
|
|
||||||
onClick={closeCart}
|
|
||||||
className="z-30 flex flex-row space-x-4"
|
|
||||||
>
|
|
||||||
<div className="relative h-16 w-16 cursor-pointer overflow-hidden rounded-md border border-neutral-300 bg-neutral-300 dark:border-neutral-700 dark:bg-neutral-900 dark:hover:bg-neutral-800">
|
|
||||||
<Image
|
|
||||||
className="h-full w-full object-cover"
|
|
||||||
width={64}
|
|
||||||
height={64}
|
|
||||||
alt={
|
|
||||||
item.merchandise.product.featuredImage.altText ||
|
|
||||||
item.merchandise.product.title
|
|
||||||
}
|
|
||||||
src={item.merchandise.product.featuredImage.url}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="flex flex-row">
|
||||||
<div className="flex flex-1 flex-col text-base">
|
<div className="relative h-16 w-16 overflow-hidden rounded-md border border-neutral-300 bg-neutral-300 dark:border-neutral-700 dark:bg-neutral-900 dark:hover:bg-neutral-800">
|
||||||
<span className="leading-tight">
|
<Image
|
||||||
{item.merchandise.product.title}
|
className="h-full w-full object-cover"
|
||||||
</span>
|
width={64}
|
||||||
{item.merchandise.title !== DEFAULT_OPTION ? (
|
height={64}
|
||||||
<p className="text-sm text-neutral-500 dark:text-neutral-400">
|
alt={
|
||||||
{item.merchandise.title}
|
item.merchandise.product.featuredImage
|
||||||
</p>
|
.altText ||
|
||||||
) : null}
|
item.merchandise.product.title
|
||||||
|
}
|
||||||
|
src={
|
||||||
|
item.merchandise.product.featuredImage.url
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<Link
|
||||||
|
href={merchandiseUrl}
|
||||||
|
onClick={closeCart}
|
||||||
|
className="z-30 ml-2 flex flex-row space-x-4"
|
||||||
|
>
|
||||||
|
<div className="flex flex-1 flex-col text-base">
|
||||||
|
<span className="leading-tight">
|
||||||
|
{item.merchandise.product.title}
|
||||||
|
</span>
|
||||||
|
{item.merchandise.title !==
|
||||||
|
DEFAULT_OPTION ? (
|
||||||
|
<p className="text-sm text-neutral-500 dark:text-neutral-400">
|
||||||
|
{item.merchandise.title}
|
||||||
|
</p>
|
||||||
|
) : null}
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
<div className="flex h-16 flex-col justify-between">
|
||||||
<div className="flex h-16 flex-col justify-between">
|
<Price
|
||||||
<Price
|
className="flex justify-end space-y-2 text-right text-sm"
|
||||||
className="flex justify-end space-y-2 text-right text-sm"
|
amount={item.cost.totalAmount.amount}
|
||||||
amount={item.cost.totalAmount.amount}
|
currencyCode={
|
||||||
currencyCode={item.cost.totalAmount.currencyCode}
|
item.cost.totalAmount.currencyCode
|
||||||
/>
|
}
|
||||||
<div className="ml-auto flex h-9 flex-row items-center rounded-full border border-neutral-200 dark:border-neutral-700">
|
/>
|
||||||
<EditItemQuantityButton item={item} type="minus" />
|
<div className="ml-auto flex h-9 flex-row items-center rounded-full border border-neutral-200 dark:border-neutral-700">
|
||||||
<p className="w-6 text-center">
|
<EditItemQuantityButton
|
||||||
<span className="w-full text-sm">{item.quantity}</span>
|
item={item}
|
||||||
</p>
|
type="minus"
|
||||||
<EditItemQuantityButton item={item} type="plus" />
|
optimisticUpdate={updateCartItem}
|
||||||
|
/>
|
||||||
|
<p className="w-6 text-center">
|
||||||
|
<span className="w-full text-sm">
|
||||||
|
{item.quantity}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
<EditItemQuantityButton
|
||||||
|
item={item}
|
||||||
|
type="plus"
|
||||||
|
optimisticUpdate={updateCartItem}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</li>
|
||||||
</li>
|
);
|
||||||
);
|
})}
|
||||||
})}
|
|
||||||
</ul>
|
</ul>
|
||||||
<div className="py-4 text-sm text-neutral-500 dark:text-neutral-400">
|
<div className="py-4 text-sm text-neutral-500 dark:text-neutral-400">
|
||||||
<div className="mb-3 flex items-center justify-between border-b border-neutral-200 pb-1 dark:border-neutral-700">
|
<div className="mb-3 flex items-center justify-between border-b border-neutral-200 pb-1 dark:border-neutral-700">
|
||||||
@ -174,12 +215,9 @@ export default function CartModal({ cart }: { cart: Cart | undefined }) {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<a
|
<form action={redirectToCheckout}>
|
||||||
href={cart.checkoutUrl}
|
<CheckoutButton />
|
||||||
className="block w-full rounded-full bg-blue-600 p-3 text-center text-sm font-medium text-white opacity-90 hover:opacity-100"
|
</form>
|
||||||
>
|
|
||||||
Proceed to Checkout
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</Dialog.Panel>
|
</Dialog.Panel>
|
||||||
@ -189,3 +227,30 @@ export default function CartModal({ cart }: { cart: Cart | undefined }) {
|
|||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function CloseCart({ className }: { className?: string }) {
|
||||||
|
return (
|
||||||
|
<div className="relative flex h-11 w-11 items-center justify-center rounded-md border border-neutral-200 text-black transition-colors dark:border-neutral-700 dark:text-white">
|
||||||
|
<XMarkIcon
|
||||||
|
className={clsx(
|
||||||
|
'h-6 transition-all ease-in-out hover:scale-110',
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function CheckoutButton() {
|
||||||
|
const { pending } = useFormStatus();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
className="block w-full rounded-full bg-blue-600 p-3 text-center text-sm font-medium text-white opacity-90 hover:opacity-100"
|
||||||
|
type="submit"
|
||||||
|
disabled={pending}
|
||||||
|
>
|
||||||
|
{pending ? <LoadingDots className="bg-white" /> : 'Proceed to Checkout'}
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
@ -11,11 +11,11 @@ export default function OpenCart({
|
|||||||
return (
|
return (
|
||||||
<div className="relative flex h-11 w-11 items-center justify-center rounded-md border border-neutral-200 text-black transition-colors dark:border-neutral-700 dark:text-white">
|
<div className="relative flex h-11 w-11 items-center justify-center rounded-md border border-neutral-200 text-black transition-colors dark:border-neutral-700 dark:text-white">
|
||||||
<ShoppingCartIcon
|
<ShoppingCartIcon
|
||||||
className={clsx('h-4 transition-all ease-in-out hover:scale-110 ', className)}
|
className={clsx('h-4 transition-all ease-in-out hover:scale-110', className)}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{quantity ? (
|
{quantity ? (
|
||||||
<div className="absolute right-0 top-0 -mr-2 -mt-2 h-4 w-4 rounded bg-blue-600 text-[11px] font-medium text-white">
|
<div className="absolute right-0 top-0 -mr-2 -mt-2 h-4 w-4 rounded-sm bg-blue-600 text-[11px] font-medium text-white">
|
||||||
{quantity}
|
{quantity}
|
||||||
</div>
|
</div>
|
||||||
) : null}
|
) : null}
|
||||||
|
@ -16,7 +16,11 @@ function ThreeItemGridItem({
|
|||||||
<div
|
<div
|
||||||
className={size === 'full' ? 'md:col-span-4 md:row-span-2' : 'md:col-span-2 md:row-span-1'}
|
className={size === 'full' ? 'md:col-span-4 md:row-span-2' : 'md:col-span-2 md:row-span-1'}
|
||||||
>
|
>
|
||||||
<Link className="relative block aspect-square h-full w-full" href={`/product/${item.handle}`}>
|
<Link
|
||||||
|
className="relative block aspect-square h-full w-full"
|
||||||
|
href={`/product/${item.handle}`}
|
||||||
|
prefetch={true}
|
||||||
|
>
|
||||||
<GridTileImage
|
<GridTileImage
|
||||||
src={item.featuredImage.url}
|
src={item.featuredImage.url}
|
||||||
fill
|
fill
|
||||||
@ -48,7 +52,7 @@ export async function ThreeItemGrid() {
|
|||||||
const [firstProduct, secondProduct, thirdProduct] = homepageItems;
|
const [firstProduct, secondProduct, thirdProduct] = homepageItems;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section className="mx-auto grid max-w-screen-2xl gap-4 px-4 pb-4 md:grid-cols-6 md:grid-rows-2">
|
<section className="mx-auto grid max-w-(--breakpoint-2xl) gap-4 px-4 pb-4 md:grid-cols-6 md:grid-rows-2 lg:max-h-[calc(100vh-200px)]">
|
||||||
<ThreeItemGridItem size="full" item={firstProduct} priority={true} />
|
<ThreeItemGridItem size="full" item={firstProduct} priority={true} />
|
||||||
<ThreeItemGridItem size="half" item={secondProduct} priority={true} />
|
<ThreeItemGridItem size="half" item={secondProduct} priority={true} />
|
||||||
<ThreeItemGridItem size="half" item={thirdProduct} />
|
<ThreeItemGridItem size="half" item={thirdProduct} />
|
||||||
|
@ -29,7 +29,6 @@ export function GridTileImage({
|
|||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{props.src ? (
|
{props.src ? (
|
||||||
// eslint-disable-next-line jsx-a11y/alt-text -- `alt` is inherited from `props`, which is being enforced with TypeScript
|
|
||||||
<Image
|
<Image
|
||||||
className={clsx('relative h-full w-full object-contain', {
|
className={clsx('relative h-full w-full object-contain', {
|
||||||
'transition duration-300 ease-in-out group-hover:scale-105': isInteractive
|
'transition duration-300 ease-in-out group-hover:scale-105': isInteractive
|
||||||
|
@ -19,7 +19,7 @@ const Label = ({
|
|||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
<div className="flex items-center rounded-full border bg-white/70 p-1 text-xs font-semibold text-black backdrop-blur-md dark:border-neutral-800 dark:bg-black/70 dark:text-white">
|
<div className="flex items-center rounded-full border bg-white/70 p-1 text-xs font-semibold text-black backdrop-blur-md dark:border-neutral-800 dark:bg-black/70 dark:text-white">
|
||||||
<h3 className="mr-4 line-clamp-2 flex-grow pl-2 leading-none tracking-tight">{title}</h3>
|
<h3 className="mr-4 line-clamp-2 grow pl-2 leading-none tracking-tight">{title}</h3>
|
||||||
<Price
|
<Price
|
||||||
className="flex-none rounded-full bg-blue-600 p-2 text-white"
|
className="flex-none rounded-full bg-blue-600 p-2 text-white"
|
||||||
amount={amount}
|
amount={amount}
|
||||||
|
@ -6,7 +6,7 @@ import Link from 'next/link';
|
|||||||
import { usePathname } from 'next/navigation';
|
import { usePathname } from 'next/navigation';
|
||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
|
|
||||||
const FooterMenuItem = ({ item }: { item: Menu }) => {
|
export function FooterMenuItem({ item }: { item: Menu }) {
|
||||||
const pathname = usePathname();
|
const pathname = usePathname();
|
||||||
const [active, setActive] = useState(pathname === item.path);
|
const [active, setActive] = useState(pathname === item.path);
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ const FooterMenuItem = ({ item }: { item: Menu }) => {
|
|||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
};
|
}
|
||||||
|
|
||||||
export default function FooterMenu({ menu }: { menu: Menu[] }) {
|
export default function FooterMenu({ menu }: { menu: Menu[] }) {
|
||||||
if (!menu.length) return null;
|
if (!menu.length) return null;
|
||||||
|
@ -10,7 +10,7 @@ const { COMPANY_NAME, SITE_NAME } = process.env;
|
|||||||
export default async function Footer() {
|
export default async function Footer() {
|
||||||
const currentYear = new Date().getFullYear();
|
const currentYear = new Date().getFullYear();
|
||||||
const copyrightDate = 2023 + (currentYear > 2023 ? `-${currentYear}` : '');
|
const copyrightDate = 2023 + (currentYear > 2023 ? `-${currentYear}` : '');
|
||||||
const skeleton = 'w-full h-6 animate-pulse rounded bg-neutral-200 dark:bg-neutral-700';
|
const skeleton = 'w-full h-6 animate-pulse rounded-sm bg-neutral-200 dark:bg-neutral-700';
|
||||||
const menu = await getMenu('next-js-frontend-footer-menu');
|
const menu = await getMenu('next-js-frontend-footer-menu');
|
||||||
const copyrightName = COMPANY_NAME || SITE_NAME || '';
|
const copyrightName = COMPANY_NAME || SITE_NAME || '';
|
||||||
|
|
||||||
@ -56,10 +56,12 @@ export default async function Footer() {
|
|||||||
{copyrightName.length && !copyrightName.endsWith('.') ? '.' : ''} All rights reserved.
|
{copyrightName.length && !copyrightName.endsWith('.') ? '.' : ''} All rights reserved.
|
||||||
</p>
|
</p>
|
||||||
<hr className="mx-4 hidden h-4 w-[1px] border-l border-neutral-400 md:inline-block" />
|
<hr className="mx-4 hidden h-4 w-[1px] border-l border-neutral-400 md:inline-block" />
|
||||||
<p>Designed in California</p>
|
<p>
|
||||||
|
<a href="https://github.com/vercel/commerce">View the source</a>
|
||||||
|
</p>
|
||||||
<p className="md:ml-auto">
|
<p className="md:ml-auto">
|
||||||
<a href="https://vercel.com" className="text-black dark:text-white">
|
<a href="https://vercel.com" className="text-black dark:text-white">
|
||||||
Crafted by ▲ Vercel
|
Created by ▲ Vercel
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import Cart from 'components/cart';
|
import CartModal from 'components/cart/modal';
|
||||||
import OpenCart from 'components/cart/open-cart';
|
|
||||||
import LogoSquare from 'components/logo-square';
|
import LogoSquare from 'components/logo-square';
|
||||||
import { getMenu } from 'lib/shopify';
|
import { getMenu } from 'lib/shopify';
|
||||||
import { Menu } from 'lib/shopify/types';
|
import { Menu } from 'lib/shopify/types';
|
||||||
@ -7,9 +6,10 @@ import Link from 'next/link';
|
|||||||
import { Suspense } from 'react';
|
import { Suspense } from 'react';
|
||||||
import MobileMenu from './mobile-menu';
|
import MobileMenu from './mobile-menu';
|
||||||
import Search, { SearchSkeleton } from './search';
|
import Search, { SearchSkeleton } from './search';
|
||||||
|
|
||||||
const { SITE_NAME } = process.env;
|
const { SITE_NAME } = process.env;
|
||||||
|
|
||||||
export default async function Navbar() {
|
export async function Navbar() {
|
||||||
const menu = await getMenu('next-js-frontend-header-menu');
|
const menu = await getMenu('next-js-frontend-header-menu');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -21,7 +21,11 @@ export default async function Navbar() {
|
|||||||
</div>
|
</div>
|
||||||
<div className="flex w-full items-center">
|
<div className="flex w-full items-center">
|
||||||
<div className="flex w-full md:w-1/3">
|
<div className="flex w-full md:w-1/3">
|
||||||
<Link href="/" className="mr-2 flex w-full items-center justify-center md:w-auto lg:mr-6">
|
<Link
|
||||||
|
href="/"
|
||||||
|
prefetch={true}
|
||||||
|
className="mr-2 flex w-full items-center justify-center md:w-auto lg:mr-6"
|
||||||
|
>
|
||||||
<LogoSquare />
|
<LogoSquare />
|
||||||
<div className="ml-2 flex-none text-sm font-medium uppercase md:hidden lg:block">
|
<div className="ml-2 flex-none text-sm font-medium uppercase md:hidden lg:block">
|
||||||
{SITE_NAME}
|
{SITE_NAME}
|
||||||
@ -33,6 +37,7 @@ export default async function Navbar() {
|
|||||||
<li key={item.title}>
|
<li key={item.title}>
|
||||||
<Link
|
<Link
|
||||||
href={item.path}
|
href={item.path}
|
||||||
|
prefetch={true}
|
||||||
className="text-neutral-500 underline-offset-4 hover:text-black hover:underline dark:text-neutral-400 dark:hover:text-neutral-300"
|
className="text-neutral-500 underline-offset-4 hover:text-black hover:underline dark:text-neutral-400 dark:hover:text-neutral-300"
|
||||||
>
|
>
|
||||||
{item.title}
|
{item.title}
|
||||||
@ -48,9 +53,7 @@ export default async function Navbar() {
|
|||||||
</Suspense>
|
</Suspense>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex justify-end md:w-1/3">
|
<div className="flex justify-end md:w-1/3">
|
||||||
<Suspense fallback={<OpenCart />}>
|
<CartModal />
|
||||||
<Cart />
|
|
||||||
</Suspense>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -83,7 +83,7 @@ export default function MobileMenu({ menu }: { menu: Menu[] }) {
|
|||||||
className="py-2 text-xl text-black transition-colors hover:text-neutral-500 dark:text-white"
|
className="py-2 text-xl text-black transition-colors hover:text-neutral-500 dark:text-white"
|
||||||
key={item.title}
|
key={item.title}
|
||||||
>
|
>
|
||||||
<Link href={item.path} onClick={closeMobileMenu}>
|
<Link href={item.path} prefetch={true} onClick={closeMobileMenu}>
|
||||||
{item.title}
|
{item.title}
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
|
@ -1,44 +1,27 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { MagnifyingGlassIcon } from '@heroicons/react/24/outline';
|
import { MagnifyingGlassIcon } from '@heroicons/react/24/outline';
|
||||||
import { createUrl } from 'lib/utils';
|
import Form from 'next/form';
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
import { useSearchParams } from 'next/navigation';
|
||||||
|
|
||||||
export default function Search() {
|
export default function Search() {
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
const searchParams = useSearchParams();
|
||||||
|
|
||||||
function onSubmit(e: React.FormEvent<HTMLFormElement>) {
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
const val = e.target as HTMLFormElement;
|
|
||||||
const search = val.search as HTMLInputElement;
|
|
||||||
const newParams = new URLSearchParams(searchParams.toString());
|
|
||||||
|
|
||||||
if (search.value) {
|
|
||||||
newParams.set('q', search.value);
|
|
||||||
} else {
|
|
||||||
newParams.delete('q');
|
|
||||||
}
|
|
||||||
|
|
||||||
router.push(createUrl('/search', newParams));
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form onSubmit={onSubmit} className="w-max-[550px] relative w-full lg:w-80 xl:w-full">
|
<Form action="/search" className="w-max-[550px] relative w-full lg:w-80 xl:w-full">
|
||||||
<input
|
<input
|
||||||
key={searchParams?.get('q')}
|
key={searchParams?.get('q')}
|
||||||
type="text"
|
type="text"
|
||||||
name="search"
|
name="q"
|
||||||
placeholder="Search for products..."
|
placeholder="Search for products..."
|
||||||
autoComplete="off"
|
autoComplete="off"
|
||||||
defaultValue={searchParams?.get('q') || ''}
|
defaultValue={searchParams?.get('q') || ''}
|
||||||
className="w-full rounded-lg border bg-white px-4 py-2 text-sm text-black placeholder:text-neutral-500 dark:border-neutral-800 dark:bg-transparent dark:text-white dark:placeholder:text-neutral-400"
|
className="text-md w-full rounded-lg border bg-white px-4 py-2 text-black placeholder:text-neutral-500 md:text-sm dark:border-neutral-800 dark:bg-transparent dark:text-white dark:placeholder:text-neutral-400"
|
||||||
/>
|
/>
|
||||||
<div className="absolute right-0 top-0 mr-3 flex h-full items-center">
|
<div className="absolute right-0 top-0 mr-3 flex h-full items-center">
|
||||||
<MagnifyingGlassIcon className="h-4" />
|
<MagnifyingGlassIcon className="h-4" />
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</Form>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,7 +8,11 @@ export default function ProductGridItems({ products }: { products: Product[] })
|
|||||||
<>
|
<>
|
||||||
{products.map((product) => (
|
{products.map((product) => (
|
||||||
<Grid.Item key={product.handle} className="animate-fadeIn">
|
<Grid.Item key={product.handle} className="animate-fadeIn">
|
||||||
<Link className="relative inline-block h-full w-full" href={`/product/${product.handle}`}>
|
<Link
|
||||||
|
className="relative inline-block h-full w-full"
|
||||||
|
href={`/product/${product.handle}`}
|
||||||
|
prefetch={true}
|
||||||
|
>
|
||||||
<GridTileImage
|
<GridTileImage
|
||||||
alt={product.title}
|
alt={product.title}
|
||||||
label={{
|
label={{
|
||||||
|
@ -9,7 +9,7 @@ async function CollectionList() {
|
|||||||
return <FilterList list={collections} title="Collections" />;
|
return <FilterList list={collections} title="Collections" />;
|
||||||
}
|
}
|
||||||
|
|
||||||
const skeleton = 'mb-3 h-4 w-5/6 animate-pulse rounded';
|
const skeleton = 'mb-3 h-4 w-5/6 animate-pulse rounded-sm';
|
||||||
const activeAndTitles = 'bg-neutral-800 dark:bg-neutral-300';
|
const activeAndTitles = 'bg-neutral-800 dark:bg-neutral-300';
|
||||||
const items = 'bg-neutral-400 dark:bg-neutral-700';
|
const items = 'bg-neutral-400 dark:bg-neutral-700';
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ export default function FilterItemDropdown({ list }: { list: ListItem[] }) {
|
|||||||
onClick={() => {
|
onClick={() => {
|
||||||
setOpenSelect(!openSelect);
|
setOpenSelect(!openSelect);
|
||||||
}}
|
}}
|
||||||
className="flex w-full items-center justify-between rounded border border-black/30 px-4 py-2 text-sm dark:border-white/30"
|
className="flex w-full items-center justify-between rounded-sm border border-black/30 px-4 py-2 text-sm dark:border-white/30"
|
||||||
>
|
>
|
||||||
<div>{active}</div>
|
<div>{active}</div>
|
||||||
<ChevronDownIcon className="h-4" />
|
<ChevronDownIcon className="h-4" />
|
||||||
|
@ -28,12 +28,12 @@ export default function FilterList({ list, title }: { list: ListItem[]; title?:
|
|||||||
<ul className="hidden md:block">
|
<ul className="hidden md:block">
|
||||||
<Suspense fallback={null}>
|
<Suspense fallback={null}>
|
||||||
<FilterItemList list={list} />
|
<FilterItemList list={list} />
|
||||||
</Suspense>{' '}
|
</Suspense>
|
||||||
</ul>
|
</ul>
|
||||||
<ul className="md:hidden">
|
<ul className="md:hidden">
|
||||||
<Suspense fallback={null}>
|
<Suspense fallback={null}>
|
||||||
<FilterItemDropdown list={list} />
|
<FilterItemDropdown list={list} />
|
||||||
</Suspense>{' '}
|
</Suspense>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</>
|
</>
|
||||||
|
@ -1,11 +1,15 @@
|
|||||||
import { ImageResponse } from 'next/og';
|
import { ImageResponse } from 'next/og';
|
||||||
import LogoIcon from './icons/logo';
|
import LogoIcon from './icons/logo';
|
||||||
|
import { join } from 'path';
|
||||||
|
import { readFile } from 'fs/promises';
|
||||||
|
|
||||||
export type Props = {
|
export type Props = {
|
||||||
title?: string;
|
title?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default async function OpengraphImage(props?: Props): Promise<ImageResponse> {
|
export default async function OpengraphImage(
|
||||||
|
props?: Props
|
||||||
|
): Promise<ImageResponse> {
|
||||||
const { title } = {
|
const { title } = {
|
||||||
...{
|
...{
|
||||||
title: process.env.SITE_NAME
|
title: process.env.SITE_NAME
|
||||||
@ -13,6 +17,9 @@ export default async function OpengraphImage(props?: Props): Promise<ImageRespon
|
|||||||
...props
|
...props
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const file = await readFile(join(process.cwd(), './fonts/Inter-Bold.ttf'));
|
||||||
|
const font = Uint8Array.from(file).buffer;
|
||||||
|
|
||||||
return new ImageResponse(
|
return new ImageResponse(
|
||||||
(
|
(
|
||||||
<div tw="flex h-full w-full flex-col items-center justify-center bg-black">
|
<div tw="flex h-full w-full flex-col items-center justify-center bg-black">
|
||||||
@ -28,9 +35,7 @@ export default async function OpengraphImage(props?: Props): Promise<ImageRespon
|
|||||||
fonts: [
|
fonts: [
|
||||||
{
|
{
|
||||||
name: 'Inter',
|
name: 'Inter',
|
||||||
data: await fetch(new URL('../fonts/Inter-Bold.ttf', import.meta.url)).then((res) =>
|
data: font,
|
||||||
res.arrayBuffer()
|
|
||||||
),
|
|
||||||
style: 'normal',
|
style: 'normal',
|
||||||
weight: 700
|
weight: 700
|
||||||
}
|
}
|
||||||
|
@ -2,32 +2,22 @@
|
|||||||
|
|
||||||
import { ArrowLeftIcon, ArrowRightIcon } from '@heroicons/react/24/outline';
|
import { ArrowLeftIcon, ArrowRightIcon } from '@heroicons/react/24/outline';
|
||||||
import { GridTileImage } from 'components/grid/tile';
|
import { GridTileImage } from 'components/grid/tile';
|
||||||
import { createUrl } from 'lib/utils';
|
import { useProduct, useUpdateURL } from 'components/product/product-context';
|
||||||
import Image from 'next/image';
|
import Image from 'next/image';
|
||||||
import Link from 'next/link';
|
|
||||||
import { usePathname, useSearchParams } from 'next/navigation';
|
|
||||||
|
|
||||||
export function Gallery({ images }: { images: { src: string; altText: string }[] }) {
|
export function Gallery({ images }: { images: { src: string; altText: string }[] }) {
|
||||||
const pathname = usePathname();
|
const { state, updateImage } = useProduct();
|
||||||
const searchParams = useSearchParams();
|
const updateURL = useUpdateURL();
|
||||||
const imageSearchParam = searchParams.get('image');
|
const imageIndex = state.image ? parseInt(state.image) : 0;
|
||||||
const imageIndex = imageSearchParam ? parseInt(imageSearchParam) : 0;
|
|
||||||
|
|
||||||
const nextSearchParams = new URLSearchParams(searchParams.toString());
|
|
||||||
const nextImageIndex = imageIndex + 1 < images.length ? imageIndex + 1 : 0;
|
const nextImageIndex = imageIndex + 1 < images.length ? imageIndex + 1 : 0;
|
||||||
nextSearchParams.set('image', nextImageIndex.toString());
|
|
||||||
const nextUrl = createUrl(pathname, nextSearchParams);
|
|
||||||
|
|
||||||
const previousSearchParams = new URLSearchParams(searchParams.toString());
|
|
||||||
const previousImageIndex = imageIndex === 0 ? images.length - 1 : imageIndex - 1;
|
const previousImageIndex = imageIndex === 0 ? images.length - 1 : imageIndex - 1;
|
||||||
previousSearchParams.set('image', previousImageIndex.toString());
|
|
||||||
const previousUrl = createUrl(pathname, previousSearchParams);
|
|
||||||
|
|
||||||
const buttonClassName =
|
const buttonClassName =
|
||||||
'h-full px-6 transition-all ease-in-out hover:scale-110 hover:text-black dark:hover:text-white flex items-center justify-center';
|
'h-full px-6 transition-all ease-in-out hover:scale-110 hover:text-black dark:hover:text-white flex items-center justify-center';
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<form>
|
||||||
<div className="relative aspect-square h-full max-h-[550px] w-full overflow-hidden">
|
<div className="relative aspect-square h-full max-h-[550px] w-full overflow-hidden">
|
||||||
{images[imageIndex] && (
|
{images[imageIndex] && (
|
||||||
<Image
|
<Image
|
||||||
@ -42,43 +32,46 @@ export function Gallery({ images }: { images: { src: string; altText: string }[]
|
|||||||
|
|
||||||
{images.length > 1 ? (
|
{images.length > 1 ? (
|
||||||
<div className="absolute bottom-[15%] flex w-full justify-center">
|
<div className="absolute bottom-[15%] flex w-full justify-center">
|
||||||
<div className="mx-auto flex h-11 items-center rounded-full border border-white bg-neutral-50/80 text-neutral-500 backdrop-blur dark:border-black dark:bg-neutral-900/80">
|
<div className="mx-auto flex h-11 items-center rounded-full border border-white bg-neutral-50/80 text-neutral-500 backdrop-blur-sm dark:border-black dark:bg-neutral-900/80">
|
||||||
<Link
|
<button
|
||||||
|
formAction={() => {
|
||||||
|
const newState = updateImage(previousImageIndex.toString());
|
||||||
|
updateURL(newState);
|
||||||
|
}}
|
||||||
aria-label="Previous product image"
|
aria-label="Previous product image"
|
||||||
href={previousUrl}
|
|
||||||
className={buttonClassName}
|
className={buttonClassName}
|
||||||
scroll={false}
|
|
||||||
>
|
>
|
||||||
<ArrowLeftIcon className="h-5" />
|
<ArrowLeftIcon className="h-5" />
|
||||||
</Link>
|
</button>
|
||||||
<div className="mx-1 h-6 w-px bg-neutral-500"></div>
|
<div className="mx-1 h-6 w-px bg-neutral-500"></div>
|
||||||
<Link
|
<button
|
||||||
|
formAction={() => {
|
||||||
|
const newState = updateImage(nextImageIndex.toString());
|
||||||
|
updateURL(newState);
|
||||||
|
}}
|
||||||
aria-label="Next product image"
|
aria-label="Next product image"
|
||||||
href={nextUrl}
|
|
||||||
className={buttonClassName}
|
className={buttonClassName}
|
||||||
scroll={false}
|
|
||||||
>
|
>
|
||||||
<ArrowRightIcon className="h-5" />
|
<ArrowRightIcon className="h-5" />
|
||||||
</Link>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
) : null}
|
) : null}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{images.length > 1 ? (
|
{images.length > 1 ? (
|
||||||
<ul className="my-12 flex items-center justify-center gap-2 overflow-auto py-1 lg:mb-0">
|
<ul className="my-12 flex items-center flex-wrap justify-center gap-2 overflow-auto py-1 lg:mb-0">
|
||||||
{images.map((image, index) => {
|
{images.map((image, index) => {
|
||||||
const isActive = index === imageIndex;
|
const isActive = index === imageIndex;
|
||||||
const imageSearchParams = new URLSearchParams(searchParams.toString());
|
|
||||||
|
|
||||||
imageSearchParams.set('image', index.toString());
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<li key={image.src} className="h-20 w-20">
|
<li key={image.src} className="h-20 w-20">
|
||||||
<Link
|
<button
|
||||||
aria-label="Enlarge product image"
|
formAction={() => {
|
||||||
href={createUrl(pathname, imageSearchParams)}
|
const newState = updateImage(index.toString());
|
||||||
scroll={false}
|
updateURL(newState);
|
||||||
|
}}
|
||||||
|
aria-label="Select product image"
|
||||||
className="h-full w-full"
|
className="h-full w-full"
|
||||||
>
|
>
|
||||||
<GridTileImage
|
<GridTileImage
|
||||||
@ -88,12 +81,12 @@ export function Gallery({ images }: { images: { src: string; altText: string }[]
|
|||||||
height={80}
|
height={80}
|
||||||
active={isActive}
|
active={isActive}
|
||||||
/>
|
/>
|
||||||
</Link>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</ul>
|
</ul>
|
||||||
) : null}
|
) : null}
|
||||||
</>
|
</form>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
81
components/product/product-context.tsx
Normal file
81
components/product/product-context.tsx
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import { useRouter, useSearchParams } from 'next/navigation';
|
||||||
|
import React, { createContext, useContext, useMemo, useOptimistic } from 'react';
|
||||||
|
|
||||||
|
type ProductState = {
|
||||||
|
[key: string]: string;
|
||||||
|
} & {
|
||||||
|
image?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
type ProductContextType = {
|
||||||
|
state: ProductState;
|
||||||
|
updateOption: (name: string, value: string) => ProductState;
|
||||||
|
updateImage: (index: string) => ProductState;
|
||||||
|
};
|
||||||
|
|
||||||
|
const ProductContext = createContext<ProductContextType | undefined>(undefined);
|
||||||
|
|
||||||
|
export function ProductProvider({ children }: { children: React.ReactNode }) {
|
||||||
|
const searchParams = useSearchParams();
|
||||||
|
|
||||||
|
const getInitialState = () => {
|
||||||
|
const params: ProductState = {};
|
||||||
|
for (const [key, value] of searchParams.entries()) {
|
||||||
|
params[key] = value;
|
||||||
|
}
|
||||||
|
return params;
|
||||||
|
};
|
||||||
|
|
||||||
|
const [state, setOptimisticState] = useOptimistic(
|
||||||
|
getInitialState(),
|
||||||
|
(prevState: ProductState, update: ProductState) => ({
|
||||||
|
...prevState,
|
||||||
|
...update
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
const updateOption = (name: string, value: string) => {
|
||||||
|
const newState = { [name]: value };
|
||||||
|
setOptimisticState(newState);
|
||||||
|
return { ...state, ...newState };
|
||||||
|
};
|
||||||
|
|
||||||
|
const updateImage = (index: string) => {
|
||||||
|
const newState = { image: index };
|
||||||
|
setOptimisticState(newState);
|
||||||
|
return { ...state, ...newState };
|
||||||
|
};
|
||||||
|
|
||||||
|
const value = useMemo(
|
||||||
|
() => ({
|
||||||
|
state,
|
||||||
|
updateOption,
|
||||||
|
updateImage
|
||||||
|
}),
|
||||||
|
[state]
|
||||||
|
);
|
||||||
|
|
||||||
|
return <ProductContext.Provider value={value}>{children}</ProductContext.Provider>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useProduct() {
|
||||||
|
const context = useContext(ProductContext);
|
||||||
|
if (context === undefined) {
|
||||||
|
throw new Error('useProduct must be used within a ProductProvider');
|
||||||
|
}
|
||||||
|
return context;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useUpdateURL() {
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
|
return (state: ProductState) => {
|
||||||
|
const newParams = new URLSearchParams(window.location.search);
|
||||||
|
Object.entries(state).forEach(([key, value]) => {
|
||||||
|
newParams.set(key, value);
|
||||||
|
});
|
||||||
|
router.push(`?${newParams.toString()}`, { scroll: false });
|
||||||
|
};
|
||||||
|
}
|
@ -2,7 +2,6 @@ import { AddToCart } from 'components/cart/add-to-cart';
|
|||||||
import Price from 'components/price';
|
import Price from 'components/price';
|
||||||
import Prose from 'components/prose';
|
import Prose from 'components/prose';
|
||||||
import { Product } from 'lib/shopify/types';
|
import { Product } from 'lib/shopify/types';
|
||||||
import { Suspense } from 'react';
|
|
||||||
import { VariantSelector } from './variant-selector';
|
import { VariantSelector } from './variant-selector';
|
||||||
|
|
||||||
export function ProductDescription({ product }: { product: Product }) {
|
export function ProductDescription({ product }: { product: Product }) {
|
||||||
@ -17,20 +16,14 @@ export function ProductDescription({ product }: { product: Product }) {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Suspense fallback={null}>
|
<VariantSelector options={product.options} variants={product.variants} />
|
||||||
<VariantSelector options={product.options} variants={product.variants} />
|
|
||||||
</Suspense>
|
|
||||||
|
|
||||||
{product.descriptionHtml ? (
|
{product.descriptionHtml ? (
|
||||||
<Prose
|
<Prose
|
||||||
className="mb-6 text-sm leading-tight dark:text-white/[60%]"
|
className="mb-6 text-sm leading-tight dark:text-white/[60%]"
|
||||||
html={product.descriptionHtml}
|
html={product.descriptionHtml}
|
||||||
/>
|
/>
|
||||||
) : null}
|
) : null}
|
||||||
|
<AddToCart product={product} />
|
||||||
<Suspense fallback={null}>
|
|
||||||
<AddToCart variants={product.variants} availableForSale={product.availableForSale} />
|
|
||||||
</Suspense>
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
|
import { useProduct, useUpdateURL } from 'components/product/product-context';
|
||||||
import { ProductOption, ProductVariant } from 'lib/shopify/types';
|
import { ProductOption, ProductVariant } from 'lib/shopify/types';
|
||||||
import { createUrl } from 'lib/utils';
|
|
||||||
import { usePathname, useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
|
|
||||||
type Combination = {
|
type Combination = {
|
||||||
id: string;
|
id: string;
|
||||||
availableForSale: boolean;
|
availableForSale: boolean;
|
||||||
[key: string]: string | boolean; // ie. { color: 'Red', size: 'Large', ... }
|
[key: string]: string | boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
export function VariantSelector({
|
export function VariantSelector({
|
||||||
@ -18,9 +17,8 @@ export function VariantSelector({
|
|||||||
options: ProductOption[];
|
options: ProductOption[];
|
||||||
variants: ProductVariant[];
|
variants: ProductVariant[];
|
||||||
}) {
|
}) {
|
||||||
const router = useRouter();
|
const { state, updateOption } = useProduct();
|
||||||
const pathname = usePathname();
|
const updateURL = useUpdateURL();
|
||||||
const searchParams = useSearchParams();
|
|
||||||
const hasNoOptionsOrJustOneOption =
|
const hasNoOptionsOrJustOneOption =
|
||||||
!options.length || (options.length === 1 && options[0]?.values.length === 1);
|
!options.length || (options.length === 1 && options[0]?.values.length === 1);
|
||||||
|
|
||||||
@ -31,7 +29,6 @@ export function VariantSelector({
|
|||||||
const combinations: Combination[] = variants.map((variant) => ({
|
const combinations: Combination[] = variants.map((variant) => ({
|
||||||
id: variant.id,
|
id: variant.id,
|
||||||
availableForSale: variant.availableForSale,
|
availableForSale: variant.availableForSale,
|
||||||
// Adds key / value pairs for each variant (ie. "color": "Black" and "size": 'M").
|
|
||||||
...variant.selectedOptions.reduce(
|
...variant.selectedOptions.reduce(
|
||||||
(accumulator, option) => ({ ...accumulator, [option.name.toLowerCase()]: option.value }),
|
(accumulator, option) => ({ ...accumulator, [option.name.toLowerCase()]: option.value }),
|
||||||
{}
|
{}
|
||||||
@ -39,68 +36,58 @@ export function VariantSelector({
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
return options.map((option) => (
|
return options.map((option) => (
|
||||||
<dl className="mb-8" key={option.id}>
|
<form key={option.id}>
|
||||||
<dt className="mb-4 text-sm uppercase tracking-wide">{option.name}</dt>
|
<dl className="mb-8">
|
||||||
<dd className="flex flex-wrap gap-3">
|
<dt className="mb-4 text-sm uppercase tracking-wide">{option.name}</dt>
|
||||||
{option.values.map((value) => {
|
<dd className="flex flex-wrap gap-3">
|
||||||
const optionNameLowerCase = option.name.toLowerCase();
|
{option.values.map((value) => {
|
||||||
|
const optionNameLowerCase = option.name.toLowerCase();
|
||||||
|
|
||||||
// Base option params on current params so we can preserve any other param state in the url.
|
// Base option params on current selectedOptions so we can preserve any other param state.
|
||||||
const optionSearchParams = new URLSearchParams(searchParams.toString());
|
const optionParams = { ...state, [optionNameLowerCase]: value };
|
||||||
|
|
||||||
// Update the option params using the current option to reflect how the url *would* change,
|
// Filter out invalid options and check if the option combination is available for sale.
|
||||||
// if the option was clicked.
|
const filtered = Object.entries(optionParams).filter(([key, value]) =>
|
||||||
optionSearchParams.set(optionNameLowerCase, value);
|
options.find(
|
||||||
const optionUrl = createUrl(pathname, optionSearchParams);
|
(option) => option.name.toLowerCase() === key && option.values.includes(value)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
const isAvailableForSale = combinations.find((combination) =>
|
||||||
|
filtered.every(
|
||||||
|
([key, value]) => combination[key] === value && combination.availableForSale
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
// In order to determine if an option is available for sale, we need to:
|
// The option is active if it's in the selected options.
|
||||||
//
|
const isActive = state[optionNameLowerCase] === value;
|
||||||
// 1. Filter out all other param state
|
|
||||||
// 2. Filter out invalid options
|
|
||||||
// 3. Check if the option combination is available for sale
|
|
||||||
//
|
|
||||||
// This is the "magic" that will cross check possible variant combinations and preemptively
|
|
||||||
// disable combinations that are not available. For example, if the color gray is only available in size medium,
|
|
||||||
// then all other sizes should be disabled.
|
|
||||||
const filtered = Array.from(optionSearchParams.entries()).filter(([key, value]) =>
|
|
||||||
options.find(
|
|
||||||
(option) => option.name.toLowerCase() === key && option.values.includes(value)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
const isAvailableForSale = combinations.find((combination) =>
|
|
||||||
filtered.every(
|
|
||||||
([key, value]) => combination[key] === value && combination.availableForSale
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
// The option is active if it's in the url params.
|
return (
|
||||||
const isActive = searchParams.get(optionNameLowerCase) === value;
|
<button
|
||||||
|
formAction={() => {
|
||||||
return (
|
const newState = updateOption(optionNameLowerCase, value);
|
||||||
<button
|
updateURL(newState);
|
||||||
key={value}
|
}}
|
||||||
aria-disabled={!isAvailableForSale}
|
key={value}
|
||||||
disabled={!isAvailableForSale}
|
aria-disabled={!isAvailableForSale}
|
||||||
onClick={() => {
|
disabled={!isAvailableForSale}
|
||||||
router.replace(optionUrl, { scroll: false });
|
title={`${option.name} ${value}${!isAvailableForSale ? ' (Out of Stock)' : ''}`}
|
||||||
}}
|
className={clsx(
|
||||||
title={`${option.name} ${value}${!isAvailableForSale ? ' (Out of Stock)' : ''}`}
|
'flex min-w-[48px] items-center justify-center rounded-full border bg-neutral-100 px-2 py-1 text-sm dark:border-neutral-800 dark:bg-neutral-900',
|
||||||
className={clsx(
|
{
|
||||||
'flex min-w-[48px] items-center justify-center rounded-full border bg-neutral-100 px-2 py-1 text-sm dark:border-neutral-800 dark:bg-neutral-900',
|
'cursor-default ring-2 ring-blue-600': isActive,
|
||||||
{
|
'ring-1 ring-transparent transition duration-300 ease-in-out hover:ring-blue-600':
|
||||||
'cursor-default ring-2 ring-blue-600': isActive,
|
!isActive && isAvailableForSale,
|
||||||
'ring-1 ring-transparent transition duration-300 ease-in-out hover:scale-110 hover:ring-blue-600 ':
|
'relative z-10 cursor-not-allowed overflow-hidden bg-neutral-100 text-neutral-500 ring-1 ring-neutral-300 before:absolute before:inset-x-0 before:-z-10 before:h-px before:-rotate-45 before:bg-neutral-300 before:transition-transform dark:bg-neutral-900 dark:text-neutral-400 dark:ring-neutral-700 dark:before:bg-neutral-700':
|
||||||
!isActive && isAvailableForSale,
|
!isAvailableForSale
|
||||||
'relative z-10 cursor-not-allowed overflow-hidden bg-neutral-100 text-neutral-500 ring-1 ring-neutral-300 before:absolute before:inset-x-0 before:-z-10 before:h-px before:-rotate-45 before:bg-neutral-300 before:transition-transform dark:bg-neutral-900 dark:text-neutral-400 dark:ring-neutral-700 before:dark:bg-neutral-700':
|
}
|
||||||
!isAvailableForSale
|
)}
|
||||||
}
|
>
|
||||||
)}
|
{value}
|
||||||
>
|
</button>
|
||||||
{value}
|
);
|
||||||
</button>
|
})}
|
||||||
);
|
</dd>
|
||||||
})}
|
</dl>
|
||||||
</dd>
|
</form>
|
||||||
</dl>
|
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
@ -1,19 +1,13 @@
|
|||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import type { FunctionComponent } from 'react';
|
|
||||||
|
|
||||||
interface TextProps {
|
const Prose = ({ html, className }: { html: string; className?: string }) => {
|
||||||
html: string;
|
|
||||||
className?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
const Prose: FunctionComponent<TextProps> = ({ html, className }) => {
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={clsx(
|
className={clsx(
|
||||||
'prose mx-auto max-w-6xl text-base leading-7 text-black prose-headings:mt-8 prose-headings:font-semibold prose-headings:tracking-wide prose-headings:text-black prose-h1:text-5xl prose-h2:text-4xl prose-h3:text-3xl prose-h4:text-2xl prose-h5:text-xl prose-h6:text-lg prose-a:text-black prose-a:underline hover:prose-a:text-neutral-300 prose-strong:text-black prose-ol:mt-8 prose-ol:list-decimal prose-ol:pl-6 prose-ul:mt-8 prose-ul:list-disc prose-ul:pl-6 dark:text-white dark:prose-headings:text-white dark:prose-a:text-white dark:prose-strong:text-white',
|
'prose mx-auto max-w-6xl text-base leading-7 text-black prose-headings:mt-8 prose-headings:font-semibold prose-headings:tracking-wide prose-headings:text-black prose-h1:text-5xl prose-h2:text-4xl prose-h3:text-3xl prose-h4:text-2xl prose-h5:text-xl prose-h6:text-lg prose-a:text-black prose-a:underline prose-a:hover:text-neutral-300 prose-strong:text-black prose-ol:mt-8 prose-ol:list-decimal prose-ol:pl-6 prose-ul:mt-8 prose-ul:list-disc prose-ul:pl-6 dark:text-white dark:prose-headings:text-white dark:prose-a:text-white dark:prose-strong:text-white',
|
||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
dangerouslySetInnerHTML={{ __html: html as string }}
|
dangerouslySetInnerHTML={{ __html: html }}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
35
components/welcome-toast.tsx
Normal file
35
components/welcome-toast.tsx
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import { useEffect } from 'react';
|
||||||
|
import { toast } from 'sonner';
|
||||||
|
|
||||||
|
export function WelcomeToast() {
|
||||||
|
useEffect(() => {
|
||||||
|
// ignore if screen height is too small
|
||||||
|
if (window.innerHeight < 650) return;
|
||||||
|
if (!document.cookie.includes('welcome-toast=2')) {
|
||||||
|
toast('🛍️ Welcome to Next.js Commerce!', {
|
||||||
|
id: 'welcome-toast',
|
||||||
|
duration: Infinity,
|
||||||
|
onDismiss: () => {
|
||||||
|
document.cookie = 'welcome-toast=2; max-age=31536000; path=/';
|
||||||
|
},
|
||||||
|
description: (
|
||||||
|
<>
|
||||||
|
This is a high-performance, SSR storefront powered by Shopify, Next.js, and Vercel.{' '}
|
||||||
|
<a
|
||||||
|
href="https://vercel.com/templates/next.js/nextjs-commerce"
|
||||||
|
className="text-blue-600 hover:underline"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
Deploy your own
|
||||||
|
</a>
|
||||||
|
.
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
@ -1,8 +1,16 @@
|
|||||||
import { HIDDEN_PRODUCT_TAG, SHOPIFY_GRAPHQL_API_ENDPOINT, TAGS } from 'lib/constants';
|
import {
|
||||||
|
HIDDEN_PRODUCT_TAG,
|
||||||
|
SHOPIFY_GRAPHQL_API_ENDPOINT,
|
||||||
|
TAGS
|
||||||
|
} from 'lib/constants';
|
||||||
import { isShopifyError } from 'lib/type-guards';
|
import { isShopifyError } from 'lib/type-guards';
|
||||||
import { ensureStartsWith } from 'lib/utils';
|
import { ensureStartsWith } from 'lib/utils';
|
||||||
import { revalidateTag } from 'next/cache';
|
import {
|
||||||
import { headers } from 'next/headers';
|
revalidateTag,
|
||||||
|
unstable_cacheTag as cacheTag,
|
||||||
|
unstable_cacheLife as cacheLife
|
||||||
|
} from 'next/cache';
|
||||||
|
import { cookies, headers } from 'next/headers';
|
||||||
import { NextRequest, NextResponse } from 'next/server';
|
import { NextRequest, NextResponse } from 'next/server';
|
||||||
import {
|
import {
|
||||||
addToCartMutation,
|
addToCartMutation,
|
||||||
@ -56,19 +64,17 @@ const domain = process.env.SHOPIFY_STORE_DOMAIN
|
|||||||
const endpoint = `${domain}${SHOPIFY_GRAPHQL_API_ENDPOINT}`;
|
const endpoint = `${domain}${SHOPIFY_GRAPHQL_API_ENDPOINT}`;
|
||||||
const key = process.env.SHOPIFY_STOREFRONT_ACCESS_TOKEN!;
|
const key = process.env.SHOPIFY_STOREFRONT_ACCESS_TOKEN!;
|
||||||
|
|
||||||
type ExtractVariables<T> = T extends { variables: object } ? T['variables'] : never;
|
type ExtractVariables<T> = T extends { variables: object }
|
||||||
|
? T['variables']
|
||||||
|
: never;
|
||||||
|
|
||||||
export async function shopifyFetch<T>({
|
export async function shopifyFetch<T>({
|
||||||
cache = 'force-cache',
|
|
||||||
headers,
|
headers,
|
||||||
query,
|
query,
|
||||||
tags,
|
|
||||||
variables
|
variables
|
||||||
}: {
|
}: {
|
||||||
cache?: RequestCache;
|
|
||||||
headers?: HeadersInit;
|
headers?: HeadersInit;
|
||||||
query: string;
|
query: string;
|
||||||
tags?: string[];
|
|
||||||
variables?: ExtractVariables<T>;
|
variables?: ExtractVariables<T>;
|
||||||
}): Promise<{ status: number; body: T } | never> {
|
}): Promise<{ status: number; body: T } | never> {
|
||||||
try {
|
try {
|
||||||
@ -82,9 +88,7 @@ export async function shopifyFetch<T>({
|
|||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
...(query && { query }),
|
...(query && { query }),
|
||||||
...(variables && { variables })
|
...(variables && { variables })
|
||||||
}),
|
})
|
||||||
cache,
|
|
||||||
...(tags && { next: { tags } })
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const body = await result.json();
|
const body = await result.json();
|
||||||
@ -114,7 +118,7 @@ export async function shopifyFetch<T>({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const removeEdgesAndNodes = (array: Connection<any>) => {
|
const removeEdgesAndNodes = <T>(array: Connection<T>): T[] => {
|
||||||
return array.edges.map((edge) => edge?.node);
|
return array.edges.map((edge) => edge?.node);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -122,7 +126,7 @@ const reshapeCart = (cart: ShopifyCart): Cart => {
|
|||||||
if (!cart.cost?.totalTaxAmount) {
|
if (!cart.cost?.totalTaxAmount) {
|
||||||
cart.cost.totalTaxAmount = {
|
cart.cost.totalTaxAmount = {
|
||||||
amount: '0.0',
|
amount: '0.0',
|
||||||
currencyCode: 'USD'
|
currencyCode: cart.cost.totalAmount.currencyCode
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -132,7 +136,9 @@ const reshapeCart = (cart: ShopifyCart): Cart => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
const reshapeCollection = (collection: ShopifyCollection): Collection | undefined => {
|
const reshapeCollection = (
|
||||||
|
collection: ShopifyCollection
|
||||||
|
): Collection | undefined => {
|
||||||
if (!collection) {
|
if (!collection) {
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
@ -163,7 +169,7 @@ const reshapeImages = (images: Connection<Image>, productTitle: string) => {
|
|||||||
const flattened = removeEdgesAndNodes(images);
|
const flattened = removeEdgesAndNodes(images);
|
||||||
|
|
||||||
return flattened.map((image) => {
|
return flattened.map((image) => {
|
||||||
const filename = image.url.match(/.*\/(.*)\..*/)[1];
|
const filename = image.url.match(/.*\/(.*)\..*/)?.[1];
|
||||||
return {
|
return {
|
||||||
...image,
|
...image,
|
||||||
altText: image.altText || `${productTitle} - ${filename}`
|
altText: image.altText || `${productTitle} - ${filename}`
|
||||||
@ -171,8 +177,14 @@ const reshapeImages = (images: Connection<Image>, productTitle: string) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const reshapeProduct = (product: ShopifyProduct, filterHiddenProducts: boolean = true) => {
|
const reshapeProduct = (
|
||||||
if (!product || (filterHiddenProducts && product.tags.includes(HIDDEN_PRODUCT_TAG))) {
|
product: ShopifyProduct,
|
||||||
|
filterHiddenProducts: boolean = true
|
||||||
|
) => {
|
||||||
|
if (
|
||||||
|
!product ||
|
||||||
|
(filterHiddenProducts && product.tags.includes(HIDDEN_PRODUCT_TAG))
|
||||||
|
) {
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -203,63 +215,64 @@ const reshapeProducts = (products: ShopifyProduct[]) => {
|
|||||||
|
|
||||||
export async function createCart(): Promise<Cart> {
|
export async function createCart(): Promise<Cart> {
|
||||||
const res = await shopifyFetch<ShopifyCreateCartOperation>({
|
const res = await shopifyFetch<ShopifyCreateCartOperation>({
|
||||||
query: createCartMutation,
|
query: createCartMutation
|
||||||
cache: 'no-store'
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return reshapeCart(res.body.data.cartCreate.cart);
|
return reshapeCart(res.body.data.cartCreate.cart);
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function addToCart(
|
export async function addToCart(
|
||||||
cartId: string,
|
|
||||||
lines: { merchandiseId: string; quantity: number }[]
|
lines: { merchandiseId: string; quantity: number }[]
|
||||||
): Promise<Cart> {
|
): Promise<Cart> {
|
||||||
|
const cartId = (await cookies()).get('cartId')?.value!;
|
||||||
const res = await shopifyFetch<ShopifyAddToCartOperation>({
|
const res = await shopifyFetch<ShopifyAddToCartOperation>({
|
||||||
query: addToCartMutation,
|
query: addToCartMutation,
|
||||||
variables: {
|
variables: {
|
||||||
cartId,
|
cartId,
|
||||||
lines
|
lines
|
||||||
},
|
}
|
||||||
cache: 'no-store'
|
|
||||||
});
|
});
|
||||||
return reshapeCart(res.body.data.cartLinesAdd.cart);
|
return reshapeCart(res.body.data.cartLinesAdd.cart);
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function removeFromCart(cartId: string, lineIds: string[]): Promise<Cart> {
|
export async function removeFromCart(lineIds: string[]): Promise<Cart> {
|
||||||
|
const cartId = (await cookies()).get('cartId')?.value!;
|
||||||
const res = await shopifyFetch<ShopifyRemoveFromCartOperation>({
|
const res = await shopifyFetch<ShopifyRemoveFromCartOperation>({
|
||||||
query: removeFromCartMutation,
|
query: removeFromCartMutation,
|
||||||
variables: {
|
variables: {
|
||||||
cartId,
|
cartId,
|
||||||
lineIds
|
lineIds
|
||||||
},
|
}
|
||||||
cache: 'no-store'
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return reshapeCart(res.body.data.cartLinesRemove.cart);
|
return reshapeCart(res.body.data.cartLinesRemove.cart);
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function updateCart(
|
export async function updateCart(
|
||||||
cartId: string,
|
|
||||||
lines: { id: string; merchandiseId: string; quantity: number }[]
|
lines: { id: string; merchandiseId: string; quantity: number }[]
|
||||||
): Promise<Cart> {
|
): Promise<Cart> {
|
||||||
|
const cartId = (await cookies()).get('cartId')?.value!;
|
||||||
const res = await shopifyFetch<ShopifyUpdateCartOperation>({
|
const res = await shopifyFetch<ShopifyUpdateCartOperation>({
|
||||||
query: editCartItemsMutation,
|
query: editCartItemsMutation,
|
||||||
variables: {
|
variables: {
|
||||||
cartId,
|
cartId,
|
||||||
lines
|
lines
|
||||||
},
|
}
|
||||||
cache: 'no-store'
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return reshapeCart(res.body.data.cartLinesUpdate.cart);
|
return reshapeCart(res.body.data.cartLinesUpdate.cart);
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getCart(cartId: string): Promise<Cart | undefined> {
|
export async function getCart(): Promise<Cart | undefined> {
|
||||||
|
const cartId = (await cookies()).get('cartId')?.value;
|
||||||
|
|
||||||
|
if (!cartId) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
const res = await shopifyFetch<ShopifyCartOperation>({
|
const res = await shopifyFetch<ShopifyCartOperation>({
|
||||||
query: getCartQuery,
|
query: getCartQuery,
|
||||||
variables: { cartId },
|
variables: { cartId }
|
||||||
tags: [TAGS.cart],
|
|
||||||
cache: 'no-store'
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Old carts becomes `null` when you checkout.
|
// Old carts becomes `null` when you checkout.
|
||||||
@ -270,10 +283,15 @@ export async function getCart(cartId: string): Promise<Cart | undefined> {
|
|||||||
return reshapeCart(res.body.data.cart);
|
return reshapeCart(res.body.data.cart);
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getCollection(handle: string): Promise<Collection | undefined> {
|
export async function getCollection(
|
||||||
|
handle: string
|
||||||
|
): Promise<Collection | undefined> {
|
||||||
|
'use cache';
|
||||||
|
cacheTag(TAGS.collections);
|
||||||
|
cacheLife('days');
|
||||||
|
|
||||||
const res = await shopifyFetch<ShopifyCollectionOperation>({
|
const res = await shopifyFetch<ShopifyCollectionOperation>({
|
||||||
query: getCollectionQuery,
|
query: getCollectionQuery,
|
||||||
tags: [TAGS.collections],
|
|
||||||
variables: {
|
variables: {
|
||||||
handle
|
handle
|
||||||
}
|
}
|
||||||
@ -291,9 +309,12 @@ export async function getCollectionProducts({
|
|||||||
reverse?: boolean;
|
reverse?: boolean;
|
||||||
sortKey?: string;
|
sortKey?: string;
|
||||||
}): Promise<Product[]> {
|
}): Promise<Product[]> {
|
||||||
|
'use cache';
|
||||||
|
cacheTag(TAGS.collections, TAGS.products);
|
||||||
|
cacheLife('days');
|
||||||
|
|
||||||
const res = await shopifyFetch<ShopifyCollectionProductsOperation>({
|
const res = await shopifyFetch<ShopifyCollectionProductsOperation>({
|
||||||
query: getCollectionProductsQuery,
|
query: getCollectionProductsQuery,
|
||||||
tags: [TAGS.collections, TAGS.products],
|
|
||||||
variables: {
|
variables: {
|
||||||
handle: collection,
|
handle: collection,
|
||||||
reverse,
|
reverse,
|
||||||
@ -306,13 +327,18 @@ export async function getCollectionProducts({
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
return reshapeProducts(removeEdgesAndNodes(res.body.data.collection.products));
|
return reshapeProducts(
|
||||||
|
removeEdgesAndNodes(res.body.data.collection.products)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getCollections(): Promise<Collection[]> {
|
export async function getCollections(): Promise<Collection[]> {
|
||||||
|
'use cache';
|
||||||
|
cacheTag(TAGS.collections);
|
||||||
|
cacheLife('days');
|
||||||
|
|
||||||
const res = await shopifyFetch<ShopifyCollectionsOperation>({
|
const res = await shopifyFetch<ShopifyCollectionsOperation>({
|
||||||
query: getCollectionsQuery,
|
query: getCollectionsQuery
|
||||||
tags: [TAGS.collections]
|
|
||||||
});
|
});
|
||||||
const shopifyCollections = removeEdgesAndNodes(res.body?.data?.collections);
|
const shopifyCollections = removeEdgesAndNodes(res.body?.data?.collections);
|
||||||
const collections = [
|
const collections = [
|
||||||
@ -338,9 +364,12 @@ export async function getCollections(): Promise<Collection[]> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function getMenu(handle: string): Promise<Menu[]> {
|
export async function getMenu(handle: string): Promise<Menu[]> {
|
||||||
|
'use cache';
|
||||||
|
cacheTag(TAGS.collections);
|
||||||
|
cacheLife('days');
|
||||||
|
|
||||||
const res = await shopifyFetch<ShopifyMenuOperation>({
|
const res = await shopifyFetch<ShopifyMenuOperation>({
|
||||||
query: getMenuQuery,
|
query: getMenuQuery,
|
||||||
tags: [TAGS.collections],
|
|
||||||
variables: {
|
variables: {
|
||||||
handle
|
handle
|
||||||
}
|
}
|
||||||
@ -349,7 +378,10 @@ export async function getMenu(handle: string): Promise<Menu[]> {
|
|||||||
return (
|
return (
|
||||||
res.body?.data?.menu?.items.map((item: { title: string; url: string }) => ({
|
res.body?.data?.menu?.items.map((item: { title: string; url: string }) => ({
|
||||||
title: item.title,
|
title: item.title,
|
||||||
path: item.url.replace(domain, '').replace('/collections', '/search').replace('/pages', '')
|
path: item.url
|
||||||
|
.replace(domain, '')
|
||||||
|
.replace('/collections', '/search')
|
||||||
|
.replace('/pages', '')
|
||||||
})) || []
|
})) || []
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -372,9 +404,12 @@ export async function getPages(): Promise<Page[]> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function getProduct(handle: string): Promise<Product | undefined> {
|
export async function getProduct(handle: string): Promise<Product | undefined> {
|
||||||
|
'use cache';
|
||||||
|
cacheTag(TAGS.products);
|
||||||
|
cacheLife('days');
|
||||||
|
|
||||||
const res = await shopifyFetch<ShopifyProductOperation>({
|
const res = await shopifyFetch<ShopifyProductOperation>({
|
||||||
query: getProductQuery,
|
query: getProductQuery,
|
||||||
tags: [TAGS.products],
|
|
||||||
variables: {
|
variables: {
|
||||||
handle
|
handle
|
||||||
}
|
}
|
||||||
@ -383,10 +418,15 @@ export async function getProduct(handle: string): Promise<Product | undefined> {
|
|||||||
return reshapeProduct(res.body.data.product, false);
|
return reshapeProduct(res.body.data.product, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getProductRecommendations(productId: string): Promise<Product[]> {
|
export async function getProductRecommendations(
|
||||||
|
productId: string
|
||||||
|
): Promise<Product[]> {
|
||||||
|
'use cache';
|
||||||
|
cacheTag(TAGS.products);
|
||||||
|
cacheLife('days');
|
||||||
|
|
||||||
const res = await shopifyFetch<ShopifyProductRecommendationsOperation>({
|
const res = await shopifyFetch<ShopifyProductRecommendationsOperation>({
|
||||||
query: getProductRecommendationsQuery,
|
query: getProductRecommendationsQuery,
|
||||||
tags: [TAGS.products],
|
|
||||||
variables: {
|
variables: {
|
||||||
productId
|
productId
|
||||||
}
|
}
|
||||||
@ -404,9 +444,12 @@ export async function getProducts({
|
|||||||
reverse?: boolean;
|
reverse?: boolean;
|
||||||
sortKey?: string;
|
sortKey?: string;
|
||||||
}): Promise<Product[]> {
|
}): Promise<Product[]> {
|
||||||
|
'use cache';
|
||||||
|
cacheTag(TAGS.products);
|
||||||
|
cacheLife('days');
|
||||||
|
|
||||||
const res = await shopifyFetch<ShopifyProductsOperation>({
|
const res = await shopifyFetch<ShopifyProductsOperation>({
|
||||||
query: getProductsQuery,
|
query: getProductsQuery,
|
||||||
tags: [TAGS.products],
|
|
||||||
variables: {
|
variables: {
|
||||||
query,
|
query,
|
||||||
reverse,
|
reverse,
|
||||||
@ -421,16 +464,24 @@ export async function getProducts({
|
|||||||
export async function revalidate(req: NextRequest): Promise<NextResponse> {
|
export async function revalidate(req: NextRequest): Promise<NextResponse> {
|
||||||
// We always need to respond with a 200 status code to Shopify,
|
// We always need to respond with a 200 status code to Shopify,
|
||||||
// otherwise it will continue to retry the request.
|
// otherwise it will continue to retry the request.
|
||||||
const collectionWebhooks = ['collections/create', 'collections/delete', 'collections/update'];
|
const collectionWebhooks = [
|
||||||
const productWebhooks = ['products/create', 'products/delete', 'products/update'];
|
'collections/create',
|
||||||
const topic = headers().get('x-shopify-topic') || 'unknown';
|
'collections/delete',
|
||||||
|
'collections/update'
|
||||||
|
];
|
||||||
|
const productWebhooks = [
|
||||||
|
'products/create',
|
||||||
|
'products/delete',
|
||||||
|
'products/update'
|
||||||
|
];
|
||||||
|
const topic = (await headers()).get('x-shopify-topic') || 'unknown';
|
||||||
const secret = req.nextUrl.searchParams.get('secret');
|
const secret = req.nextUrl.searchParams.get('secret');
|
||||||
const isCollectionUpdate = collectionWebhooks.includes(topic);
|
const isCollectionUpdate = collectionWebhooks.includes(topic);
|
||||||
const isProductUpdate = productWebhooks.includes(topic);
|
const isProductUpdate = productWebhooks.includes(topic);
|
||||||
|
|
||||||
if (!secret || secret !== process.env.SHOPIFY_REVALIDATION_SECRET) {
|
if (!secret || secret !== process.env.SHOPIFY_REVALIDATION_SECRET) {
|
||||||
console.error('Invalid revalidation secret.');
|
console.error('Invalid revalidation secret.');
|
||||||
return NextResponse.json({ status: 200 });
|
return NextResponse.json({ status: 401 });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isCollectionUpdate && !isProductUpdate) {
|
if (!isCollectionUpdate && !isProductUpdate) {
|
||||||
|
@ -12,8 +12,15 @@ export type Cart = Omit<ShopifyCart, 'lines'> & {
|
|||||||
lines: CartItem[];
|
lines: CartItem[];
|
||||||
};
|
};
|
||||||
|
|
||||||
export type CartItem = {
|
export type CartProduct = {
|
||||||
id: string;
|
id: string;
|
||||||
|
handle: string;
|
||||||
|
title: string;
|
||||||
|
featuredImage: Image;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type CartItem = {
|
||||||
|
id: string | undefined;
|
||||||
quantity: number;
|
quantity: number;
|
||||||
cost: {
|
cost: {
|
||||||
totalAmount: Money;
|
totalAmount: Money;
|
||||||
@ -25,7 +32,7 @@ export type CartItem = {
|
|||||||
name: string;
|
name: string;
|
||||||
value: string;
|
value: string;
|
||||||
}[];
|
}[];
|
||||||
product: Product;
|
product: CartProduct;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -89,7 +96,7 @@ export type SEO = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type ShopifyCart = {
|
export type ShopifyCart = {
|
||||||
id: string;
|
id: string | undefined;
|
||||||
checkoutUrl: string;
|
checkoutUrl: string;
|
||||||
cost: {
|
cost: {
|
||||||
subtotalAmount: Money;
|
subtotalAmount: Money;
|
||||||
|
18
lib/utils.ts
18
lib/utils.ts
@ -1,6 +1,13 @@
|
|||||||
import { ReadonlyURLSearchParams } from 'next/navigation';
|
import { ReadonlyURLSearchParams } from 'next/navigation';
|
||||||
|
|
||||||
export const createUrl = (pathname: string, params: URLSearchParams | ReadonlyURLSearchParams) => {
|
export const baseUrl = process.env.VERCEL_PROJECT_PRODUCTION_URL
|
||||||
|
? `https://${process.env.VERCEL_PROJECT_PRODUCTION_URL}`
|
||||||
|
: 'http://localhost:3000';
|
||||||
|
|
||||||
|
export const createUrl = (
|
||||||
|
pathname: string,
|
||||||
|
params: URLSearchParams | ReadonlyURLSearchParams
|
||||||
|
) => {
|
||||||
const paramsString = params.toString();
|
const paramsString = params.toString();
|
||||||
const queryString = `${paramsString.length ? '?' : ''}${paramsString}`;
|
const queryString = `${paramsString.length ? '?' : ''}${paramsString}`;
|
||||||
|
|
||||||
@ -8,10 +15,15 @@ export const createUrl = (pathname: string, params: URLSearchParams | ReadonlyUR
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const ensureStartsWith = (stringToCheck: string, startsWith: string) =>
|
export const ensureStartsWith = (stringToCheck: string, startsWith: string) =>
|
||||||
stringToCheck.startsWith(startsWith) ? stringToCheck : `${startsWith}${stringToCheck}`;
|
stringToCheck.startsWith(startsWith)
|
||||||
|
? stringToCheck
|
||||||
|
: `${startsWith}${stringToCheck}`;
|
||||||
|
|
||||||
export const validateEnvironmentVariables = () => {
|
export const validateEnvironmentVariables = () => {
|
||||||
const requiredEnvironmentVariables = ['SHOPIFY_STORE_DOMAIN', 'SHOPIFY_STOREFRONT_ACCESS_TOKEN'];
|
const requiredEnvironmentVariables = [
|
||||||
|
'SHOPIFY_STORE_DOMAIN',
|
||||||
|
'SHOPIFY_STOREFRONT_ACCESS_TOKEN'
|
||||||
|
];
|
||||||
const missingEnvironmentVariables = [] as string[];
|
const missingEnvironmentVariables = [] as string[];
|
||||||
|
|
||||||
requiredEnvironmentVariables.forEach((envVar) => {
|
requiredEnvironmentVariables.forEach((envVar) => {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2023 Vercel, Inc.
|
Copyright (c) 2025 Vercel, Inc.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
/** @type {import('next').NextConfig} */
|
|
||||||
module.exports = {
|
|
||||||
eslint: {
|
|
||||||
// Disabling on production builds because we're running checks on PRs via GitHub Actions.
|
|
||||||
ignoreDuringBuilds: true
|
|
||||||
},
|
|
||||||
images: {
|
|
||||||
formats: ['image/avif', 'image/webp'],
|
|
||||||
remotePatterns: [
|
|
||||||
{
|
|
||||||
protocol: 'https',
|
|
||||||
hostname: 'cdn.shopify.com',
|
|
||||||
pathname: '/s/files/**'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
async redirects() {
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
source: '/password',
|
|
||||||
destination: '/',
|
|
||||||
permanent: true
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
};
|
|
19
next.config.ts
Normal file
19
next.config.ts
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
export default {
|
||||||
|
experimental: {
|
||||||
|
ppr: true,
|
||||||
|
inlineCss: true,
|
||||||
|
useCache: true,
|
||||||
|
reactOwnerStack: true,
|
||||||
|
newDevOverlay: true
|
||||||
|
},
|
||||||
|
images: {
|
||||||
|
formats: ['image/avif', 'image/webp'],
|
||||||
|
remotePatterns: [
|
||||||
|
{
|
||||||
|
protocol: 'https',
|
||||||
|
hostname: 'cdn.shopify.com',
|
||||||
|
pathname: '/s/files/**'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
};
|
58
package.json
58
package.json
@ -1,52 +1,34 @@
|
|||||||
{
|
{
|
||||||
"private": true,
|
"private": true,
|
||||||
"packageManager": "pnpm@8.2.0",
|
|
||||||
"engines": {
|
|
||||||
"node": ">=18",
|
|
||||||
"pnpm": ">=7"
|
|
||||||
},
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev --turbo",
|
"dev": "next dev --turbopack",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"lint": "next lint",
|
|
||||||
"lint-staged": "lint-staged",
|
|
||||||
"prettier": "prettier --write --ignore-unknown .",
|
"prettier": "prettier --write --ignore-unknown .",
|
||||||
"prettier:check": "prettier --check --ignore-unknown .",
|
"prettier:check": "prettier --check --ignore-unknown .",
|
||||||
"test": "pnpm lint && pnpm prettier:check"
|
"test": "pnpm prettier:check"
|
||||||
},
|
|
||||||
"git": {
|
|
||||||
"pre-commit": "lint-staged"
|
|
||||||
},
|
|
||||||
"lint-staged": {
|
|
||||||
"*": "prettier --write --ignore-unknown"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@headlessui/react": "^1.7.18",
|
"@headlessui/react": "^2.2.0",
|
||||||
"@heroicons/react": "^2.1.3",
|
"@heroicons/react": "^2.2.0",
|
||||||
"clsx": "^2.1.0",
|
"clsx": "^2.1.1",
|
||||||
"geist": "^1.3.0",
|
"geist": "^1.3.1",
|
||||||
"next": "14.1.4",
|
"next": "15.2.0-canary.67",
|
||||||
"react": "18.2.0",
|
"react": "19.0.0",
|
||||||
"react-dom": "18.2.0"
|
"react-dom": "19.0.0",
|
||||||
|
"sonner": "^2.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tailwindcss/container-queries": "^0.1.1",
|
"@tailwindcss/container-queries": "^0.1.1",
|
||||||
"@tailwindcss/typography": "^0.5.11",
|
"@tailwindcss/postcss": "^4.0.8",
|
||||||
"@types/node": "20.11.30",
|
"@tailwindcss/typography": "^0.5.16",
|
||||||
"@types/react": "18.2.72",
|
"@types/node": "22.13.4",
|
||||||
"@types/react-dom": "18.2.22",
|
"@types/react": "19.0.10",
|
||||||
"@vercel/git-hooks": "^1.0.0",
|
"@types/react-dom": "19.0.4",
|
||||||
"autoprefixer": "^10.4.19",
|
"postcss": "^8.5.3",
|
||||||
"eslint": "^8.57.0",
|
"prettier": "3.5.1",
|
||||||
"eslint-config-next": "^14.1.4",
|
"prettier-plugin-tailwindcss": "^0.6.11",
|
||||||
"eslint-config-prettier": "^9.1.0",
|
"tailwindcss": "^4.0.8",
|
||||||
"eslint-plugin-unicorn": "^51.0.1",
|
"typescript": "5.7.3"
|
||||||
"lint-staged": "^15.2.2",
|
|
||||||
"postcss": "^8.4.38",
|
|
||||||
"prettier": "3.2.5",
|
|
||||||
"prettier-plugin-tailwindcss": "^0.5.12",
|
|
||||||
"tailwindcss": "^3.4.1",
|
|
||||||
"typescript": "5.4.3"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
4368
pnpm-lock.yaml
generated
4368
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
plugins: {
|
|
||||||
tailwindcss: {},
|
|
||||||
autoprefixer: {}
|
|
||||||
}
|
|
||||||
};
|
|
6
postcss.config.mjs
Normal file
6
postcss.config.mjs
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/** @type {import('postcss-load-config').Config} */
|
||||||
|
export default {
|
||||||
|
plugins: {
|
||||||
|
'@tailwindcss/postcss': {},
|
||||||
|
}
|
||||||
|
};
|
@ -1,9 +0,0 @@
|
|||||||
/** @type {import('prettier').Config} */
|
|
||||||
module.exports = {
|
|
||||||
singleQuote: true,
|
|
||||||
arrowParens: 'always',
|
|
||||||
trailingComma: 'none',
|
|
||||||
printWidth: 100,
|
|
||||||
tabWidth: 2,
|
|
||||||
plugins: ['prettier-plugin-tailwindcss']
|
|
||||||
};
|
|
@ -1,54 +0,0 @@
|
|||||||
const plugin = require('tailwindcss/plugin');
|
|
||||||
|
|
||||||
/** @type {import('tailwindcss').Config} */
|
|
||||||
module.exports = {
|
|
||||||
content: ['./app/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
|
|
||||||
theme: {
|
|
||||||
extend: {
|
|
||||||
fontFamily: {
|
|
||||||
sans: ['var(--font-geist-sans)']
|
|
||||||
},
|
|
||||||
keyframes: {
|
|
||||||
fadeIn: {
|
|
||||||
from: { opacity: 0 },
|
|
||||||
to: { opacity: 1 }
|
|
||||||
},
|
|
||||||
marquee: {
|
|
||||||
'0%': { transform: 'translateX(0%)' },
|
|
||||||
'100%': { transform: 'translateX(-100%)' }
|
|
||||||
},
|
|
||||||
blink: {
|
|
||||||
'0%': { opacity: 0.2 },
|
|
||||||
'20%': { opacity: 1 },
|
|
||||||
'100% ': { opacity: 0.2 }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
animation: {
|
|
||||||
fadeIn: 'fadeIn .3s ease-in-out',
|
|
||||||
carousel: 'marquee 60s linear infinite',
|
|
||||||
blink: 'blink 1.4s both infinite'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
future: {
|
|
||||||
hoverOnlyWhenSupported: true
|
|
||||||
},
|
|
||||||
plugins: [
|
|
||||||
require('@tailwindcss/container-queries'),
|
|
||||||
require('@tailwindcss/typography'),
|
|
||||||
plugin(({ matchUtilities, theme }) => {
|
|
||||||
matchUtilities(
|
|
||||||
{
|
|
||||||
'animation-delay': (value) => {
|
|
||||||
return {
|
|
||||||
'animation-delay': value
|
|
||||||
};
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
values: theme('transitionDelay')
|
|
||||||
}
|
|
||||||
);
|
|
||||||
})
|
|
||||||
]
|
|
||||||
};
|
|
@ -1,7 +1,8 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "es5",
|
"target": "es2015",
|
||||||
"lib": ["dom", "dom.iterable", "esnext"],
|
"lib": ["dom", "dom.iterable", "esnext"],
|
||||||
|
"downlevelIteration": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user