163 lines
5.0 KiB
TypeScript
163 lines
5.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 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/photos/photosSlice';
|
|
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 EditPhotos = () => {
|
|
const router = useRouter();
|
|
const dispatch = useAppDispatch();
|
|
const initVals = {
|
|
image: [],
|
|
|
|
client: null,
|
|
|
|
photo_annotation: [],
|
|
};
|
|
const [initialValues, setInitialValues] = useState(initVals);
|
|
|
|
const { photos } = useAppSelector((state) => state.photos);
|
|
|
|
const { photosId } = router.query;
|
|
|
|
useEffect(() => {
|
|
dispatch(fetch({ id: photosId }));
|
|
}, [photosId]);
|
|
|
|
useEffect(() => {
|
|
if (typeof photos === 'object') {
|
|
setInitialValues(photos);
|
|
}
|
|
}, [photos]);
|
|
|
|
useEffect(() => {
|
|
if (typeof photos === 'object') {
|
|
const newInitialVal = { ...initVals };
|
|
|
|
Object.keys(initVals).forEach((el) => (newInitialVal[el] = photos[el]));
|
|
|
|
setInitialValues(newInitialVal);
|
|
}
|
|
}, [photos]);
|
|
|
|
const handleSubmit = async (data) => {
|
|
await dispatch(update({ id: photosId, data }));
|
|
await router.push('/photos/photos-list');
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('Edit photos')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
icon={mdiChartTimelineVariant}
|
|
title={'Edit photos'}
|
|
main
|
|
>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<Formik
|
|
enableReinitialize
|
|
initialValues={initialValues}
|
|
onSubmit={(values) => handleSubmit(values)}
|
|
>
|
|
<Form>
|
|
<FormField>
|
|
<Field
|
|
label='Image'
|
|
color='info'
|
|
icon={mdiUpload}
|
|
path={'photos/image'}
|
|
name='image'
|
|
id='image'
|
|
schema={{
|
|
size: undefined,
|
|
formats: undefined,
|
|
}}
|
|
component={FormImagePicker}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='Client' labelFor='client'>
|
|
<Field
|
|
name='client'
|
|
id='client'
|
|
component={SelectField}
|
|
options={initialValues.client}
|
|
itemRef={'clients'}
|
|
showField={'name'}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='Photo Annotation' labelFor='photo_annotation'>
|
|
<Field
|
|
name='photo_annotation'
|
|
id='photo_annotation'
|
|
component={SelectFieldMany}
|
|
options={initialValues.photo_annotation}
|
|
itemRef={'annotations'}
|
|
showField={'text'}
|
|
></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('/photos/photos-list')}
|
|
/>
|
|
</BaseButtons>
|
|
</Form>
|
|
</Formik>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
EditPhotos.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated permission={'UPDATE_PHOTOS'}>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
);
|
|
};
|
|
|
|
export default EditPhotos;
|