186 lines
5.8 KiB
TypeScript
186 lines
5.8 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 FormFilePicker from '../../components/FormFilePicker';
|
|
import FormImagePicker from '../../components/FormImagePicker';
|
|
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/job_descriptions/job_descriptionsSlice';
|
|
import { useAppDispatch, useAppSelector } from '../../stores/hooks';
|
|
import { useRouter } from 'next/router';
|
|
import { saveFile } from '../../helpers/fileSaver';
|
|
import dataFormatter from '../../helpers/dataFormatter';
|
|
import ImageField from '../../components/ImageField';
|
|
|
|
const EditJob_descriptions = () => {
|
|
const router = useRouter();
|
|
const dispatch = useAppDispatch();
|
|
const initVals = {
|
|
title: '',
|
|
|
|
document: [],
|
|
|
|
recruiter: null,
|
|
|
|
posted_at: new Date(),
|
|
};
|
|
const [initialValues, setInitialValues] = useState(initVals);
|
|
|
|
const { job_descriptions } = useAppSelector(
|
|
(state) => state.job_descriptions,
|
|
);
|
|
|
|
const { job_descriptionsId } = router.query;
|
|
|
|
useEffect(() => {
|
|
dispatch(fetch({ id: job_descriptionsId }));
|
|
}, [job_descriptionsId]);
|
|
|
|
useEffect(() => {
|
|
if (typeof job_descriptions === 'object') {
|
|
setInitialValues(job_descriptions);
|
|
}
|
|
}, [job_descriptions]);
|
|
|
|
useEffect(() => {
|
|
if (typeof job_descriptions === 'object') {
|
|
const newInitialVal = { ...initVals };
|
|
|
|
Object.keys(initVals).forEach(
|
|
(el) => (newInitialVal[el] = job_descriptions[el]),
|
|
);
|
|
|
|
setInitialValues(newInitialVal);
|
|
}
|
|
}, [job_descriptions]);
|
|
|
|
const handleSubmit = async (data) => {
|
|
await dispatch(update({ id: job_descriptionsId, data }));
|
|
await router.push('/job_descriptions/job_descriptions-list');
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('Edit job_descriptions')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
icon={mdiChartTimelineVariant}
|
|
title={'Edit job_descriptions'}
|
|
main
|
|
>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<Formik
|
|
enableReinitialize
|
|
initialValues={initialValues}
|
|
onSubmit={(values) => handleSubmit(values)}
|
|
>
|
|
<Form>
|
|
<FormField label='Title'>
|
|
<Field name='title' placeholder='Title' />
|
|
</FormField>
|
|
|
|
<FormField>
|
|
<Field
|
|
label='Document'
|
|
color='info'
|
|
icon={mdiUpload}
|
|
path={'job_descriptions/document'}
|
|
name='document'
|
|
id='document'
|
|
schema={{
|
|
size: undefined,
|
|
formats: undefined,
|
|
}}
|
|
component={FormFilePicker}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='Recruiter' labelFor='recruiter'>
|
|
<Field
|
|
name='recruiter'
|
|
id='recruiter'
|
|
component={SelectField}
|
|
options={initialValues.recruiter}
|
|
itemRef={'users'}
|
|
showField={'firstName'}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='PostedAt'>
|
|
<DatePicker
|
|
dateFormat='yyyy-MM-dd hh:mm'
|
|
showTimeSelect
|
|
selected={
|
|
initialValues.posted_at
|
|
? new Date(
|
|
dayjs(initialValues.posted_at).format(
|
|
'YYYY-MM-DD hh:mm',
|
|
),
|
|
)
|
|
: null
|
|
}
|
|
onChange={(date) =>
|
|
setInitialValues({ ...initialValues, posted_at: date })
|
|
}
|
|
/>
|
|
</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('/job_descriptions/job_descriptions-list')
|
|
}
|
|
/>
|
|
</BaseButtons>
|
|
</Form>
|
|
</Formik>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
EditJob_descriptions.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated permission={'UPDATE_JOB_DESCRIPTIONS'}>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
);
|
|
};
|
|
|
|
export default EditJob_descriptions;
|