summaryrefslogtreecommitdiff
path: root/src/lib/product/components/ProductCard.jsx
diff options
context:
space:
mode:
authortrisusilo <tri.susilo@altama.co.id>2023-10-09 03:48:41 +0000
committertrisusilo <tri.susilo@altama.co.id>2023-10-09 03:48:41 +0000
commit5ab25c12716065421e64fcd91403bce31708eea6 (patch)
treeb3979bcf815686565fc5d672873c01eb552cbe31 /src/lib/product/components/ProductCard.jsx
parent397e589d7cbd927a3d3e62a1aade1deff1124af5 (diff)
parent591dc095a0e5f655e419ec4d1ae11d8f54bed196 (diff)
Merged in CR/Pricelist (pull request #96)
CR/Pricelist
Diffstat (limited to 'src/lib/product/components/ProductCard.jsx')
-rw-r--r--src/lib/product/components/ProductCard.jsx29
1 files changed, 16 insertions, 13 deletions
diff --git a/src/lib/product/components/ProductCard.jsx b/src/lib/product/components/ProductCard.jsx
index 6a5e29ab..91c1f40e 100644
--- a/src/lib/product/components/ProductCard.jsx
+++ b/src/lib/product/components/ProductCard.jsx
@@ -89,17 +89,16 @@ const ProductCard = ({ product, simpleTitle, variant = 'vertical' }) => {
>
{product?.name}
</Link>
- {product?.flashSale?.id > 0 ? (
+ {product?.flashSale?.id > 0 && product?.lowestPrice.discountPercentage > 0 ? (
<>
- {product?.lowestPrice.discountPercentage > 0 && (
- <div className='flex gap-x-1 mb-1 items-center'>
- <div className='text-gray_r-11 line-through text-[11px] sm:text-caption-2'>
- {currencyFormat(product.lowestPrice.price)}
- </div>
- <div className='badge-solid-red'>{product?.lowestPrice.discountPercentage}%</div>
+ <div className='flex gap-x-1 mb-1 items-center'>
+ <div className='text-gray_r-11 line-through text-[11px] sm:text-caption-2'>
+ {currencyFormat(product.lowestPrice.price)}
</div>
- )}
-
+ <div className='badge-solid-red'>
+ {Math.floor(product?.lowestPrice.discountPercentage)}%
+ </div>
+ </div>
<div className='text-danger-500 font-semibold mb-2'>
{product?.lowestPrice.priceDiscount > 0 ? (
currencyFormat(product?.lowestPrice.priceDiscount)
@@ -114,7 +113,8 @@ const ProductCard = ({ product, simpleTitle, variant = 'vertical' }) => {
<>
{currencyFormat(product?.lowestPrice.price)}
<div className='text-gray_r-9 text-[10px] font-normal mt-2'>
- Inc. PPN: {currencyFormat(product.lowestPrice.price * process.env.NEXT_PUBLIC_PPN )}
+ Inc. PPN:{' '}
+ {currencyFormat(product.lowestPrice.price * process.env.NEXT_PUBLIC_PPN)}
</div>
</>
) : (
@@ -192,11 +192,13 @@ const ProductCard = ({ product, simpleTitle, variant = 'vertical' }) => {
>
{product?.name}
</Link>
- {product?.flashSale?.id > 0 ? (
+ {product?.flashSale?.id > 0 && product?.lowestPrice?.discountPercentage > 0 ? (
<>
{product?.lowestPrice.discountPercentage > 0 && (
<div className='flex gap-x-1 mb-1 items-center'>
- <div className='badge-solid-red'>{product?.lowestPrice?.discountPercentage}%</div>
+ <div className='badge-solid-red'>
+ {Math.floor(product?.lowestPrice?.discountPercentage)}%
+ </div>
<div className='text-gray_r-11 line-through text-caption-2'>
{currencyFormat(product?.lowestPrice?.price)}
</div>
@@ -217,7 +219,8 @@ const ProductCard = ({ product, simpleTitle, variant = 'vertical' }) => {
<>
{currencyFormat(product?.lowestPrice.price)}
<div className='text-gray_r-9 text-[11px] sm:text-caption-2 font-normal mt-2'>
- Inc. PPN: {currencyFormat(product.lowestPrice.price * process.env.NEXT_PUBLIC_PPN)}
+ Inc. PPN:{' '}
+ {currencyFormat(product.lowestPrice.price * process.env.NEXT_PUBLIC_PPN)}
</div>
</>
) : (