summaryrefslogtreecommitdiff
path: root/src-migrate/modules/cart/components
diff options
context:
space:
mode:
Diffstat (limited to 'src-migrate/modules/cart/components')
-rw-r--r--src-migrate/modules/cart/components/Detail.tsx1
-rw-r--r--src-migrate/modules/cart/components/Item.tsx9
-rw-r--r--src-migrate/modules/cart/components/ItemPromo.tsx3
3 files changed, 6 insertions, 7 deletions
diff --git a/src-migrate/modules/cart/components/Detail.tsx b/src-migrate/modules/cart/components/Detail.tsx
index c9de086b..ccb0bb4d 100644
--- a/src-migrate/modules/cart/components/Detail.tsx
+++ b/src-migrate/modules/cart/components/Detail.tsx
@@ -38,7 +38,6 @@ const CartDetail = () => {
return (
<div className={style.wrapper}>
<div className='w-full md:w-3/4'>
- {/* <div className='border border-gray-300 rounded-lg p-4 md:p-6'> */}
<div className=''>
<div className='text-h-lg font-semibold mb-6'>Keranjang Belanja</div>
<div className='grid grid-cols-1 gap-y-4'>
diff --git a/src-migrate/modules/cart/components/Item.tsx b/src-migrate/modules/cart/components/Item.tsx
index 92beda86..baf48bb6 100644
--- a/src-migrate/modules/cart/components/Item.tsx
+++ b/src-migrate/modules/cart/components/Item.tsx
@@ -3,6 +3,9 @@ import style from '../styles/item.module.css'
import Image from 'next/image'
import React from 'react'
import { Skeleton, SkeletonProps, Tooltip } from '@chakra-ui/react'
+import { InfoIcon } from 'lucide-react'
+
+import { PROMO_CATEGORY } from '~/constants/promotion'
import formatCurrency from '~/common/libs/formatCurrency'
import { CartItem as CartItemProps } from '~/common/types/cart'
@@ -10,8 +13,6 @@ import { CartItem as CartItemProps } from '~/common/types/cart'
import CartItemPromo from './ItemPromo'
import CartItemAction from './ItemAction'
import CartItemSelect from './ItemSelect'
-import { PROMO_CATEGORY } from '~/constants/promotion'
-import { InfoIcon } from 'lucide-react'
type Props = {
item: CartItemProps
@@ -37,7 +38,7 @@ const CartItem = ({ item, editable = true }: Props) => {
<div>
Selamat! Pembelian anda lebih hemat {' '}
<span className={style.savingAmt}>
- Rp {formatCurrency((item.package_price || 0) - item.subtotal)}
+ Rp{formatCurrency((item.package_price || 0) * item.quantity - item.subtotal)}
</span>
</div>
</div>
@@ -61,7 +62,7 @@ const CartItem = ({ item, editable = true }: Props) => {
Rp {formatCurrency((item.package_price || 0))}
</span>
<span className={style.price}>
- Rp {formatCurrency(item.subtotal)}
+ Rp {formatCurrency(item.price.price)}
</span>
</div>
)}
diff --git a/src-migrate/modules/cart/components/ItemPromo.tsx b/src-migrate/modules/cart/components/ItemPromo.tsx
index 951d4d6a..bb286e8b 100644
--- a/src-migrate/modules/cart/components/ItemPromo.tsx
+++ b/src-migrate/modules/cart/components/ItemPromo.tsx
@@ -5,7 +5,6 @@ import React from 'react'
import { CartProduct } from '~/common/types/cart'
-
type Props = {
product: CartProduct
}
@@ -19,7 +18,7 @@ const CartItemPromo = ({ product }: Props) => {
<div className={style.details}>
<div className={style.name}>{product.display_name}</div>
- <div className='flex'>
+ <div className='flex w-full'>
<div className="flex flex-col">
<div className={style.code}>{product.code}</div>
<div>