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.

160 lines
7.4 KiB
React

import React, { useEffect, useState } from 'react'
import { router, Link } from '@inertiajs/react'
import { usePrevious } from 'react-use'
import { Head } from '@inertiajs/react'
import { Button } from 'flowbite-react'
1 year ago
import { formatIDR, hasPermission } from '@/utils'
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout'
import Pagination from '@/Components/Pagination'
import SearchInput from '@/Components/SearchInput'
export default function Index(props) {
const {
query: { links, data },
location,
stats,
auth,
} = props
const [search, setSearch] = useState('')
const preValue = usePrevious(`${search}`)
const params = { q: search }
useEffect(() => {
if (preValue) {
router.get(
1 year ago
route(route().current(), location),
{ q: search },
{
replace: true,
preserveState: true,
}
)
}
}, [search])
const canCreate = hasPermission(auth, 'create-voucher')
return (
<AuthenticatedLayout
page={'Voucher'}
action={[location.name]}
parent={route('voucher.location')}
>
<Head title="Voucher" />
<div>
<div className="mx-auto sm:px-6 lg:px-8 ">
<div className="w-full grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-2 mb-2">
<div className="border rounded-md shadow bg-white px-4 py-2 flex flex-col">
<div className="text-gray-600 text-lg">
Total Voucher
</div>
<div className="font-bold text-xl pt-2">
{formatIDR(stats.count_voucher_total)} PCS
</div>
</div>
<div className="border rounded-md shadow bg-white px-4 py-2 flex flex-col">
<div className="text-gray-600 text-lg">
Total Voucher
</div>
<div className="font-bold text-xl pt-2">
Rp. {formatIDR(stats.sum_voucher_total)}
</div>
</div>
<div className="border rounded-md shadow bg-white px-4 py-2 flex flex-col">
<div className="text-gray-600 text-lg">
Total Voucher sudah terjual
</div>
<div className="font-bold text-xl pt-2">
{formatIDR(stats.count_voucher_sold)} PCS
</div>
</div>
<div className="border rounded-md shadow bg-white px-4 py-2 flex flex-col">
<div className="text-gray-600 text-lg">
Jumlah Voucher sudah terjual
</div>
<div className="font-bold text-xl pt-2">
Rp. {formatIDR(stats.sum_voucher_sold)}
</div>
</div>
<div className="border rounded-md shadow bg-white px-4 py-2 flex flex-col">
<div className="text-gray-600 text-lg">
Total Voucher belum terjual
</div>
<div className="font-bold text-xl pt-2">
{formatIDR(stats.count_voucher_unsold)} PCS
</div>
</div>
<div className="border rounded-md shadow bg-white px-4 py-2 flex flex-col">
<div className="text-gray-600 text-lg">
Jumlah Voucher belum terjual
</div>
<div className="font-bold text-xl pt-2">
Rp. {formatIDR(stats.sum_voucher_unsold)}
</div>
</div>
</div>
<div className="p-6 overflow-hidden shadow-sm sm:rounded-lg bg-gray-200 dark:bg-gray-800 space-y-4">
<div className="flex flex-col lg:flex-row gap-1 justify-between">
{canCreate && (
<div className="flex flex-row space-x-2">
<Link href={route('voucher.create')}>
<Button size="sm">Tambah</Button>
</Link>
<Link href={route('voucher.import')}>
<Button size="sm" outline>
Import
</Button>
</Link>
</div>
)}
<div className="flex flex-col md:flex-row gap-1 items-center">
<div className="w-full max-w-md">
<SearchInput
onChange={(e) =>
setSearch(e.target.value)
}
value={search}
/>
</div>
</div>
</div>
<div className="overflow-auto">
<div className="grid grid-cols-2 lg:grid-cols-4 gap-2 mb-4">
{data.map((profile) => (
<Link
key={profile.name}
href={route('voucher.index', {
location,
profile,
})}
className="px-4 py-6 bg-white flex flex-col md:flex-row justify-between items-center rounded-md shadow border hover:bg-gray-100"
>
<div className="text-xl font-bold hover:underline">
{profile.name}
</div>
<div
className={`${profile.count_vouchers.color} px-2 rounded border`}
>
{
profile.count_vouchers
.unsold_count
}
</div>
</Link>
))}
</div>
<div className="w-full flex items-center justify-center">
<Pagination links={links} params={params} />
</div>
</div>
</div>
</div>
</div>
</AuthenticatedLayout>
)
}