Update src/app/shop/[id]/page.tsx
This commit is contained in:
@@ -1,88 +1,31 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { Suspense, use, useCallback } from "react";
|
import { Suspense, use } from "react";
|
||||||
import { useRouter } from "next/navigation";
|
import { useRouter } from "next/navigation";
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import ProductDetailCard from "@/components/ecommerce/productDetail/ProductDetailCard";
|
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||||
import ProductCart from "@/components/ecommerce/cart/ProductCart";
|
|
||||||
import { useProductDetail } from "@/hooks/useProductDetail";
|
import { useProductDetail } from "@/hooks/useProductDetail";
|
||||||
import { useCart } from "@/hooks/useCart";
|
import { DollarSign, Package, CheckCircle } from 'lucide-react';
|
||||||
import { useCheckout } from "@/hooks/useCheckout";
|
|
||||||
|
|
||||||
// Define common navigation items for sub-pages to maintain consistency
|
const navItemsForSubPages = [
|
||||||
const ALL_NAV_ITEMS_SUB_PAGES = [
|
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "Shop", id: "/shop" },
|
|
||||||
{ name: "Blog", id: "/blog" },
|
|
||||||
{ name: "About", id: "/#about" },
|
{ name: "About", id: "/#about" },
|
||||||
{ name: "Testimonials", id: "/#testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "FAQs", id: "/#faqs" }
|
{ name: "FAQs", id: "/#faqs" },
|
||||||
|
{ name: "Contact", id: "/#contact" },
|
||||||
];
|
];
|
||||||
|
|
||||||
interface ProductPageProps {
|
interface ProductPageProps {
|
||||||
params: Promise<{ id: string }>;
|
params: Promise<{ id: string }>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function ProductPage({ params }: ProductPageProps) {
|
|
||||||
return (
|
|
||||||
<Suspense fallback={null}>
|
|
||||||
<ProductPageContent params={params} />
|
|
||||||
</Suspense>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function ProductPageContent({ params }: ProductPageProps) {
|
function ProductPageContent({ params }: ProductPageProps) {
|
||||||
const { id } = use(params);
|
const { id } = use(params);
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|
||||||
const {
|
const { product, isLoading, images, meta } = useProductDetail(id);
|
||||||
product,
|
|
||||||
isLoading,
|
|
||||||
images,
|
|
||||||
meta,
|
|
||||||
variants,
|
|
||||||
quantityVariant,
|
|
||||||
selectedQuantity,
|
|
||||||
createCartItem,
|
|
||||||
} = useProductDetail(id);
|
|
||||||
|
|
||||||
const {
|
|
||||||
items: cartItems,
|
|
||||||
isOpen: cartOpen,
|
|
||||||
setIsOpen: setCartOpen,
|
|
||||||
addItem,
|
|
||||||
updateQuantity,
|
|
||||||
removeItem,
|
|
||||||
total: cartTotal,
|
|
||||||
getCheckoutItems,
|
|
||||||
} = useCart();
|
|
||||||
|
|
||||||
const { buyNow, checkout, isLoading: isCheckoutLoading } = useCheckout();
|
|
||||||
|
|
||||||
const handleAddToCart = useCallback(() => {
|
|
||||||
const item = createCartItem();
|
|
||||||
if (item) {
|
|
||||||
addItem(item);
|
|
||||||
}
|
|
||||||
}, [createCartItem, addItem]);
|
|
||||||
|
|
||||||
const handleBuyNow = useCallback(() => {
|
|
||||||
if (product) {
|
|
||||||
buyNow(product, selectedQuantity);
|
|
||||||
}
|
|
||||||
}, [product, selectedQuantity, buyNow]);
|
|
||||||
|
|
||||||
const handleCheckout = useCallback(async () => {
|
|
||||||
if (cartItems.length === 0) return;
|
|
||||||
|
|
||||||
const currentUrl = new URL(window.location.href);
|
|
||||||
currentUrl.searchParams.set("success", "true");
|
|
||||||
|
|
||||||
await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() });
|
|
||||||
}, [cartItems, checkout, getCheckoutItems]);
|
|
||||||
|
|
||||||
if (isLoading) {
|
if (isLoading) {
|
||||||
return (
|
return (
|
||||||
@@ -98,23 +41,19 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="light"
|
headingFontWeight="light"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<div id="nav" data-section="nav">
|
||||||
<div id="nav" data-section="nav">
|
<NavbarLayoutFloatingInline
|
||||||
<NavbarLayoutFloatingInline
|
brandName="Nano Mango"
|
||||||
brandName="Nano Mango"
|
navItems={navItemsForSubPages}
|
||||||
navItems={ALL_NAV_ITEMS_SUB_PAGES}
|
button={{ text: "Back to Shop", href: "/shop" }}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
buttonClassName="shadow-lg"
|
||||||
buttonClassName="shadow-lg"
|
navItemClassName="text-foreground/80 hover:text-foreground"
|
||||||
navItemClassName="text-foreground/80 hover:text-foreground"
|
className="backdrop-blur-sm bg-card/70"
|
||||||
className="backdrop-blur-sm bg-card/70"
|
/>
|
||||||
/>
|
</div>
|
||||||
</div>
|
<main className="min-h-screen flex items-center justify-center pt-20">
|
||||||
<div id="loading-section" data-section="loading-section">
|
<p className="text-foreground">Loading product...</p>
|
||||||
<main className="min-h-screen flex items-center justify-center pt-20">
|
</main>
|
||||||
<p className="text-foreground">Loading product...</p>
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -133,31 +72,27 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="light"
|
headingFontWeight="light"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<div id="nav" data-section="nav">
|
||||||
<div id="nav" data-section="nav">
|
<NavbarLayoutFloatingInline
|
||||||
<NavbarLayoutFloatingInline
|
brandName="Nano Mango"
|
||||||
brandName="Nano Mango"
|
navItems={navItemsForSubPages}
|
||||||
navItems={ALL_NAV_ITEMS_SUB_PAGES}
|
button={{ text: "Back to Shop", href: "/shop" }}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
buttonClassName="shadow-lg"
|
||||||
buttonClassName="shadow-lg"
|
navItemClassName="text-foreground/80 hover:text-foreground"
|
||||||
navItemClassName="text-foreground/80 hover:text-foreground"
|
className="backdrop-blur-sm bg-card/70"
|
||||||
className="backdrop-blur-sm bg-card/70"
|
/>
|
||||||
/>
|
</div>
|
||||||
|
<main className="min-h-screen flex items-center justify-center pt-20">
|
||||||
|
<div className="text-center">
|
||||||
|
<p className="text-foreground mb-4">Product not found</p>
|
||||||
|
<button
|
||||||
|
onClick={() => router.push("/shop")}
|
||||||
|
className="px-6 py-2 rounded-lg bg-primary text-primary-foreground"
|
||||||
|
>
|
||||||
|
Back to Shop
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="not-found-section" data-section="not-found-section">
|
</main>
|
||||||
<main className="min-h-screen flex items-center justify-center pt-20">
|
|
||||||
<div className="text-center">
|
|
||||||
<p className="text-foreground mb-4">Product not found</p>
|
|
||||||
<button
|
|
||||||
onClick={() => router.push("/shop")}
|
|
||||||
className="primary-button px-6 py-2 rounded-theme text-primary-cta-text"
|
|
||||||
>
|
|
||||||
Back to Shop
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -173,56 +108,47 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
cardStyle="solid"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="diagonal-gradient"
|
primaryButtonStyle="diagonal-gradient"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="light"
|
headingFontWeight="light"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<div id="nav" data-section="nav">
|
||||||
<div id="nav" data-section="nav">
|
<NavbarLayoutFloatingInline
|
||||||
<NavbarLayoutFloatingInline
|
brandName="Nano Mango"
|
||||||
brandName="Nano Mango"
|
navItems={navItemsForSubPages}
|
||||||
navItems={ALL_NAV_ITEMS_SUB_PAGES}
|
button={{ text: "Back to Shop", href: "/shop" }}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
buttonClassName="shadow-lg"
|
||||||
buttonClassName="shadow-lg"
|
navItemClassName="text-foreground/80 hover:text-foreground"
|
||||||
navItemClassName="text-foreground/80 hover:text-foreground"
|
className="backdrop-blur-sm bg-card/70"
|
||||||
className="backdrop-blur-sm bg-card/70"
|
/>
|
||||||
/>
|
</div>
|
||||||
</div>
|
<div id="product-detail" data-section="product-detail">
|
||||||
<div id="product-detail-card" data-section="product-detail-card">
|
<SplitAbout
|
||||||
<ProductDetailCard
|
title={product.name}
|
||||||
layout="page"
|
description={product.description || 'No description available.'}
|
||||||
name={product.name}
|
imageSrc={images[0]?.src || '/placeholder.webp'}
|
||||||
price={product.price}
|
imageAlt={images[0]?.alt || product.name}
|
||||||
salePrice={meta.salePrice}
|
textboxLayout="default"
|
||||||
rating={product.rating || 0}
|
useInvertedBackground={false}
|
||||||
description={product.description}
|
mediaAnimation="opacity"
|
||||||
images={images}
|
bulletPoints={[
|
||||||
variants={variants.length > 0 ? variants : undefined}
|
{ title: "Price", description: product.price, icon: DollarSign },
|
||||||
quantity={quantityVariant}
|
{ title: "SKU", description: meta.sku || 'N/A', icon: Package },
|
||||||
ribbon={meta.ribbon}
|
{ title: "Status", description: meta.inventoryStatus || 'Available', icon: CheckCircle },
|
||||||
inventoryStatus={meta.inventoryStatus}
|
]}
|
||||||
inventoryQuantity={meta.inventoryQuantity}
|
buttons={[{ text: "Explore More Products", href: "/shop" }]}
|
||||||
sku={meta.sku}
|
/>
|
||||||
buttons={[
|
</div>
|
||||||
{ text: "Add To Cart", onClick: handleAddToCart },
|
|
||||||
{ text: "Buy Now", onClick: handleBuyNow },
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div id="product-cart" data-section="product-cart">
|
|
||||||
<ProductCart
|
|
||||||
isOpen={cartOpen}
|
|
||||||
onClose={() => setCartOpen(false)}
|
|
||||||
items={cartItems}
|
|
||||||
onQuantityChange={updateQuantity}
|
|
||||||
onRemove={removeItem}
|
|
||||||
total={`$${cartTotal}`}
|
|
||||||
buttons={[
|
|
||||||
{
|
|
||||||
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout,
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export default function ProductPage({ params }: ProductPageProps) {
|
||||||
|
return (
|
||||||
|
<Suspense fallback={
|
||||||
|
<div className="w-full h-screen flex items-center justify-center bg-background text-foreground">
|
||||||
|
Loading product details...
|
||||||
|
</div>
|
||||||
|
}>
|
||||||
|
<ProductPageContent params={params} />
|
||||||
|
</Suspense>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user