135 lines
4.0 KiB
TypeScript
135 lines
4.0 KiB
TypeScript
import { mdiChartTimelineVariant, mdiUpload } from '@mdi/js'
|
|
import Head from 'next/head'
|
|
import React, { ReactElement, useEffect, useState } from 'react'
|
|
import DatePicker from "react-datepicker";
|
|
import "react-datepicker/dist/react-datepicker.css";
|
|
import dayjs from "dayjs";
|
|
|
|
import CardBox from '../../components/CardBox'
|
|
import LayoutAuthenticated from '../../layouts/Authenticated'
|
|
import SectionMain from '../../components/SectionMain'
|
|
import SectionTitleLineWithButton from '../../components/SectionTitleLineWithButton'
|
|
import { getPageTitle } from '../../config'
|
|
|
|
import { Field, Form, Formik } from 'formik'
|
|
import FormField from '../../components/FormField'
|
|
import BaseDivider from '../../components/BaseDivider'
|
|
import BaseButtons from '../../components/BaseButtons'
|
|
import BaseButton from '../../components/BaseButton'
|
|
import FormCheckRadio from '../../components/FormCheckRadio'
|
|
import FormCheckRadioGroup from '../../components/FormCheckRadioGroup'
|
|
import { SelectField } from "../../components/SelectField";
|
|
import { SelectFieldMany } from "../../components/SelectFieldMany";
|
|
import { SwitchField } from '../../components/SwitchField'
|
|
import {RichTextField} from "../../components/RichTextField";
|
|
|
|
import { update, fetch } from '../../stores/documents/documentsSlice'
|
|
import { useAppDispatch, useAppSelector } from '../../stores/hooks'
|
|
import { useRouter } from 'next/router'
|
|
import dataFormatter from '../../helpers/dataFormatter';
|
|
|
|
const EditDocumentsPage = () => {
|
|
const router = useRouter()
|
|
const dispatch = useAppDispatch()
|
|
const initVals = {
|
|
|
|
'title': '',
|
|
|
|
document_type: '',
|
|
|
|
}
|
|
const [initialValues, setInitialValues] = useState(initVals)
|
|
|
|
const { documents } = useAppSelector((state) => state.documents)
|
|
|
|
const { id } = router.query
|
|
|
|
useEffect(() => {
|
|
dispatch(fetch({ id: id }))
|
|
}, [id])
|
|
|
|
useEffect(() => {
|
|
if (typeof documents === 'object') {
|
|
setInitialValues(documents)
|
|
}
|
|
}, [documents])
|
|
|
|
useEffect(() => {
|
|
if (typeof documents === 'object') {
|
|
const newInitialVal = {...initVals};
|
|
Object.keys(initVals).forEach(el => newInitialVal[el] = (documents)[el])
|
|
setInitialValues(newInitialVal);
|
|
}
|
|
}, [documents])
|
|
|
|
const handleSubmit = async (data) => {
|
|
await dispatch(update({ id: id, data }))
|
|
await router.push('/documents/documents-list')
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('Edit documents')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title={'Edit documents'} main>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<Formik
|
|
enableReinitialize
|
|
initialValues={initialValues}
|
|
onSubmit={(values) => handleSubmit(values)}
|
|
>
|
|
<Form>
|
|
|
|
<FormField
|
|
label="Title"
|
|
>
|
|
<Field
|
|
name="title"
|
|
placeholder="Title"
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField label="DocumentType" labelFor="document_type">
|
|
<Field name="document_type" id="document_type" component="select">
|
|
|
|
<option value="Checklist">Checklist</option>
|
|
|
|
<option value="Form">Form</option>
|
|
|
|
<option value="Policy">Policy</option>
|
|
|
|
<option value="Procedure">Procedure</option>
|
|
|
|
<option value="Plan">Plan</option>
|
|
|
|
</Field>
|
|
</FormField>
|
|
|
|
<BaseDivider />
|
|
<BaseButtons>
|
|
<BaseButton type="submit" color="info" label="Submit" />
|
|
<BaseButton type="reset" color="info" outline label="Reset" />
|
|
<BaseButton type='reset' color='danger' outline label='Cancel' onClick={() => router.push('/documents/documents-list')}/>
|
|
</BaseButtons>
|
|
</Form>
|
|
</Formik>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
)
|
|
}
|
|
|
|
EditDocumentsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
)
|
|
}
|
|
|
|
export default EditDocumentsPage
|