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({ info: '', is_publish: 1, }) 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 info = modalState.data if (info !== null) { put(route('info.update', info), { onSuccess: () => handleClose(), }) return } post(route('info.store'), { onSuccess: () => handleClose(), }) } useEffect(() => { const info = modalState.data if (isEmpty(info) === false) { setData({ info: info.title, is_publish: info.is_publish, }) return } }, [modalState]) return (
Publish
) }