You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.7 KiB
JavaScript
104 lines
3.7 KiB
JavaScript
import Alert from '@/Components/Alert'
|
|
import BottomSheet from '@/Customer/Components/BottomSheet'
|
|
import { useModalState } from '@/hooks'
|
|
import { formatIDR } from '@/utils'
|
|
import { router } from '@inertiajs/react'
|
|
|
|
const Voucher = ({ item, onClick }) => {
|
|
return (
|
|
<div
|
|
className="px-3 py-1 shadow-md rounded border border-gray-100 hover:bg-gray-50"
|
|
onClick={onClick}
|
|
>
|
|
<div className="w-full flex flex-row justify-between">
|
|
<div className="text-base font-bold">{item.location.name}</div>
|
|
<div className="text-sm text-gray-500"></div>
|
|
</div>
|
|
<div className="w-full border border-dashed"></div>
|
|
<div className="flex flex-row justify-between items-center">
|
|
<div>
|
|
<div className="text-xs text-gray-400 py-1">
|
|
{item.display_note}
|
|
</div>
|
|
<div className="text-xl font-bold">
|
|
Rp {formatIDR(item.validate_price)}
|
|
</div>
|
|
{+item.validate_discount !== 0 && (
|
|
<div className="flex flex-row space-x-2 items-center text-xs pb-2">
|
|
<div className="bg-red-300 text-red-600 px-1 py-0.5 font-bold rounded">
|
|
{item.validate_discount}%
|
|
</div>
|
|
<div className="text-gray-400 line-through">
|
|
{formatIDR(item.validate_display_price)}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className="flex flex-col justify-end text-right">
|
|
<div className="text-3xl font-bold">{item.quota}</div>
|
|
<div className="text-gray-400 ">{item.display_expired}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const ModalChoose = (props) => {
|
|
const { state, item } = props
|
|
|
|
const onDirectBuy = () => {
|
|
router.post(route('cart.store', item), { direct: 1 })
|
|
state.toggle()
|
|
}
|
|
|
|
const addToCarts = () => {
|
|
router.post(route('cart.store', item))
|
|
state.toggle()
|
|
}
|
|
|
|
return (
|
|
<BottomSheet isOpen={state.isOpen} toggle={() => state.toggle()}>
|
|
<Voucher item={item} />
|
|
{item.display_note !== null && (
|
|
<div
|
|
className="p-4 my-4 text-sm text-blue-800 rounded-lg bg-blue-50 dark:bg-gray-800 dark:text-blue-400"
|
|
role="alert"
|
|
>
|
|
{item.display_note}
|
|
</div>
|
|
)}
|
|
<div className="flex flex-row justify-between gap-2 mt-2">
|
|
<div
|
|
className="w-full text-center px-3 py-2 rounded-lg bg-white border border-blue-700 text-blue-700 hover:bg-blue-100"
|
|
onClick={onDirectBuy}
|
|
>
|
|
Beli Langsung
|
|
</div>
|
|
<div
|
|
className="w-full text-center px-3 py-2 rounded-lg bg-blue-700 border border-blue-900 text-white hover:bg-blue-900"
|
|
onClick={addToCarts}
|
|
>
|
|
+ Keranjang
|
|
</div>
|
|
</div>
|
|
</BottomSheet>
|
|
)
|
|
}
|
|
|
|
export default function VoucherCard({ item }) {
|
|
const chooseModalState = useModalState()
|
|
|
|
const onVoucherChoose = () => {
|
|
chooseModalState.toggle()
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div onClick={() => onVoucherChoose()}>
|
|
<Voucher item={item} />
|
|
</div>
|
|
<ModalChoose state={chooseModalState} item={item} />
|
|
</>
|
|
)
|
|
}
|