175 lines
5.4 KiB
TypeScript
175 lines
5.4 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/compliance_issues/compliance_issuesSlice';
|
|
import { useAppDispatch } from '../../stores/hooks';
|
|
import { useRouter } from 'next/router';
|
|
import moment from 'moment';
|
|
|
|
const initialValues = {
|
|
organization: '',
|
|
|
|
category: 'security',
|
|
|
|
description: '',
|
|
|
|
severity: 'low',
|
|
|
|
owner: '',
|
|
|
|
status: 'open',
|
|
|
|
organizations: '',
|
|
};
|
|
|
|
const Compliance_issuesNew = () => {
|
|
const router = useRouter();
|
|
const dispatch = useAppDispatch();
|
|
|
|
const handleSubmit = async (data) => {
|
|
await dispatch(create(data));
|
|
await router.push('/compliance_issues/compliance_issues-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='Organization' labelFor='organization'>
|
|
<Field
|
|
name='organization'
|
|
id='organization'
|
|
component={SelectField}
|
|
options={[]}
|
|
itemRef={'organizations'}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='Category' labelFor='category'>
|
|
<Field name='category' id='category' component='select'>
|
|
<option value='security'>security</option>
|
|
|
|
<option value='privacy'>privacy</option>
|
|
|
|
<option value='billing'>billing</option>
|
|
</Field>
|
|
</FormField>
|
|
|
|
<FormField label='Description'>
|
|
<Field name='description' placeholder='Description' />
|
|
</FormField>
|
|
|
|
<FormField label='Severity' labelFor='severity'>
|
|
<Field name='severity' id='severity' component='select'>
|
|
<option value='low'>low</option>
|
|
|
|
<option value='medium'>medium</option>
|
|
|
|
<option value='high'>high</option>
|
|
|
|
<option value='critical'>critical</option>
|
|
</Field>
|
|
</FormField>
|
|
|
|
<FormField label='Owner' labelFor='owner'>
|
|
<Field
|
|
name='owner'
|
|
id='owner'
|
|
component={SelectField}
|
|
options={[]}
|
|
itemRef={'users'}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='Status' labelFor='status'>
|
|
<Field name='status' id='status' component='select'>
|
|
<option value='open'>open</option>
|
|
|
|
<option value='in_progress'>in_progress</option>
|
|
|
|
<option value='resolved'>resolved</option>
|
|
</Field>
|
|
</FormField>
|
|
|
|
<FormField label='organizations' labelFor='organizations'>
|
|
<Field
|
|
name='organizations'
|
|
id='organizations'
|
|
component={SelectField}
|
|
options={[]}
|
|
itemRef={'organizations'}
|
|
></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('/compliance_issues/compliance_issues-list')
|
|
}
|
|
/>
|
|
</BaseButtons>
|
|
</Form>
|
|
</Formik>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
Compliance_issuesNew.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated permission={'CREATE_COMPLIANCE_ISSUES'}>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
);
|
|
};
|
|
|
|
export default Compliance_issuesNew;
|