293 lines
12 KiB
TypeScript
293 lines
12 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 FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
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="elastic-effect"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="mediumSmall"
|
|
sizing="largeSmallSizeMediumTitles"
|
|
background="none"
|
|
cardStyle="gradient-mesh"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="bold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Alisa"
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Shop", id: "/shop" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Testimonials", id: "testimonials" },
|
|
{ name: "Contact", id: "contact" }
|
|
]}
|
|
button={{ text: "Order Now", href: "/shop" }}
|
|
/>
|
|
</div>
|
|
<main className="min-h-screen flex items-center justify-center pt-20">
|
|
<p className="text-foreground">Loading product...</p>
|
|
</main>
|
|
<FooterLogoEmphasis
|
|
logoText="Alisa"
|
|
columns={[
|
|
{
|
|
items: [
|
|
{ label: "Shop Flowers", href: "/shop" },
|
|
{ label: "About Us", href: "about" },
|
|
{ label: "Testimonials", href: "testimonials" }
|
|
]
|
|
},
|
|
{
|
|
items: [
|
|
{ label: "Contact Us", href: "contact" },
|
|
{ label: "Delivery Info", href: "#" },
|
|
{ label: "Care Tips", href: "#" }
|
|
]
|
|
},
|
|
{
|
|
items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Return Policy", href: "#" }
|
|
]
|
|
}
|
|
]}
|
|
/>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
if (!product) {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="elastic-effect"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="mediumSmall"
|
|
sizing="largeSmallSizeMediumTitles"
|
|
background="none"
|
|
cardStyle="gradient-mesh"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="bold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Alisa"
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Shop", id: "/shop" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Testimonials", id: "testimonials" },
|
|
{ name: "Contact", id: "contact" }
|
|
]}
|
|
button={{ text: "Order Now", href: "/shop" }}
|
|
/>
|
|
</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>
|
|
<FooterLogoEmphasis
|
|
logoText="Alisa"
|
|
columns={[
|
|
{
|
|
items: [
|
|
{ label: "Shop Flowers", href: "/shop" },
|
|
{ label: "About Us", href: "about" },
|
|
{ label: "Testimonials", href: "testimonials" }
|
|
]
|
|
},
|
|
{
|
|
items: [
|
|
{ label: "Contact Us", href: "contact" },
|
|
{ label: "Delivery Info", href: "#" },
|
|
{ label: "Care Tips", href: "#" }
|
|
]
|
|
},
|
|
{
|
|
items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Return Policy", href: "#" }
|
|
]
|
|
}
|
|
]}
|
|
/>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="elastic-effect"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="mediumSmall"
|
|
sizing="largeSmallSizeMediumTitles"
|
|
background="none"
|
|
cardStyle="gradient-mesh"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="bold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Alisa"
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Shop", id: "/shop" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Testimonials", id: "testimonials" },
|
|
{ name: "Contact", id: "contact" }
|
|
]}
|
|
button={{ text: "Order Now", href: "/shop" }}
|
|
/>
|
|
</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>
|
|
<FooterLogoEmphasis
|
|
logoText="Alisa"
|
|
columns={[
|
|
{
|
|
items: [
|
|
{ label: "Shop Flowers", href: "/shop" },
|
|
{ label: "About Us", href: "about" },
|
|
{ label: "Testimonials", href: "testimonials" }
|
|
]
|
|
},
|
|
{
|
|
items: [
|
|
{ label: "Contact Us", href: "contact" },
|
|
{ label: "Delivery Info", href: "#" },
|
|
{ label: "Care Tips", href: "#" }
|
|
]
|
|
},
|
|
{
|
|
items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Return Policy", href: "#" }
|
|
]
|
|
}
|
|
]}
|
|
/>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |