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.
115 lines
3.2 KiB
JavaScript
115 lines
3.2 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 RoleSelectionInput from "../Role/SelectionInput";
|
|
|
|
import { isEmpty } from "lodash";
|
|
|
|
export default function FormModal(props) {
|
|
const { modalState } = props
|
|
const { data, setData, post, put, processing, errors, reset, clearErrors } = useForm({
|
|
name: '',
|
|
email: '',
|
|
password: '',
|
|
role_id: null,
|
|
role: '',
|
|
})
|
|
|
|
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 user = modalState.data
|
|
if(user !== null) {
|
|
put(route('user.update', user), {
|
|
onSuccess: () => handleClose(),
|
|
})
|
|
return
|
|
}
|
|
post(route('user.store'), {
|
|
onSuccess: () => handleClose()
|
|
})
|
|
}
|
|
|
|
useEffect(() => {
|
|
const user = modalState.data
|
|
if (isEmpty(user) === false) {
|
|
setData({
|
|
name: user.name,
|
|
email: user.email,
|
|
role_id: user.role_id,
|
|
role: user.role
|
|
})
|
|
return
|
|
}
|
|
}, [modalState])
|
|
|
|
return (
|
|
<Modal
|
|
isOpen={modalState.isOpen}
|
|
toggle={handleClose}
|
|
title={"User"}
|
|
>
|
|
<FormInput
|
|
name="name"
|
|
value={data.name}
|
|
onChange={handleOnChange}
|
|
label="name"
|
|
error={errors.name}
|
|
/>
|
|
<FormInput
|
|
name="email"
|
|
value={data.email}
|
|
onChange={handleOnChange}
|
|
label="email"
|
|
error={errors.email}
|
|
/>
|
|
<FormInput
|
|
type="password"
|
|
name="password"
|
|
value={data.password}
|
|
onChange={handleOnChange}
|
|
label="Password"
|
|
error={errors.password}
|
|
/>
|
|
{data.role !== null && (
|
|
<>
|
|
<RoleSelectionInput
|
|
label="Role"
|
|
itemSelected={data.role_id}
|
|
onItemSelected={(id) => setData('role_id', id)}
|
|
error={errors.role_id}
|
|
/>
|
|
</>
|
|
)}
|
|
<div className="flex items-center">
|
|
<Button
|
|
onClick={handleSubmit}
|
|
processing={processing}
|
|
>
|
|
Simpan
|
|
</Button>
|
|
<Button
|
|
onClick={handleClose}
|
|
type="secondary"
|
|
>
|
|
Batal
|
|
</Button>
|
|
</div>
|
|
</Modal>
|
|
)
|
|
} |