2024-07-20 20:54:32 -07:00

117 lines
4.1 KiB
TypeScript

import Cart from 'components/cart';
import OpenCart from 'components/cart/open-cart';
import { GridTileImage } from 'components/grid/tile';
import { Gallery } from 'components/product/gallery';
import { ProductDescription } from 'components/product/product-description';
import { getContentLandingPageConfig } from 'lib/aspire';
import { Store } from 'lib/aspire/types';
import { getProductRecommendations } from 'lib/shopify';
import { Image } from 'lib/shopify/types';
import Link from 'next/link';
import { Suspense } from 'react';
export default async function Page({ params }: { params: { ContentLandingPage: string } }) {
const config = await getContentLandingPageConfig(params.ContentLandingPage);
if (!config.product) {
return <div>Product not found</div>;
}
const productJsonLd = {
'@context': 'https://schema.org',
'@type': 'Product',
name: config.product.title,
description: config.product.description,
image: config.product.featuredImage.url,
offers: {
'@type': 'AggregateOffer',
availability: config.product.availableForSale
? 'https://schema.org/InStock'
: 'https://schema.org/OutOfStock',
priceCurrency: config.product.priceRange.minVariantPrice.currencyCode,
highPrice: config.product.priceRange.maxVariantPrice.amount,
lowPrice: config.product.priceRange.minVariantPrice.amount
}
};
return (
<>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{
__html: JSON.stringify(productJsonLd)
}}
/>
<nav className="relative flex items-center justify-between p-4 lg:px-6">
<div className="block flex-none md:hidden">
<Suspense fallback={null}></Suspense>
</div>
<div className="flex w-full items-center">
<div className="flex justify-end md:w-1/3">
<Suspense fallback={<OpenCart />}>
<Cart store={config.store} />
</Suspense>
</div>
</div>
</nav>
<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={config.product.images.map((image: Image) => ({
src: image.url,
altText: image.altText
}))}
/>
</Suspense>
</div>
<div className="basis-full lg:basis-2/6">
<ProductDescription product={config.product} store={config.store} />
</div>
</div>
<RelatedProducts id={config.product.id} store={config.store} />
</div>
</>
);
}
async function RelatedProducts({ store, id }: { store: Store; id: string }) {
const relatedProducts = await getProductRecommendations(store, 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}`}>
<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>
);
}