From f15a7f8a4387d215abd1051ee520adca8944fa05 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Tue, 28 Mar 2023 16:32:45 +0700 Subject: checkout, quotation --- src/lib/product/components/Product/ProductDesktop.jsx | 18 ++++++++++++++++-- src/lib/product/components/ProductSearch.jsx | 12 +++--------- .../components/Skeleton/ProductSearchSkeleton.jsx | 6 +++++- 3 files changed, 24 insertions(+), 12 deletions(-) (limited to 'src/lib/product') diff --git a/src/lib/product/components/Product/ProductDesktop.jsx b/src/lib/product/components/Product/ProductDesktop.jsx index 2f73d124..79e7bb45 100644 --- a/src/lib/product/components/Product/ProductDesktop.jsx +++ b/src/lib/product/components/Product/ProductDesktop.jsx @@ -11,8 +11,10 @@ import { updateItemCart } from '@/core/utils/cart' import useVariantPrice from '@/lib/variant/hooks/useVariantPrice' import useProductPrice from '../../hooks/useProductPrice' import PriceSkeleton from '@/core/components/elements/Skeleton/PriceSkeleton' +import { useRouter } from 'next/router' const ProductDesktop = ({ product, wishlist, toggleWishlist }) => { + const router = useRouter() const { productPrice } = useProductPrice({ id: product.id }) const [informationTab, setInformationTab] = useState(informationTabOptions[0].value) @@ -41,6 +43,12 @@ const ProductDesktop = ({ product, wishlist, toggleWishlist }) => { toast.success('Berhasil menambahkan ke keranjang') } + const handleBuy = (variantId) => { + const quantity = variantQuantityRefs.current[variantId].value + if (!validQuantity(quantity)) return + router.push(`/shop/checkout?productId=${variantId}&quantity=${quantity}`) + } + const variantSectionRef = useRef(null) const goToVariantSection = () => { if (variantSectionRef.current) { @@ -193,7 +201,11 @@ const ProductDesktop = ({ product, wishlist, toggleWishlist }) => { > Keranjang - @@ -264,7 +276,9 @@ const VariantPrice = ({ id }) => { {variantPrice?.data?.priceExcludeAfterDiscount > 0 ? ( currencyFormat(variantPrice?.data?.priceExcludeAfterDiscount) ) : ( - Call for price + + Call for price + )} ) diff --git a/src/lib/product/components/ProductSearch.jsx b/src/lib/product/components/ProductSearch.jsx index b5d7c974..b00d68a4 100644 --- a/src/lib/product/components/ProductSearch.jsx +++ b/src/lib/product/components/ProductSearch.jsx @@ -41,11 +41,6 @@ const ProductSearch = ({ query, prefixUrl, defaultBrand = null }) => { } ) - const [open, setOpen] = useState(1) - - const handleOpen = (value) => { - setOpen(open === value ? 0 : value) - } const orderOptions = [ { value: 'price-asc', label: 'Harga Terendah' }, { value: 'price-desc', label: 'Harga Tertinggi' }, @@ -69,13 +64,10 @@ const ProductSearch = ({ query, prefixUrl, defaultBrand = null }) => { } }, [query, products, productSearch]) - if (productSearch.isLoading) { - return - } - return ( <> + {productSearch.isLoading && }

Produk

@@ -178,6 +170,7 @@ const ProductSearch = ({ query, prefixUrl, defaultBrand = null }) => {