139 lines
3.7 KiB
TypeScript
139 lines
3.7 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/leads/leadsSlice'
|
|
import { useAppDispatch } from '../../stores/hooks'
|
|
import { useRouter } from 'next/router'
|
|
|
|
const initialValues = {
|
|
|
|
name: '',
|
|
|
|
status: '',
|
|
|
|
category: 'New',
|
|
|
|
owner: '',
|
|
|
|
agency: '',
|
|
|
|
contact: '',
|
|
|
|
folder: '',
|
|
|
|
}
|
|
|
|
const LeadsNew = () => {
|
|
const router = useRouter()
|
|
const dispatch = useAppDispatch()
|
|
|
|
const handleSubmit = async (data) => {
|
|
await dispatch(create(data))
|
|
await router.push('/leads/leads-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="LeadName"
|
|
>
|
|
<Field
|
|
name="name"
|
|
placeholder="LeadName"
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField
|
|
label="Status"
|
|
>
|
|
<Field
|
|
name="status"
|
|
placeholder="Status"
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField label="Category" labelFor="category">
|
|
<Field name="category" id="category" component="select">
|
|
|
|
<option value="New">New</option>
|
|
|
|
<option value="InProgress">InProgress</option>
|
|
|
|
<option value="Closed">Closed</option>
|
|
|
|
</Field>
|
|
</FormField>
|
|
|
|
<FormField label="Owner" labelFor="owner">
|
|
<Field name="owner" id="owner" component={SelectField} options={[]} itemRef={'users'}></Field>
|
|
</FormField>
|
|
|
|
<FormField label="Agency" labelFor="agency">
|
|
<Field name="agency" id="agency" component={SelectField} options={[]} itemRef={'real_estate_agencies'}></Field>
|
|
</FormField>
|
|
|
|
<FormField label="Contact" labelFor="contact">
|
|
<Field name="contact" id="contact" component={SelectField} options={[]} itemRef={'contact'}></Field>
|
|
</FormField>
|
|
|
|
<FormField label="Folder" labelFor="folder">
|
|
<Field name="folder" id="folder" component={SelectField} options={[]} itemRef={'folder'}></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('/leads/leads-list')}/>
|
|
</BaseButtons>
|
|
</Form>
|
|
</Formik>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
)
|
|
}
|
|
|
|
LeadsNew.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
)
|
|
}
|
|
|
|
export default LeadsNew
|