summaryrefslogtreecommitdiff
path: root/src/lib/cart
diff options
context:
space:
mode:
authorHATEC\SPVDEV001 <tri.susilo@altama.co.id>2023-07-04 13:38:33 +0700
committerHATEC\SPVDEV001 <tri.susilo@altama.co.id>2023-07-04 13:38:33 +0700
commit8b173abd19630b7cab5f0f562925c46e3f71d096 (patch)
tree2d655c0d6bae3b5de5d5bee4a1239d3a54779013 /src/lib/cart
parent2777e0d64152dace9c5307cd07bd8e13c6f6631e (diff)
promotion program
Diffstat (limited to 'src/lib/cart')
-rw-r--r--src/lib/cart/components/Cart.jsx149
1 files changed, 90 insertions, 59 deletions
diff --git a/src/lib/cart/components/Cart.jsx b/src/lib/cart/components/Cart.jsx
index 45f2f770..f1584f98 100644
--- a/src/lib/cart/components/Cart.jsx
+++ b/src/lib/cart/components/Cart.jsx
@@ -59,7 +59,8 @@ const Cart = () => {
)
setProducts(updatedProducts)
}
- processProducts()
+ // processProducts()
+ setProducts(cart.products)
setIsLoading(false)
}
}, [cart])
@@ -86,6 +87,10 @@ const Cart = () => {
if (product.quantity == '') continue
if (!product.selected) continue
+
+ if (product.canBuy == false) {
+ toggleSelected(product.id)
+ }
let priceBeforeTax = product.price.price / 1.11
calculateTotalPriceBeforeTax += priceBeforeTax * product.quantity
calculateTotalTaxAmount += (product.price.price - priceBeforeTax) * product.quantity
@@ -153,7 +158,12 @@ const Cart = () => {
productsToUpdate[productIndex].quantity = qty
setProducts([...productsToUpdate])
- addCart(productId, qty, productsToUpdate[productIndex].selected)
+ addCart(
+ productId,
+ qty,
+ productsToUpdate[productIndex].selected,
+ productsToUpdate[productIndex].program?.id
+ )
}
const toggleSelected = (productId) => {
@@ -165,7 +175,12 @@ const Cart = () => {
productsToUpdate[productIndex].selected = isSelected
setProducts([...productsToUpdate])
- addCart(productId, productsToUpdate[productIndex].quantity, isSelected)
+ addCart(
+ productId,
+ productsToUpdate[productIndex].quantity,
+ isSelected,
+ productsToUpdate[productIndex].program?.id
+ )
}
const selectedProduct = () => {
@@ -259,7 +274,7 @@ const Cart = () => {
{products &&
products?.map((product) => (
<>
- {product.isPromo > 0 && (
+ {product.hasProgram > 0 && (
<div className='flex gap-x-2 bg-yellow-100 p-2 items-center'>
{product.program ? (
<>
@@ -470,7 +485,7 @@ const Cart = () => {
{products &&
products?.map((product) => (
<>
- {product.isPromo > 0 && (
+ {product.hasProgram && (
<tr className='!border-b-0 pb-0'>
<td colSpan={6}>
<div className='flex gap-x-2 bg-yellow-100 p-2 items-center'>
@@ -489,7 +504,7 @@ const Cart = () => {
Selamat! Pembelian anda lebih hemat
<span className='text-red-600 font-semibold ml-2'>
{' '}
- {currencyFormat(product.program.price.priceDiscount)}
+ {currencyFormat(product.program?.totalSavings)}
</span>
</>
)}
@@ -539,9 +554,10 @@ const Cart = () => {
)}
<tr
key={product.id}
- className={`${product.isPromo ? '!border-t-0 !border-b-0' : ''}`}
+ className={`${product.hasProgram ? '!border-t-0 !border-b-0' : ''}`}
>
- <td>
+ <td className='relative'>
+ <ComponentCanBuy canBuy={product.canBuy} />
<input
type='checkbox'
onClick={() => toggleSelected(product.id)}
@@ -549,7 +565,8 @@ const Cart = () => {
className='accent-danger-500 w-4'
/>
</td>
- <td className='flex'>
+ <td className='flex relative'>
+ <ComponentCanBuy canBuy={product.canBuy} />
<Link
href={createSlug(
'/shop/product/',
@@ -583,7 +600,8 @@ const Cart = () => {
</div>
</div>
</td>
- <td>
+ <td className='relative'>
+ <ComponentCanBuy canBuy={product.canBuy} />
<input
className='form-input w-16 py-2 text-center bg-gray_r-1'
type='number'
@@ -592,7 +610,8 @@ const Cart = () => {
onBlur={(e) => updateQuantity(e.target.value, product?.id, 'BLUR')}
/>
</td>
- <td>
+ <td className='relative'>
+ <ComponentCanBuy canBuy={product.canBuy} />
{product?.price?.discountPercentage > 0 && (
<div className='flex gap-x-1 items-center justify-center mt-3'>
<div className='text-gray_r-11 line-through text-caption-1'>
@@ -607,7 +626,8 @@ const Cart = () => {
{currencyFormat(product?.price?.priceDiscount)}
</div>
</td>
- <td>
+ <td className='relative'>
+ <ComponentCanBuy canBuy={product.canBuy} />
<div className='text-danger-500 font-medium'>
{currencyFormat(product?.price?.priceDiscount * product?.quantity)}
</div>
@@ -623,54 +643,62 @@ const Cart = () => {
</div>
</td>
</tr>
- {product.program && (
- <tr key={product?.program?.id} className='!border-t-0'>
- <td></td>
- <td className='flex'>
- <div className='w-[20%] flex-shrink-0'>
- <Image
- src={product.program.image}
- alt={product.program.name}
- className='object-contain object-center border border-gray_r-6 h-28 w-full rounded-md'
- />
- </div>
- <div className='px-2 text-left'>
- <div className=''>
- <span className='border border-solid border-red-600 rounded-md p-1 text-red-600'>
- {product.program.type.label}
- </span>
- </div>
- <div className='mt-2 line-clamp-2 leading-6'>
- {product.program.name}
- </div>
- </div>
- </td>
- <td>
- <input
- className='form-input w-16 py-2 text-center bg-gray_r-1'
- type='number'
- value={1}
- disabled
- />
- </td>
- <td>
- {product?.price?.discountPercentage > 0 && (
- <div className='flex gap-x-1 items-center justify-center mt-3'>
- <div className='text-gray_r-11 line-through text-caption-1'>
- {currencyFormat(product?.price?.price)}
+ {product?.program?.items && (
+ <tr key={product.program.id} className='!border-t-0'>
+ {product.program.items.map((item) => (
+ <>
+ <td className='relative'>
+ <ComponentCanBuy canBuy={product.canBuy} />
+ </td>
+ <td className='flex relative'>
+ <ComponentCanBuy canBuy={product.canBuy} />
+ <div className='w-[20%] flex-shrink-0'>
+ <Image
+ src={item.parent.image}
+ alt={item.name}
+ className='object-contain object-center border border-gray_r-6 h-28 w-full rounded-md'
+ />
</div>
- </div>
- )}
- <div className='font-normal mt-1'>
- {product?.program?.price.priceDiscount > 0 ? 'Gratis' : ''}
- </div>
- </td>
- <td>
- <div className='text-danger-500 font-medium'>
- {product.program.price.priceDiscount > 0 ? 'Gratis' : ''}
- </div>
- </td>
- <td></td>
+ <div className='px-2 text-left'>
+ <div className=''>
+ <span className='border border-solid border-red-600 rounded-md p-1 text-red-600'>
+ {product.program.type.label}
+ </span>
+ </div>
+ <div className='mt-2 line-clamp-2 leading-6'>{item.name}</div>
+ </div>
+ </td>
+ <td className='relative'>
+ <ComponentCanBuy canBuy={product.canBuy} />
+ <input
+ className='form-input w-16 py-2 text-center bg-gray_r-1'
+ type='number'
+ value={1}
+ disabled
+ />
+ </td>
+ <td className='relative'>
+ <ComponentCanBuy canBuy={product.canBuy} />
+ {item?.price?.discountPercentage > 0 && (
+ <div className='flex gap-x-1 items-center justify-center mt-3'>
+ <div className='text-gray_r-11 line-through text-caption-1'>
+ {currencyFormat(product?.price?.price)}
+ </div>
+ </div>
+ )}
+ <div className='font-normal mt-1'>
+ {item?.price.priceDiscount > 0 ? 'Gratis' : ''}
+ </div>
+ </td>
+ <td className='relative'>
+ <ComponentCanBuy canBuy={product.canBuy} />
+ <div className='text-danger-500 font-medium'>
+ {item.price.priceDiscount > 0 ? 'Gratis' : ''}
+ </div>
+ </td>
+ <td></td>
+ </>
+ ))}
</tr>
)}
</>
@@ -747,4 +775,7 @@ const Cart = () => {
)
}
+const ComponentCanBuy = ({ canBuy }) =>
+ !canBuy && <div className='absolute w-full h-full bg-gray_r-3/40 top-0 left-0' />
+
export default Cart