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.
393 lines
20 KiB
JavaScript
393 lines
20 KiB
JavaScript
import React, { useEffect, useState } from 'react'
|
|
import { Link, router } from '@inertiajs/react'
|
|
import { usePrevious } from 'react-use'
|
|
import { Head } from '@inertiajs/react'
|
|
import { Button, Dropdown } from 'flowbite-react'
|
|
import { HiFilter, HiOutlineFilter, HiPencil, HiTrash } from 'react-icons/hi'
|
|
import { useModalState } from '@/hooks'
|
|
|
|
import { hasPermission, formatIDR } from '@/utils'
|
|
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout'
|
|
import Pagination from '@/Components/Pagination'
|
|
import ModalConfirm from '@/Components/ModalConfirm'
|
|
import SearchInput from '@/Components/SearchInput'
|
|
import ThSort from '@/Components/ThSortComponent'
|
|
import ModalFilter from './ModalFilter'
|
|
import ModalDelete from './ModalDelete'
|
|
|
|
export default function Index(props) {
|
|
const {
|
|
query: { links, data },
|
|
auth,
|
|
location,
|
|
profile,
|
|
stats,
|
|
_search,
|
|
_sortBy,
|
|
_sortOrder,
|
|
} = props
|
|
|
|
const [search, setSearch] = useState({
|
|
q: _search,
|
|
sortBy: _sortBy,
|
|
sortOrder: _sortOrder,
|
|
})
|
|
const preValue = usePrevious(search)
|
|
|
|
const confirmModal = useModalState()
|
|
const bulkDeleteModal = useModalState()
|
|
const filterModal = useModalState()
|
|
|
|
const handleDeleteClick = (voucher) => {
|
|
confirmModal.setData(voucher)
|
|
confirmModal.toggle()
|
|
}
|
|
|
|
const onDelete = () => {
|
|
if (confirmModal.data !== null) {
|
|
router.delete(route('voucher.destroy', confirmModal.data.id))
|
|
}
|
|
}
|
|
|
|
const handleSearchChange = (e) => {
|
|
setSearch({
|
|
...search,
|
|
q: e.target.value,
|
|
})
|
|
}
|
|
|
|
const sort = (key, sort = null) => {
|
|
if (sort !== null) {
|
|
setSearch({
|
|
...search,
|
|
sortBy: key,
|
|
sortRule: sort,
|
|
})
|
|
return
|
|
}
|
|
setSearch({
|
|
...search,
|
|
sortBy: key,
|
|
sortRule: search.sortRule == 'asc' ? 'desc' : 'asc',
|
|
})
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (preValue) {
|
|
router.get(route(route().current(), [location, profile]), search, {
|
|
replace: true,
|
|
preserveState: true,
|
|
})
|
|
}
|
|
}, [search])
|
|
|
|
const canCreate = hasPermission(auth, 'create-voucher')
|
|
const canUpdate = hasPermission(auth, 'update-voucher')
|
|
const canDelete = hasPermission(auth, 'delete-voucher')
|
|
const canBulkDelete = hasPermission(auth, 'bulk-delete-voucher')
|
|
|
|
return (
|
|
<AuthenticatedLayout
|
|
page={'Voucher'}
|
|
action={[location.name, profile.name]}
|
|
parent={route('voucher.profile', 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 justify-between">
|
|
{canCreate && (
|
|
<div className="flex flex-row space-x-2">
|
|
<Link href={route('voucher.create')}>
|
|
<Button size="sm" color="primary">
|
|
Tambah
|
|
</Button>
|
|
</Link>
|
|
<Link href={route('voucher.import')}>
|
|
<Button
|
|
size="sm"
|
|
outline
|
|
color="primary"
|
|
>
|
|
Import
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
)}
|
|
<div className="flex flex-col md:flex-row space-x-2 items-center">
|
|
{canBulkDelete && (
|
|
<div>
|
|
<div
|
|
className="px-3 py-2 rounded-md border bg-red-600 border-red-700 hover:bg-red-500"
|
|
onClick={bulkDeleteModal.toggle}
|
|
>
|
|
<HiTrash className="w-5 h-5 text-white" />
|
|
</div>
|
|
</div>
|
|
)}
|
|
<div>
|
|
<div
|
|
className="px-3 py-2 rounded-md border bg-gray-600 border-gray-700 hover:bg-gray-500"
|
|
onClick={filterModal.toggle}
|
|
>
|
|
<HiOutlineFilter className="w-5 h-5 text-white" />
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<SearchInput
|
|
onChange={handleSearchChange}
|
|
value={search.q}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="overflow-auto">
|
|
<div>
|
|
<table className="w-full text-sm text-left text-gray-500 dark:text-gray-400 mb-4">
|
|
<thead className="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
|
|
<tr>
|
|
<th
|
|
scope="col"
|
|
className="py-3 px-6"
|
|
>
|
|
No
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="py-3 px-6"
|
|
>
|
|
Lokasi
|
|
</th>
|
|
<ThSort
|
|
sort={sort}
|
|
label={'username'}
|
|
search={search}
|
|
>
|
|
Kode
|
|
</ThSort>
|
|
<ThSort
|
|
sort={sort}
|
|
label={'location_profile_id'}
|
|
search={search}
|
|
>
|
|
Profile
|
|
</ThSort>
|
|
<ThSort
|
|
sort={sort}
|
|
label={'quota'}
|
|
search={search}
|
|
>
|
|
Kuota
|
|
</ThSort>
|
|
<ThSort
|
|
sort={sort}
|
|
label={'comment'}
|
|
search={search}
|
|
>
|
|
Comment
|
|
</ThSort>
|
|
<ThSort
|
|
sort={sort}
|
|
label={'created_at'}
|
|
search={search}
|
|
>
|
|
Created At
|
|
</ThSort>
|
|
<ThSort
|
|
sort={sort}
|
|
label={'is_sold'}
|
|
search={search}
|
|
>
|
|
Terjual
|
|
</ThSort>
|
|
<th
|
|
scope="col"
|
|
className="py-3 px-6 w-1/8"
|
|
/>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{data.map((voucher, index) => (
|
|
<tr
|
|
className="bg-white border-b dark:bg-gray-800 dark:border-gray-700"
|
|
key={voucher.id}
|
|
>
|
|
<td
|
|
scope="row"
|
|
className="py-4 px-6 font-medium text-gray-900 whitespace-nowrap dark:text-white"
|
|
>
|
|
{index + 1}
|
|
</td>
|
|
<td
|
|
scope="row"
|
|
className="py-4 px-6"
|
|
>
|
|
{
|
|
voucher.location_profile
|
|
.location.name
|
|
}
|
|
</td>
|
|
|
|
<td
|
|
scope="row"
|
|
className="py-4 px-6"
|
|
>
|
|
{voucher.username}
|
|
</td>
|
|
<td
|
|
scope="row"
|
|
className="py-4 px-6"
|
|
>
|
|
{
|
|
voucher.location_profile
|
|
.name
|
|
}
|
|
</td>
|
|
<td
|
|
scope="row"
|
|
className="py-4 px-6"
|
|
>
|
|
{
|
|
voucher.location_profile
|
|
.quota
|
|
}
|
|
</td>
|
|
<td
|
|
scope="row"
|
|
className="py-4 px-6"
|
|
>
|
|
{voucher.comment}
|
|
</td>
|
|
<td
|
|
scope="row"
|
|
className="py-4 px-6"
|
|
>
|
|
{
|
|
voucher.created_at_formated
|
|
}
|
|
</td>
|
|
<td
|
|
scope="row"
|
|
className="py-4 px-6"
|
|
>
|
|
<div
|
|
className={`p-2 border font-bold ${voucher.status.color} rounded-full text-center`}
|
|
>
|
|
{voucher.status.text}
|
|
</div>
|
|
</td>
|
|
|
|
<td className="py-4 px-6 flex justify-end">
|
|
<Dropdown
|
|
color="primary"
|
|
label={'Opsi'}
|
|
floatingArrow={true}
|
|
arrowIcon={true}
|
|
dismissOnClick={true}
|
|
size={'sm'}
|
|
>
|
|
{canUpdate && (
|
|
<Dropdown.Item>
|
|
<Link
|
|
href={route(
|
|
'voucher.edit',
|
|
voucher
|
|
)}
|
|
className="flex space-x-1 items-center"
|
|
>
|
|
<HiPencil />
|
|
<div>
|
|
Ubah
|
|
</div>
|
|
</Link>
|
|
</Dropdown.Item>
|
|
)}
|
|
{canDelete && (
|
|
<Dropdown.Item
|
|
onClick={() =>
|
|
handleDeleteClick(
|
|
voucher
|
|
)
|
|
}
|
|
>
|
|
<div className="flex space-x-1 items-center">
|
|
<HiTrash />
|
|
<div>
|
|
Hapus
|
|
</div>
|
|
</div>
|
|
</Dropdown.Item>
|
|
)}
|
|
</Dropdown>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div className="w-full flex items-center justify-center">
|
|
<Pagination links={links} params={search} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<ModalConfirm modalState={confirmModal} onConfirm={onDelete} />
|
|
<ModalFilter modalState={filterModal} sort={sort} />
|
|
<ModalDelete modalState={bulkDeleteModal} />
|
|
</AuthenticatedLayout>
|
|
)
|
|
}
|