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.
112 lines
3.5 KiB
JavaScript
112 lines
3.5 KiB
JavaScript
import React, { useEffect } from 'react'
|
|
import { useForm, usePage } from '@inertiajs/react'
|
|
import { toast } from 'react-toastify'
|
|
|
|
export default function FormModal(props) {
|
|
const { modalState } = props
|
|
|
|
const { data, setData, post, put, processing, errors, reset, clearErrors } = useForm({
|
|
name: '',
|
|
})
|
|
|
|
const handleOnChange = (event) => {
|
|
setData(event.target.name, event.target.type === 'checkbox' ? event.target.checked : event.target.value);
|
|
}
|
|
|
|
const handleReset = () => {
|
|
reset()
|
|
clearErrors()
|
|
modalState.setData(null)
|
|
}
|
|
|
|
const handleCancel = () => {
|
|
handleReset()
|
|
modalState.toggle()
|
|
}
|
|
|
|
const handleSubmit = () => {
|
|
const classification = modalState.data
|
|
if(classification !== null) {
|
|
put(route('classifications.update', classification), {
|
|
onSuccess: () =>
|
|
Promise.all([
|
|
handleReset(),
|
|
modalState.toggle(),
|
|
toast.success('The Data has been changed'),
|
|
]),
|
|
})
|
|
return
|
|
}
|
|
post(route('classifications.store'), {
|
|
onSuccess: () =>
|
|
Promise.all([
|
|
handleReset(),
|
|
modalState.toggle(),
|
|
toast.success('The Data has been saved'),
|
|
]),
|
|
})
|
|
}
|
|
|
|
useEffect(() => {
|
|
const classification = modalState.data
|
|
if (classification !== null) {
|
|
setData({
|
|
name: classification?.name,
|
|
})
|
|
}
|
|
}, [modalState])
|
|
|
|
return (
|
|
<div
|
|
className="modal modal-bottom sm:modal-middle pb-10"
|
|
style={
|
|
modalState.isOpen
|
|
? {
|
|
opacity: 1,
|
|
pointerEvents: 'auto',
|
|
visibility: 'visible',
|
|
overflowY: 'initial',
|
|
}
|
|
: {}
|
|
}
|
|
>
|
|
<div className="modal-box overflow-y-auto max-h-screen">
|
|
<h1 className="font-bold text-2xl pb-8">Klasifikasi</h1>
|
|
<div className="form-control">
|
|
<label className="label">
|
|
<span className="label-text font-semibold">Nama</span>
|
|
</label>
|
|
<input
|
|
type="text"
|
|
placeholder="nama"
|
|
className={`input input-bordered ${
|
|
errors.name && 'input-error'
|
|
}`}
|
|
name="name"
|
|
value={data.name}
|
|
onChange={handleOnChange}
|
|
/>
|
|
<label className="label">
|
|
<span className="label-text-alt text-red-600">{errors.name}</span>
|
|
</label>
|
|
</div>
|
|
<div className="modal-action">
|
|
<div
|
|
onClick={handleSubmit}
|
|
className="btn btn-primary"
|
|
disabled={processing}
|
|
>
|
|
Simpan
|
|
</div>
|
|
<div
|
|
onClick={handleCancel}
|
|
className="btn btn-secondary"
|
|
disabled={processing}
|
|
>
|
|
Batal
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
} |