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.
80 lines
2.0 KiB
React
80 lines
2.0 KiB
React
2 years ago
|
import React, { useEffect } from "react";
|
||
|
import Modal from "@/Components/Modal";
|
||
|
import { useForm } from "@inertiajs/react";
|
||
|
import Button from "@/Components/Button";
|
||
|
import FormInput from "@/Components/FormInput";
|
||
|
|
||
|
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.value)
|
||
|
}
|
||
|
|
||
|
const handleReset = () => {
|
||
|
modalState.setData(null)
|
||
|
reset()
|
||
|
clearErrors()
|
||
|
}
|
||
|
|
||
|
const handleClose = () => {
|
||
|
handleReset()
|
||
|
modalState.toggle()
|
||
|
}
|
||
|
|
||
|
const handleSubmit = () => {
|
||
|
const category = modalState.data
|
||
|
if(category !== null) {
|
||
|
put(route('category.update', category), {
|
||
|
onSuccess: () => handleClose()
|
||
|
})
|
||
|
return
|
||
|
}
|
||
|
post(route('category.store'), {
|
||
|
onSuccess: () => handleClose()
|
||
|
})
|
||
|
}
|
||
|
|
||
|
useEffect(() => {
|
||
|
const category = modalState.data
|
||
|
if (category !== null) {
|
||
|
setData({
|
||
|
name: category?.name,
|
||
|
})
|
||
|
return
|
||
|
}
|
||
|
}, [modalState])
|
||
|
|
||
|
return (
|
||
|
<Modal
|
||
|
isOpen={modalState.isOpen}
|
||
|
toggle={handleClose}
|
||
|
title={"Kategori"}
|
||
|
>
|
||
|
<FormInput
|
||
|
name="name"
|
||
|
value={data.name}
|
||
|
onChange={handleOnChange}
|
||
|
label="Nama"
|
||
|
error={errors.name}
|
||
|
/>
|
||
|
<div className="flex items-center">
|
||
|
<Button
|
||
|
onClick={handleSubmit}
|
||
|
processing={processing}
|
||
|
>
|
||
|
Simpan
|
||
|
</Button>
|
||
|
<Button
|
||
|
onClick={handleClose}
|
||
|
type="secondary"
|
||
|
>
|
||
|
Batal
|
||
|
</Button>
|
||
|
</div>
|
||
|
</Modal>
|
||
|
)
|
||
|
}
|