Template
- Cart drawer: single-column layout matching the site — no bag icon, no dividers, square images, tighter type, discount code form, estimated total, and a Go to Checkout button - Cart: per-line loading state so one row's update no longer disables every other row or the checkout button - Discounts: cartDiscountCodesUpdate mutation plus discountCodes on the cart fragment, wired to an applyDiscountCode store action - Products: fix "load more" returning the same first page — the query now takes an `after` cursor and getProductsPage exposes pageInfo - Collections: cards match the product cards (no border, radius, blurb, or CTA row) at 4-up on desktop and 2-up on mobile; section headers match the products section - Shop Pay: cart permalink with payment=shop_pay instead of the hosted shop-js element - Buttons converted to the shadcn Button component throughout - PDP: swipeable image carousel with dots on mobile, sticky info column, colour swatches never fall back to variant photos - Rename the store from Stride to Shop; larger header wordmark Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016jWbNNJLksC1QG8z8845FX
210 lines
5.8 KiB
TypeScript
210 lines
5.8 KiB
TypeScript
'use client';
|
|
|
|
import React, { useState, useEffect } from 'react';
|
|
import ProductCard from './product-card';
|
|
import { getProductsPage } from '@/hooks/use-shopify-products';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Loader } from '@/app/components/ui/loader';
|
|
|
|
interface ProductImage {
|
|
url: string;
|
|
altText?: string;
|
|
}
|
|
|
|
interface ProductPrice {
|
|
amount: string;
|
|
currencyCode: string;
|
|
}
|
|
|
|
interface ProductVariant {
|
|
id: string;
|
|
title: string;
|
|
price: ProductPrice;
|
|
availableForSale: boolean;
|
|
}
|
|
|
|
interface Product {
|
|
id: string;
|
|
title: string;
|
|
description?: string;
|
|
handle: string;
|
|
images: {
|
|
edges: Array<{
|
|
node: ProductImage;
|
|
}>;
|
|
};
|
|
priceRange: {
|
|
minVariantPrice: ProductPrice;
|
|
};
|
|
compareAtPriceRange?: {
|
|
minVariantPrice: ProductPrice;
|
|
};
|
|
variants: {
|
|
edges: Array<{
|
|
node: ProductVariant;
|
|
}>;
|
|
};
|
|
}
|
|
|
|
interface ProductsProps {
|
|
title?: string;
|
|
subtitle?: string;
|
|
limit?: number;
|
|
showLoadMore?: boolean;
|
|
}
|
|
|
|
const Products: React.FC<ProductsProps> = ({
|
|
title = 'Shopify Hydrogen Storefront',
|
|
subtitle = 'An agent-friendly Shopify storefront built with Next.js and Hydrogen.',
|
|
limit = 12,
|
|
showLoadMore = true,
|
|
}) => {
|
|
const [products, setProducts] = useState<Product[]>([]);
|
|
const [loading, setLoading] = useState(true);
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [loadingMore, setLoadingMore] = useState(false);
|
|
const [hasMoreProducts, setHasMoreProducts] = useState(true);
|
|
const [cursor, setCursor] = useState<string | null>(null);
|
|
|
|
// Paging is cursor-based: without `after`, Shopify returns the same first
|
|
// page every time and "load more" appends nothing.
|
|
const fetchProducts = async (loadMore = false) => {
|
|
try {
|
|
if (loadMore) {
|
|
setLoadingMore(true);
|
|
} else {
|
|
setLoading(true);
|
|
setError(null);
|
|
}
|
|
|
|
const page = await getProductsPage({
|
|
first: limit,
|
|
after: loadMore ? cursor : null,
|
|
sortKey: 'CREATED_AT',
|
|
reverse: true,
|
|
});
|
|
|
|
setProducts((prev) => {
|
|
if (!loadMore) return page.products;
|
|
|
|
const existingIds = new Set(prev.map((p) => p.id));
|
|
return [
|
|
...prev,
|
|
...page.products.filter((p) => !existingIds.has(p.id)),
|
|
];
|
|
});
|
|
|
|
setCursor(page.endCursor);
|
|
setHasMoreProducts(page.hasNextPage);
|
|
} catch (err) {
|
|
console.error('Error fetching products:', err);
|
|
setError(err instanceof Error ? err.message : 'Failed to load products');
|
|
} finally {
|
|
setLoading(false);
|
|
setLoadingMore(false);
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
fetchProducts();
|
|
}, [limit]);
|
|
|
|
const handleLoadMore = () => {
|
|
if (!loadingMore && hasMoreProducts) {
|
|
fetchProducts(true);
|
|
}
|
|
};
|
|
|
|
if (loading) {
|
|
return (
|
|
<div className="py-20">
|
|
<div className="max-w-screen-2xl mx-auto px-8">
|
|
<h2 className="text-center text-2xl md:text-3xl font-normal max-w-3xl mx-auto text-foreground">
|
|
{title}
|
|
</h2>
|
|
<p className="text-center text-sm font-normal max-w-xl mx-auto text-muted-foreground mt-2.5 mb-16">
|
|
{subtitle}
|
|
</p>
|
|
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8">
|
|
{Array.from({ length: 8 }).map((_, index) => (
|
|
<div key={index} className="animate-pulse">
|
|
<div className="aspect-square bg-zinc-100"></div>
|
|
<div className="pt-4 space-y-2">
|
|
<div className="h-4 bg-zinc-200 w-4/5"></div>
|
|
<div className="h-4 bg-zinc-200 w-1/4"></div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (error || products.length === 0) {
|
|
return (
|
|
<div className="py-20 bg-background">
|
|
<div className="max-w-screen-2xl mx-auto px-8 text-center">
|
|
<h2 className="text-2xl md:text-3xl font-normal max-w-3xl mx-auto text-foreground">
|
|
{title}
|
|
</h2>
|
|
<p className="text-sm font-normal max-w-xl mx-auto text-muted-foreground mt-2.5 mb-12">
|
|
{subtitle}
|
|
</p>
|
|
<p className="text-sm text-muted-foreground mb-6">
|
|
{error ||
|
|
'Our curated collection is being prepared. Please check back shortly.'}
|
|
</p>
|
|
{error && (
|
|
<Button
|
|
onClick={() => fetchProducts()}
|
|
variant="outline"
|
|
size="lg"
|
|
className="font-normal text-muted-foreground hover:text-foreground"
|
|
>
|
|
Try again
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="py-20 bg-white">
|
|
<div className="max-w-screen-2xl mx-auto px-8">
|
|
<h2 className="text-center text-2xl md:text-3xl font-normal max-w-3xl mx-auto text-foreground">
|
|
{title}
|
|
</h2>
|
|
<p className="text-center text-sm font-normal max-w-xl mx-auto text-muted-foreground mt-2.5 mb-16">
|
|
{subtitle}
|
|
</p>
|
|
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-x-8 gap-y-16 mb-20">
|
|
{products.map((product) => (
|
|
<ProductCard key={product.id} product={product} />
|
|
))}
|
|
</div>
|
|
|
|
{showLoadMore && hasMoreProducts && (
|
|
<div className="flex justify-center">
|
|
<Button
|
|
onClick={handleLoadMore}
|
|
disabled={loadingMore}
|
|
variant="outline"
|
|
size="lg"
|
|
className="font-normal text-muted-foreground hover:text-foreground"
|
|
>
|
|
{loadingMore && <Loader size={16} />}
|
|
{loadingMore ? 'Loading' : 'Load more'}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Products;
|