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.

99 lines
2.7 KiB
JavaScript

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";
import { isEmpty } from "lodash";
export default function FormModal(props) {
const { modalState } = props
const { data, setData, post, put, processing, errors, reset, clearErrors } = useForm({
name: '',
phone: '',
address: '',
})
const handleOnChange = (event) => {
setData(event.target.name, event.target.type === 'checkbox' ? (event.target.checked ? 1 : 0) : event.target.value);
}
const handleReset = () => {
modalState.setData(null)
reset()
clearErrors()
}
const handleClose = () => {
handleReset()
modalState.toggle()
}
const handleSubmit = () => {
const customer = modalState.data
if(customer !== null) {
put(route('customer.update', customer), {
onSuccess: () => handleClose(),
})
return
}
post(route('customer.store'), {
onSuccess: () => handleClose()
})
}
useEffect(() => {
const customer = modalState.data
if (isEmpty(customer) === false) {
setData({
name: customer.name,
phone: customer.phone,
address: customer.address,
})
return
}
}, [modalState])
return (
<Modal
isOpen={modalState.isOpen}
toggle={handleClose}
title={"Pelanggan"}
>
<FormInput
name="name"
value={data.name}
onChange={handleOnChange}
label="Nama"
error={errors.name}
/>
<FormInput
name="phone"
value={data.phone}
onChange={handleOnChange}
label="Telp"
error={errors.phone}
/>
<FormInput
name="address"
value={data.address}
onChange={handleOnChange}
label="Alamat"
error={errors.address}
/>
<div className="flex items-center">
<Button
onClick={handleSubmit}
processing={processing}
>
Simpan
</Button>
<Button
onClick={handleClose}
type="secondary"
>
Batal
</Button>
</div>
</Modal>
)
}