554 lines
6.0 KiB
TypeScript
554 lines
6.0 KiB
TypeScript
import { mdiAccount, mdiChartTimelineVariant, mdiMail, mdiUpload } from '@mdi/js'
|
|
import Head from 'next/head'
|
|
import React, { ReactElement } from 'react'
|
|
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 { SwitchField } from '../../components/SwitchField'
|
|
|
|
import { SelectField } from '../../components/SelectField'
|
|
import { SelectFieldMany } from "../../components/SelectFieldMany";
|
|
import {RichTextField} from "../../components/RichTextField";
|
|
|
|
import { create } from '../../stores/reservations/reservationsSlice'
|
|
import { useAppDispatch } from '../../stores/hooks'
|
|
import { useRouter } from 'next/router'
|
|
import moment from 'moment';
|
|
|
|
const initialValues = {
|
|
|
|
|
|
code: '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
customer: '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
table: '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
start_at: '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end_at: '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
party_size: '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
status: 'pending',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
notes: '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assigned_staff: '',
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
const ReservationsNew = () => {
|
|
const router = useRouter()
|
|
const dispatch = useAppDispatch()
|
|
|
|
|
|
|
|
// get from url params
|
|
const { dateRangeStart, dateRangeEnd, tableId } = router.query
|
|
|
|
|
|
const handleSubmit = async (data) => {
|
|
await dispatch(create(data))
|
|
await router.push('/reservations/reservations-list')
|
|
}
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('New Item')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title="New Item" main>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<Formik
|
|
initialValues={
|
|
|
|
|
|
|
|
(dateRangeStart && dateRangeEnd) || tableId ?
|
|
{
|
|
...initialValues,
|
|
start_at: moment(dateRangeStart).format('YYYY-MM-DDTHH:mm'),
|
|
end_at: moment(dateRangeEnd).format('YYYY-MM-DDTHH:mm'),
|
|
table: tableId,
|
|
} : initialValues
|
|
|
|
}
|
|
onSubmit={(values) => handleSubmit(values)}
|
|
>
|
|
<Form>
|
|
|
|
|
|
|
|
<FormField
|
|
label="ReservationCode"
|
|
>
|
|
<Field
|
|
name="code"
|
|
placeholder="ReservationCode"
|
|
/>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label="Customer" labelFor="customer">
|
|
<Field name="customer" id="customer" component={SelectField} options={[]} itemRef={'customers'}></Field>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label="Table" labelFor="table">
|
|
<Field name="table" id="table" component={SelectField} options={[]} itemRef={'tables'}></Field>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField
|
|
label="StartAt"
|
|
>
|
|
<Field
|
|
type="datetime-local"
|
|
name="start_at"
|
|
placeholder="StartAt"
|
|
/>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField
|
|
label="EndAt"
|
|
>
|
|
<Field
|
|
type="datetime-local"
|
|
name="end_at"
|
|
placeholder="EndAt"
|
|
/>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField
|
|
label="PartySize"
|
|
>
|
|
<Field
|
|
type="number"
|
|
name="party_size"
|
|
placeholder="PartySize"
|
|
/>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label="Status" labelFor="status">
|
|
<Field name="status" id="status" component="select">
|
|
|
|
<option value="pending">pending</option>
|
|
|
|
<option value="confirmed">confirmed</option>
|
|
|
|
<option value="seated">seated</option>
|
|
|
|
<option value="completed">completed</option>
|
|
|
|
<option value="canceled">canceled</option>
|
|
|
|
</Field>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label="Notes" hasTextareaHeight>
|
|
<Field name="notes" as="textarea" placeholder="Notes" />
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label="AssignedStaff" labelFor="assigned_staff">
|
|
<Field name="assigned_staff" id="assigned_staff" component={SelectField} options={[]} itemRef={'users'}></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('/reservations/reservations-list')}/>
|
|
</BaseButtons>
|
|
</Form>
|
|
</Formik>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
)
|
|
}
|
|
|
|
ReservationsNew.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated
|
|
|
|
permission={'CREATE_RESERVATIONS'}
|
|
|
|
>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
)
|
|
}
|
|
|
|
export default ReservationsNew
|