213 lines
6.5 KiB
TypeScript
213 lines
6.5 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/tours/toursSlice';
|
|
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';
|
|
|
|
import { hasPermission } from '../../helpers/userPermissions';
|
|
|
|
const EditTours = () => {
|
|
const router = useRouter();
|
|
const dispatch = useAppDispatch();
|
|
const initVals = {
|
|
title: '',
|
|
|
|
description: '',
|
|
|
|
price: '',
|
|
|
|
start_date: new Date(),
|
|
|
|
end_date: new Date(),
|
|
|
|
agency: null,
|
|
|
|
agencies: null,
|
|
};
|
|
const [initialValues, setInitialValues] = useState(initVals);
|
|
|
|
const { tours } = useAppSelector((state) => state.tours);
|
|
|
|
const { currentUser } = useAppSelector((state) => state.auth);
|
|
|
|
const { toursId } = router.query;
|
|
|
|
useEffect(() => {
|
|
dispatch(fetch({ id: toursId }));
|
|
}, [toursId]);
|
|
|
|
useEffect(() => {
|
|
if (typeof tours === 'object') {
|
|
setInitialValues(tours);
|
|
}
|
|
}, [tours]);
|
|
|
|
useEffect(() => {
|
|
if (typeof tours === 'object') {
|
|
const newInitialVal = { ...initVals };
|
|
|
|
Object.keys(initVals).forEach((el) => (newInitialVal[el] = tours[el]));
|
|
|
|
setInitialValues(newInitialVal);
|
|
}
|
|
}, [tours]);
|
|
|
|
const handleSubmit = async (data) => {
|
|
await dispatch(update({ id: toursId, data }));
|
|
await router.push('/tours/tours-list');
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('Edit tours')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
icon={mdiChartTimelineVariant}
|
|
title={'Edit tours'}
|
|
main
|
|
>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<Formik
|
|
enableReinitialize
|
|
initialValues={initialValues}
|
|
onSubmit={(values) => handleSubmit(values)}
|
|
>
|
|
<Form>
|
|
<FormField label='TourTitle'>
|
|
<Field name='title' placeholder='TourTitle' />
|
|
</FormField>
|
|
|
|
<FormField label='Description' hasTextareaHeight>
|
|
<Field
|
|
name='description'
|
|
id='description'
|
|
component={RichTextField}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='Price'>
|
|
<Field type='number' name='price' placeholder='Price' />
|
|
</FormField>
|
|
|
|
<FormField label='StartDate'>
|
|
<DatePicker
|
|
dateFormat='yyyy-MM-dd hh:mm'
|
|
showTimeSelect
|
|
selected={
|
|
initialValues.start_date
|
|
? new Date(
|
|
dayjs(initialValues.start_date).format(
|
|
'YYYY-MM-DD hh:mm',
|
|
),
|
|
)
|
|
: null
|
|
}
|
|
onChange={(date) =>
|
|
setInitialValues({ ...initialValues, start_date: date })
|
|
}
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField label='EndDate'>
|
|
<DatePicker
|
|
dateFormat='yyyy-MM-dd hh:mm'
|
|
showTimeSelect
|
|
selected={
|
|
initialValues.end_date
|
|
? new Date(
|
|
dayjs(initialValues.end_date).format(
|
|
'YYYY-MM-DD hh:mm',
|
|
),
|
|
)
|
|
: null
|
|
}
|
|
onChange={(date) =>
|
|
setInitialValues({ ...initialValues, end_date: date })
|
|
}
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField label='Agency' labelFor='agency'>
|
|
<Field
|
|
name='agency'
|
|
id='agency'
|
|
component={SelectField}
|
|
options={initialValues.agency}
|
|
itemRef={'agencies'}
|
|
showField={'name'}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='agencies' labelFor='agencies'>
|
|
<Field
|
|
name='agencies'
|
|
id='agencies'
|
|
component={SelectField}
|
|
options={initialValues.agencies}
|
|
itemRef={'agencies'}
|
|
showField={'name'}
|
|
></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('/tours/tours-list')}
|
|
/>
|
|
</BaseButtons>
|
|
</Form>
|
|
</Formik>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
EditTours.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated permission={'UPDATE_TOURS'}>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
);
|
|
};
|
|
|
|
export default EditTours;
|