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.

84 lines
3.2 KiB
React

import React, { useState } from 'react'
import { Head, router } from '@inertiajs/react'
import CustomerLayout from '@/Layouts/CustomerLayout'
1 year ago
const EmptyHere = () => {
return (
<div className="w-full px-5 text-center flex flex-col my-auto">
<div className="font-bold text-xl">Transaksi kosong</div>
<div className="text-gray-400">
1 year ago
Yuk, checkout keranjang mu sekarang!
1 year ago
</div>
</div>
)
}
export default function Index({ query: { data, next_page_url } }) {
const [sales, setSales] = useState(data)
const handleNextPage = () => {
router.get(
next_page_url,
{},
{
replace: true,
preserveState: true,
only: ['query'],
onSuccess: (res) => {
setSales(sales.concat(res.props.query.data))
},
}
)
}
return (
<CustomerLayout>
<Head title="Transaksi" />
<div className="flex flex-col min-h-[calc(95dvh)]">
<div className="py-5 text-2xl px-5 font-bold">
Transaksi Pembelian
</div>
1 year ago
{sales.length <= 0 && <EmptyHere />}
<div className="w-full">
<div className="flex flex-col space-y-5 px-5">
{sales.map((sale) => (
<div
key={sale.id}
className="flex flex-row pb-2 items-center justify-between border-b"
onClick={() =>
router.get(
route('transactions.show', sale.id)
)
}
>
<div className="flex flex-col">
<div>{sale.format_human_created_at}</div>
<div className="font-thin">
Invoice{' '}
<span className="font-bold">
#{sale.code}
</span>
</div>
</div>
<div className="flex flex-col items-end">
<div className="font-bold text-lg">
{sale.display_amount}
</div>
</div>
</div>
))}
{next_page_url !== null && (
<div
onClick={handleNextPage}
className="w-full text-center px-2 py-1 border mt-5 hover:bg-blue-600 hover:text-white"
>
Load more
</div>
)}
</div>
</div>
</div>
</CustomerLayout>
)
}