183 lines
4.4 KiB
TypeScript
183 lines
4.4 KiB
TypeScript
import { mdiChartTimelineVariant } 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 { SwitchField } from '../../components/SwitchField'
|
|
|
|
import { SelectField } from '../../components/SelectField'
|
|
import {RichTextField} from "../../components/RichTextField";
|
|
|
|
import { create } from '../../stores/hoa_parameters/hoa_parametersSlice'
|
|
import { useAppDispatch } from '../../stores/hooks'
|
|
import { useRouter } from 'next/router'
|
|
|
|
const initialValues = {
|
|
|
|
hoas: '',
|
|
|
|
hoa: '',
|
|
|
|
units_per_hoa: '',
|
|
|
|
unit_types: '',
|
|
|
|
vendor_categories: '',
|
|
|
|
faq_limit: '',
|
|
|
|
doc_limit: '',
|
|
|
|
chatbot_suggestion_count: '',
|
|
|
|
reminder_periods: '',
|
|
|
|
escalation_timeframes: '',
|
|
|
|
}
|
|
|
|
const Hoa_parametersNew = () => {
|
|
const router = useRouter()
|
|
const dispatch = useAppDispatch()
|
|
|
|
const handleSubmit = async (data) => {
|
|
await dispatch(create(data))
|
|
await router.push('/hoa_parameters/hoa_parameters-list')
|
|
}
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('New Item')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title="New Item" main>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<Formik
|
|
initialValues={
|
|
initialValues
|
|
}
|
|
onSubmit={(values) => handleSubmit(values)}
|
|
>
|
|
<Form>
|
|
|
|
<FormField label="hoas" labelFor="hoas">
|
|
<Field name="hoas" id="hoas" component={SelectField} options={[]} itemRef={'hoas'}></Field>
|
|
</FormField>
|
|
|
|
<FormField label="Hoa" labelFor="hoa">
|
|
<Field name="hoa" id="hoa" component={SelectField} options={[]} itemRef={'hoas'}></Field>
|
|
</FormField>
|
|
|
|
<FormField
|
|
label="Units per hoa"
|
|
>
|
|
<Field
|
|
type="number"
|
|
name="units_per_hoa"
|
|
placeholder="Units per hoa"
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField
|
|
label="Unit types"
|
|
>
|
|
<Field
|
|
name="unit_types"
|
|
placeholder="Unit types"
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField
|
|
label="Vendor categories"
|
|
>
|
|
<Field
|
|
name="vendor_categories"
|
|
placeholder="Vendor categories"
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField
|
|
label="Faq limit"
|
|
>
|
|
<Field
|
|
type="number"
|
|
name="faq_limit"
|
|
placeholder="Faq limit"
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField
|
|
label="Doc limit"
|
|
>
|
|
<Field
|
|
type="number"
|
|
name="doc_limit"
|
|
placeholder="Doc limit"
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField
|
|
label="Chatbot suggestion count"
|
|
>
|
|
<Field
|
|
type="number"
|
|
name="chatbot_suggestion_count"
|
|
placeholder="Chatbot suggestion count"
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField
|
|
label="Reminder periods"
|
|
>
|
|
<Field
|
|
name="reminder_periods"
|
|
placeholder="Reminder periods"
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField
|
|
label="Escalation timeframes"
|
|
>
|
|
<Field
|
|
name="escalation_timeframes"
|
|
placeholder="Escalation timeframes"
|
|
/>
|
|
</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('/hoa_parameters/hoa_parameters-list')}/>
|
|
</BaseButtons>
|
|
</Form>
|
|
</Formik>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
)
|
|
}
|
|
|
|
Hoa_parametersNew.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
)
|
|
}
|
|
|
|
export default Hoa_parametersNew
|