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.

224 lines
11 KiB
React

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 { HiPencil, HiTrash } from 'react-icons/hi'
import { useModalState } from '@/hooks'
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout'
import Pagination from '@/Components/Pagination'
import ModalConfirm from '@/Components/ModalConfirm'
import SearchInput from '@/Components/SearchInput'
import LocationSelectionInput from '../Location/SelectionInput'
import { hasPermission } from '@/utils'
export default function Index(props) {
const {
query: { links, data },
auth,
} = props
const [location, setLocation] = useState(null)
const [search, setSearch] = useState('')
const preValue = usePrevious(`${search}${location}`)
const confirmModal = useModalState()
const handleDeleteClick = (profile) => {
confirmModal.setData(profile)
confirmModal.toggle()
}
const onDelete = () => {
if (confirmModal.data !== null) {
router.delete(
route('location-profile.destroy', confirmModal.data.id)
)
}
}
const params = { q: search, location_id: location }
useEffect(() => {
if (preValue) {
router.get(
route(route().current()),
{ q: search, location_id: location },
{
replace: true,
preserveState: true,
}
)
}
}, [search, location])
const canCreate = hasPermission(auth, 'create-location-profile')
const canUpdate = hasPermission(auth, 'update-location-profile')
const canDelete = hasPermission(auth, 'delete-location-profile')
return (
<AuthenticatedLayout
auth={props.auth}
errors={props.errors}
flash={props.flash}
page={'Profile Lokasi'}
action={''}
>
<Head title="Profile Lokasi" />
<div>
<div className="mx-auto sm:px-6 lg:px-8 ">
<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('location-profile.create')}
>
<Button size="sm">Tambah</Button>
</Link>
{/* <Link
href={route('location-profile.import')}
>
<Button size="sm" outline>
Import
</Button>
</Link> */}
</div>
)}
<div className="flex flex-row space-x-2 items-center">
<LocationSelectionInput
itemSelected={location}
onItemSelected={(id) => setLocation(id)}
placeholder={'filter lokasi'}
/>
<SearchInput
onChange={(e) => setSearch(e.target.value)}
value={search}
/>
</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"
>
Nama
</th>
<th
scope="col"
className="py-3 px-6"
>
Lokasi
</th>
<th
scope="col"
className="py-3 px-6"
>
Kuota
</th>
<th
scope="col"
className="py-3 px-6"
>
Masa Aktif
</th>
<th
scope="col"
className="py-3 px-6 w-1/8"
/>
</tr>
</thead>
<tbody>
{data.map((profile, index) => (
<tr
className="bg-white border-b dark:bg-gray-800 dark:border-gray-700"
key={profile.id}
>
<td
scope="row"
className="py-4 px-6 font-medium text-gray-900 whitespace-nowrap dark:text-white"
>
{profile.name}
</td>
<td
scope="row"
className="py-4 px-6"
>
{profile.location.name}
</td>
<td
scope="row"
className="py-4 px-6"
>
{profile.quota}
</td>
<td
scope="row"
className="py-4 px-6"
>
{profile.diplay_expired}
</td>
<td className="py-4 px-6 flex justify-end">
<Dropdown
label={'Opsi'}
floatingArrow={true}
arrowIcon={true}
dismissOnClick={true}
size={'sm'}
>
{canUpdate && (
<Dropdown.Item>
<Link
href={route(
'location-profile.edit',
profile
)}
className="flex space-x-1 items-center"
>
<HiPencil />
<div>
Ubah
</div>
</Link>
</Dropdown.Item>
)}
{canDelete && (
<Dropdown.Item
onClick={() =>
handleDeleteClick(
profile
)
}
>
<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={params} />
</div>
</div>
</div>
</div>
</div>
<ModalConfirm modalState={confirmModal} onConfirm={onDelete} />
</AuthenticatedLayout>
)
}