231 lines
9.9 KiB
TypeScript
231 lines
9.9 KiB
TypeScript
"use client";
|
|
|
|
import { use, useCallback } from "react";
|
|
import { useRouter } from "next/navigation";
|
|
import ReactLenis from "lenis/react";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
import ProductDetailCard from "@/components/ecommerce/productDetail/ProductDetailCard";
|
|
import ProductCart from "@/components/ecommerce/cart/ProductCart";
|
|
import { useProductDetail } from "@/hooks/useProductDetail";
|
|
import { useCart } from "@/hooks/useCart";
|
|
import { useCheckout } from "@/hooks/useCheckout";
|
|
|
|
interface ProductPageProps {
|
|
params: Promise<{ id: string }>;
|
|
}
|
|
|
|
export default function ProductPage({ params }: ProductPageProps) {
|
|
const { id } = use(params);
|
|
const router = useRouter();
|
|
|
|
const {
|
|
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) {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="shift-hover"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="sharp"
|
|
contentWidth="smallMedium"
|
|
sizing="mediumLargeSizeLargeTitles"
|
|
background="circleGradient"
|
|
cardStyle="gradient-mesh"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="navbar" data-section="navbar">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Omakase Niseko"
|
|
navItems={[
|
|
{"name":"Home","id":"/"},
|
|
{"name":"Shop","id":"/shop"}
|
|
]}
|
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
|
className="backdrop-blur-md bg-black/40 border border-red-900/30"
|
|
navItemClassName="text-white hover:text-red-400 transition-colors"
|
|
buttonClassName="bg-red-600 hover:bg-red-700 text-white"
|
|
buttonTextClassName="font-bold"
|
|
/>
|
|
</div>
|
|
<main className="min-h-screen flex items-center justify-center pt-20">
|
|
<p className="text-foreground">Loading product...</p>
|
|
</main>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
if (!product) {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="shift-hover"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="sharp"
|
|
contentWidth="smallMedium"
|
|
sizing="mediumLargeSizeLargeTitles"
|
|
background="circleGradient"
|
|
cardStyle="gradient-mesh"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="navbar" data-section="navbar">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Omakase Niseko"
|
|
navItems={[
|
|
{"name":"Home","id":"/"},
|
|
{"name":"Shop","id":"/shop"}
|
|
]}
|
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
|
className="backdrop-blur-md bg-black/40 border border-red-900/30"
|
|
navItemClassName="text-white hover:text-red-400 transition-colors"
|
|
buttonClassName="bg-red-600 hover:bg-red-700 text-white"
|
|
buttonTextClassName="font-bold"
|
|
/>
|
|
</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="primary-button px-6 py-2 rounded-theme"
|
|
>
|
|
Back to Shop
|
|
</button>
|
|
</div>
|
|
</main>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="shift-hover"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="sharp"
|
|
contentWidth="smallMedium"
|
|
sizing="mediumLargeSizeLargeTitles"
|
|
background="circleGradient"
|
|
cardStyle="gradient-mesh"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="navbar" data-section="navbar">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Omakase Niseko"
|
|
navItems={[
|
|
{"name":"Home","id":"/"},
|
|
{"name":"Shop","id":"/shop"}
|
|
]}
|
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
|
className="backdrop-blur-md bg-black/40 border border-red-900/30"
|
|
navItemClassName="text-white hover:text-red-400 transition-colors"
|
|
buttonClassName="bg-red-600 hover:bg-red-700 text-white"
|
|
buttonTextClassName="font-bold"
|
|
/>
|
|
</div>
|
|
<div id="productDetailCard" data-section="productDetailCard">
|
|
<ProductDetailCard
|
|
layout="page"
|
|
name={product.name}
|
|
price={product.price}
|
|
salePrice={meta.salePrice}
|
|
rating={product.rating || 0}
|
|
description={product.description}
|
|
images={images}
|
|
variants={variants.length > 0 ? variants : undefined}
|
|
quantity={quantityVariant}
|
|
ribbon={meta.ribbon}
|
|
inventoryStatus={meta.inventoryStatus}
|
|
inventoryQuantity={meta.inventoryQuantity}
|
|
sku={meta.sku}
|
|
buttons={[
|
|
{ text: "Add To Cart", onClick: handleAddToCart },
|
|
{ text: "Buy Now", onClick: handleBuyNow },
|
|
]}
|
|
/>
|
|
</div>
|
|
<div id="productCart" data-section="productCart">
|
|
<ProductCart
|
|
isOpen={cartOpen}
|
|
onClose={() => setCartOpen(false)}
|
|
items={cartItems}
|
|
onQuantityChange={updateQuantity}
|
|
onRemove={removeItem}
|
|
total={`$${cartTotal}`}
|
|
buttons={[
|
|
{
|
|
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout,
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseReveal
|
|
columns={[
|
|
{"title":"Experience","items":[{"label":"The Omakase","href":"#experience"},{"label":"Our Philosophy","href":"#about"},{"label":"Reservations","href":"#contact"}]},
|
|
{"title":"Location","items":[{"label":"Niseko, Hokkaido","href":"#"},{"label":"Hours: 5:00 PM - 11:00 PM","href":"#"},{"label":"Closed Mondays","href":"#"}]},
|
|
{"title":"Connect","items":[{"label":"Instagram","href":"https://instagram.com"},{"label":"Contact","href":"#contact"},{"label":"Inquiries","href":"mailto:info@omakaseniseko.com"}]}
|
|
]}
|
|
copyrightText="© 2025 Omakase Niseko. All rights reserved."
|
|
className="w-full"
|
|
columnTitleClassName="text-white font-extrabold text-lg mb-4"
|
|
columnItemClassName="text-gray-400 hover:text-red-400 transition-colors text-sm mb-2"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |