forked from crowetic/commerce
93 lines
2.5 KiB
TypeScript
93 lines
2.5 KiB
TypeScript
import { Trash, Plus, Minus } from '@components/icon'
|
|
import usePrice from '@lib/bigcommerce/use-price'
|
|
import useUpdateItem from '@lib/bigcommerce/cart/use-update-item'
|
|
import useRemoveItem from '@lib/bigcommerce/cart/use-remove-item'
|
|
import { ChangeEvent, useEffect, useState } from 'react'
|
|
import styles from './CartItem.module.css'
|
|
|
|
const CartItem = ({
|
|
item,
|
|
currencyCode,
|
|
}: {
|
|
item: any
|
|
currencyCode: string
|
|
}) => {
|
|
const { price } = usePrice({
|
|
amount: item.extended_sale_price,
|
|
baseAmount: item.extended_list_price,
|
|
currencyCode,
|
|
})
|
|
const updateItem = useUpdateItem(item)
|
|
const removeItem = useRemoveItem()
|
|
const [quantity, setQuantity] = useState(item.quantity)
|
|
const updateQuantity = async (val: number) => {
|
|
const data = await updateItem({ quantity: val })
|
|
}
|
|
const handleQuantity = (e: ChangeEvent<HTMLInputElement>) => {
|
|
const val = Number(e.target.value)
|
|
|
|
if (Number.isInteger(val) && val >= 0) {
|
|
setQuantity(e.target.value)
|
|
}
|
|
}
|
|
const handleBlur = () => {
|
|
const val = Number(quantity)
|
|
|
|
if (val !== item.quantity) {
|
|
updateQuantity(val)
|
|
}
|
|
}
|
|
const increaseQuantity = (n = 1) => {
|
|
const val = Number(quantity) + n
|
|
|
|
if (Number.isInteger(val) && val >= 0) {
|
|
setQuantity(val)
|
|
updateQuantity(val)
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
// Reset the quantity state if the item quantity changes
|
|
if (item.quantity !== Number(quantity)) {
|
|
setQuantity(item.quantity)
|
|
}
|
|
}, [item.quantity])
|
|
|
|
return (
|
|
<li className="flex flex-row space-x-6 py-6">
|
|
<div className="h-12 w-12 bg-violet"></div>
|
|
<div className="flex-1 flex flex-col justify-between">
|
|
<span>{item.name}</span>
|
|
<div className="flex items-center">
|
|
<button type="button" onClick={() => increaseQuantity(-1)}>
|
|
<Minus width={18} height={18} />
|
|
</button>
|
|
<input
|
|
type="number"
|
|
max={99}
|
|
min={0}
|
|
className={styles.quantity}
|
|
value={quantity}
|
|
onChange={handleQuantity}
|
|
onBlur={handleBlur}
|
|
/>
|
|
<button type="button" onClick={() => increaseQuantity(1)}>
|
|
<Plus width={18} height={18} />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col justify-between space-y-2">
|
|
<span>{price}</span>
|
|
<button
|
|
className="flex justify-end"
|
|
onClick={() => removeItem({ id: item.id })}
|
|
>
|
|
<Trash />
|
|
</button>
|
|
</div>
|
|
</li>
|
|
)
|
|
}
|
|
|
|
export default CartItem
|