diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-07 09:18:53 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-07 09:18:53 +0700 |
| commit | 6320efdce499d96796e1727d9065d2b1c1c00c53 (patch) | |
| tree | 8ead8b4e2b67329e33ead17be290f49a5b972396 /src/lib/product | |
| parent | 23cd1216c5a38fb0f79d34378aa4df0e37fc0782 (diff) | |
fix button buy on product detail
Diffstat (limited to 'src/lib/product')
| -rw-r--r-- | src/lib/product/components/Product.jsx | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/src/lib/product/components/Product.jsx b/src/lib/product/components/Product.jsx index 9e33316c..ae476b80 100644 --- a/src/lib/product/components/Product.jsx +++ b/src/lib/product/components/Product.jsx @@ -74,15 +74,21 @@ const Product = ({ product }) => { } }, [informationTab]) - const handleClickCart = () => { + const validAction = () => { + let isValid = true if (!selectedVariant) { toast.error('Pilih varian terlebih dahulu') - return + isValid = false } if (!quantity || quantity < 1 || isNaN(parseInt(quantity))) { toast.error('Jumlah barang minimal 1') - return + isValid = false } + return isValid + } + + const handleClickCart = () => { + if (!validAction()) return updateItemCart({ productId: activeVariant.id, quantity @@ -90,6 +96,11 @@ const Product = ({ product }) => { toast.success('Berhasil menambahkan ke keranjang') } + const handleClickBuy = () => { + if (!validAction()) return + router.push(`/shop/checkout?productId=${activeVariant.id}&quantity=${quantity}`) + } + const toggleWishlist = async () => { if (!auth) { router.push('/login') @@ -197,6 +208,7 @@ const Product = ({ product }) => { <button type='button' className='btn-solid-red flex-1' + onClick={handleClickBuy} > Beli </button> |
