summaryrefslogtreecommitdiff
path: root/src/lib/product/components/Product/ProductMobile.jsx
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-04-11 14:56:42 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-04-11 14:56:42 +0700
commit1841a2d178a332633470c4cda629a2600b3e7c3b (patch)
tree8f6924caa0c87ad18fdd1f841438f84c27290c3c /src/lib/product/components/Product/ProductMobile.jsx
parent2c50bdcff9b7816a573b66539e15681b95a1ccb4 (diff)
layout popup add to cart
Diffstat (limited to 'src/lib/product/components/Product/ProductMobile.jsx')
-rw-r--r--src/lib/product/components/Product/ProductMobile.jsx57
1 files changed, 26 insertions, 31 deletions
diff --git a/src/lib/product/components/Product/ProductMobile.jsx b/src/lib/product/components/Product/ProductMobile.jsx
index 43ef0e5e..0a7d690a 100644
--- a/src/lib/product/components/Product/ProductMobile.jsx
+++ b/src/lib/product/components/Product/ProductMobile.jsx
@@ -89,7 +89,6 @@ const ProductMobile = ({ product, wishlist, toggleWishlist }) => {
quantity,
selected: true
})
- // toast.success('Berhasil menambahkan ke keranjang')
setAddCartAlert(true)
}
@@ -270,37 +269,33 @@ const ProductMobile = ({ product, wishlist, toggleWishlist }) => {
</LazyLoad>
</div>
- <div>
- <BottomPopup
- title='Berhasil Ditambahkan'
- active={addCartAlert}
- close={() => setAddCartAlert(false)}
- >
- <div className='flex mt-10 mb-5'>
- <div className='w-[15%]'>
- <Image
- src={product.image}
- alt={product.name}
- className='h-20 object-contain object-center w-full border border-gray_r-4'
- />
- </div>
- <div className='ml-3 flex flex-1 items-center text-sm font-normal'>
- {product.name}
- </div>
- <div className='ml-3 flex items-center text-sm font-normal'>
- <Link href='/shop/cart' className='flex-1 py-2 text-gray_r-12 btn-yellow'>
- Lihat Keranjang
- </Link>
- </div>
- </div>
- <div className='my-12'>
- <div className='text-h-lg font-semibold mb-6'>Kamu Mungkin Juga Suka</div>
- <LazyLoad>
- <ProductSimilar query={productSimilarQuery} />
- </LazyLoad>
- </div>
- </BottomPopup>
+ <BottomPopup
+ title='Berhasil Ditambahkan'
+ active={addCartAlert}
+ close={() => setAddCartAlert(false)}
+ >
+ <div className='flex mt-4'>
+ <div className='w-[15%]'>
+ <Image
+ src={product.image}
+ alt={product.name}
+ className='h-20 object-contain object-center w-full border border-gray_r-4'
+ />
+ </div>
+ <div className='ml-3 flex flex-1 items-center text-sm font-normal'>{product.name}</div>
+ <div className='ml-3 flex items-center text-sm font-normal'>
+ <Link href='/shop/cart' className='flex-1 py-2 text-gray_r-12 btn-yellow'>
+ Lihat Keranjang
+ </Link>
+ </div>
+ </div>
+ <div className='mt-8 mb-4'>
+ <div className='text-h-lg font-semibold mb-6'>Kamu Mungkin Juga Suka</div>
+ <LazyLoad>
+ <ProductSimilar query={productSimilarQuery} />
+ </LazyLoad>
</div>
+ </BottomPopup>
</MobileView>
)
}