mirror of
https://github.com/vercel/commerce.git
synced 2025-05-08 18:57:51 +00:00
commit 408d6eb7583470eb84fd0e85895f97dad864b981 Author: Alex <alex.hawley@vercel.com> Date: Wed Sep 4 21:28:45 2024 -0500 added content commit af62089872de543c8f741c3092f431a8b790feec Author: Alex <alex.hawley@vercel.com> Date: Wed Sep 4 20:43:02 2024 -0500 fixed product recommendations commit 5c921be7b1eab4ea3b4acc922d2bde842bb0c5c8 Author: Alex <alex.hawley@vercel.com> Date: Wed Sep 4 20:33:28 2024 -0500 fixed cart total commit 63e150e822ab0b4f7690221ee5d1eafaaf5f930a Author: Alex <alex.hawley@vercel.com> Date: Wed Sep 4 20:14:47 2024 -0500 fixed update cart commit 85bd6bee403e19c7b3f66c0d6e938a8432cee62b Author: Alex <alex.hawley@vercel.com> Date: Wed Sep 4 19:00:42 2024 -0500 remove unnecessary cookie usage from sfcc calls commit 2401bed81143508993fdd403d9d5a419ac8904e5 Author: Alex <alex.hawley@vercel.com> Date: Wed Sep 4 18:55:39 2024 -0500 fixed issue with broken getCart commit f8cc8c3c3c1c64d7cf4b69a60ed87497ad626e65 Author: Alex <alex.hawley@vercel.com> Date: Wed Sep 4 18:23:03 2024 -0500 updated lib/sfcc for guest tokens commit bd6129e3ca15125c87c8186e9ff27d835fb2f683 Author: Alex <alex.hawley@vercel.com> Date: Wed Sep 4 15:19:40 2024 -0500 added now required channel_id commit eeb805fd11219d8512c1cadefe047019d63d4b60 Author: Alex <alex.hawley@vercel.com> Date: Tue Sep 3 17:43:27 2024 -0500 split out scapi commit e4f3bb1c827137245367152c1ff0401db76e7082 Author: Alex <alex.hawley@vercel.com> Date: Tue Sep 3 16:55:11 2024 -0500 carried over sfcc work commit 2616869f56f330f44ad3dfff9ad488eaaf1dbe51 Author: Alex <alex.hawley@vercel.com> Date: Thu Aug 22 15:03:30 2024 -0400 initial sfcc work
150 lines
4.5 KiB
TypeScript
150 lines
4.5 KiB
TypeScript
import type { Metadata } from 'next';
|
|
import { notFound } from 'next/navigation';
|
|
|
|
import { GridTileImage } from 'components/grid/tile';
|
|
import Footer from 'components/layout/footer';
|
|
import { Gallery } from 'components/product/gallery';
|
|
import { ProductProvider } from 'components/product/product-context';
|
|
import { ProductDescription } from 'components/product/product-description';
|
|
import { HIDDEN_PRODUCT_TAG } from 'lib/constants';
|
|
import { getProduct, getProductRecommendations } from 'lib/sfcc';
|
|
import { Image } from 'lib/sfcc/types';
|
|
import Link from 'next/link';
|
|
import { Suspense } from 'react';
|
|
|
|
export async function generateMetadata({
|
|
params
|
|
}: {
|
|
params: { handle: string };
|
|
}): Promise<Metadata> {
|
|
const product = await getProduct(params.handle);
|
|
|
|
if (!product) return notFound();
|
|
|
|
const { url, width, height, altText: alt } = product.featuredImage || {};
|
|
const indexable = !product.tags.includes(HIDDEN_PRODUCT_TAG);
|
|
|
|
return {
|
|
title: product.seo.title || product.title,
|
|
description: product.seo.description || product.description,
|
|
robots: {
|
|
index: indexable,
|
|
follow: indexable,
|
|
googleBot: {
|
|
index: indexable,
|
|
follow: indexable
|
|
}
|
|
},
|
|
openGraph: url
|
|
? {
|
|
images: [
|
|
{
|
|
url,
|
|
width,
|
|
height,
|
|
alt
|
|
}
|
|
]
|
|
}
|
|
: null
|
|
};
|
|
}
|
|
|
|
export default async function ProductPage({ params }: { params: { handle: string } }) {
|
|
const product = await getProduct(params.handle);
|
|
|
|
if (!product) return notFound();
|
|
|
|
const productJsonLd = {
|
|
'@context': 'https://schema.org',
|
|
'@type': 'Product',
|
|
name: product.title,
|
|
description: product.description,
|
|
image: product.featuredImage.url,
|
|
offers: {
|
|
'@type': 'AggregateOffer',
|
|
availability: product.availableForSale
|
|
? 'https://schema.org/InStock'
|
|
: 'https://schema.org/OutOfStock',
|
|
priceCurrency: product.priceRange.minVariantPrice.currencyCode,
|
|
highPrice: product.priceRange.maxVariantPrice.amount,
|
|
lowPrice: product.priceRange.minVariantPrice.amount
|
|
}
|
|
};
|
|
|
|
return (
|
|
<ProductProvider>
|
|
<script
|
|
type="application/ld+json"
|
|
dangerouslySetInnerHTML={{
|
|
__html: JSON.stringify(productJsonLd)
|
|
}}
|
|
/>
|
|
<div className="mx-auto max-w-screen-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="h-full w-full basis-full lg:basis-4/6">
|
|
<Suspense
|
|
fallback={
|
|
<div className="relative aspect-square h-full max-h-[550px] w-full overflow-hidden" />
|
|
}
|
|
>
|
|
<Gallery
|
|
images={product.images.slice(0, 5).map((image: Image) => ({
|
|
src: image.url,
|
|
altText: image.altText
|
|
}))}
|
|
/>
|
|
</Suspense>
|
|
</div>
|
|
|
|
<div className="basis-full lg:basis-2/6">
|
|
<Suspense fallback={null}>
|
|
<ProductDescription product={product} />
|
|
</Suspense>
|
|
</div>
|
|
</div>
|
|
<RelatedProducts id={product.id} />
|
|
</div>
|
|
<Footer />
|
|
</ProductProvider>
|
|
);
|
|
}
|
|
|
|
async function RelatedProducts({ id }: { id: string }) {
|
|
const relatedProducts = await getProductRecommendations(id);
|
|
|
|
if (!relatedProducts.length) return null;
|
|
|
|
return (
|
|
<div className="py-8">
|
|
<h2 className="mb-4 text-2xl font-bold">Related Products</h2>
|
|
<ul className="flex w-full gap-4 overflow-x-auto pt-1">
|
|
{relatedProducts.map((product) => (
|
|
<li
|
|
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"
|
|
>
|
|
<Link
|
|
className="relative h-full w-full"
|
|
href={`/product/${product.handle}`}
|
|
prefetch={true}
|
|
>
|
|
<GridTileImage
|
|
alt={product.title}
|
|
label={{
|
|
title: product.title,
|
|
amount: product.priceRange.maxVariantPrice.amount,
|
|
currencyCode: product.priceRange.maxVariantPrice.currencyCode
|
|
}}
|
|
src={product.featuredImage?.url}
|
|
fill
|
|
sizes="(min-width: 1024px) 20vw, (min-width: 768px) 25vw, (min-width: 640px) 33vw, (min-width: 475px) 50vw, 100vw"
|
|
/>
|
|
</Link>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
);
|
|
}
|