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.
120 lines
5.0 KiB
JavaScript
120 lines
5.0 KiB
JavaScript
import React from 'react'
|
|
import { Head } from '@inertiajs/react'
|
|
import { router } from '@inertiajs/react'
|
|
import { toast } from 'react-toastify'
|
|
|
|
import { useModalState } from '@/Hooks'
|
|
import { hasPermission } from '@/utils'
|
|
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout'
|
|
import Pagination from '@/Components/Pagination'
|
|
import ModalConfirm from '@/Components/ModalConfirm'
|
|
import FormModal from './FormModal'
|
|
|
|
export default function Types(props) {
|
|
const { data: regions, links } = props.regions
|
|
|
|
const formModal = useModalState(false)
|
|
const toggle = (region = null) => {
|
|
formModal.setData(region)
|
|
formModal.toggle()
|
|
}
|
|
|
|
const confirmModal = useModalState(false)
|
|
const handleDelete = (region) => {
|
|
confirmModal.setData(region)
|
|
confirmModal.toggle()
|
|
}
|
|
|
|
const onDelete = () => {
|
|
const region = confirmModal.data
|
|
if(region != null) {
|
|
router.delete(route('regions.destroy', region), {
|
|
onSuccess: () => toast.success('The Data has been deleted'),
|
|
})
|
|
}
|
|
}
|
|
|
|
const canCreate = hasPermission('create-region', props.auth.user)
|
|
const canUpdate = hasPermission('update-region', props.auth.user)
|
|
const canDelete = hasPermission('delete-region', props.auth.user)
|
|
|
|
return (
|
|
<AuthenticatedLayout
|
|
auth={props.auth}
|
|
errors={props.errors}
|
|
flash={props.flash}
|
|
notify={props.notify}
|
|
>
|
|
<Head title="Roles" />
|
|
<div className="flex flex-col w-full sm:px-6 lg:px-8 space-y-2">
|
|
<div className="card bg-base-100 w-full">
|
|
<div className="card-body">
|
|
<div className="flex w-full mb-4 justify-between">
|
|
{canCreate && (
|
|
<div
|
|
className="btn btn-neutral"
|
|
onClick={() => toggle()}
|
|
>
|
|
Tambah
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className="overflow-x-auto">
|
|
<table className="table w-full table-zebra">
|
|
<thead>
|
|
<tr>
|
|
<th>Id</th>
|
|
<th>Nama</th>
|
|
<th>Group</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{regions?.map((region) => (
|
|
<tr key={region.id}>
|
|
<th>{region.id}</th>
|
|
<td>{region.name}</td>
|
|
<td>{region.group.name}</td>
|
|
<td className="text-right">
|
|
{canUpdate && (
|
|
<div
|
|
className="btn btn-primary mx-1"
|
|
onClick={() =>
|
|
toggle(region)
|
|
}
|
|
>
|
|
Edit
|
|
</div>
|
|
)}
|
|
{canDelete && (
|
|
<div
|
|
className="btn btn-secondary mx-1"
|
|
onClick={() =>
|
|
handleDelete(region)
|
|
}
|
|
>
|
|
Delete
|
|
</div>
|
|
)}
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<Pagination links={links} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<FormModal
|
|
modalState={formModal}
|
|
/>
|
|
<ModalConfirm
|
|
isOpen={confirmModal.isOpen}
|
|
toggle={confirmModal.toggle}
|
|
onConfirm={onDelete}
|
|
/>
|
|
</AuthenticatedLayout>
|
|
)
|
|
} |