184 lines
5.3 KiB
TypeScript
184 lines
5.3 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/users/usersSlice';
|
|
import { useAppDispatch } from '../../stores/hooks';
|
|
import { useRouter } from 'next/router';
|
|
import moment from 'moment';
|
|
|
|
const initialValues = {
|
|
firstName: '',
|
|
|
|
lastName: '',
|
|
|
|
phoneNumber: '',
|
|
|
|
email: '',
|
|
|
|
disabled: false,
|
|
|
|
avatar: [],
|
|
|
|
app_role: '',
|
|
|
|
custom_permissions: [],
|
|
|
|
organizations: '',
|
|
};
|
|
|
|
const UsersNew = () => {
|
|
const router = useRouter();
|
|
const dispatch = useAppDispatch();
|
|
|
|
const handleSubmit = async (data) => {
|
|
await dispatch(create(data));
|
|
await router.push('/users/users-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='First Name'>
|
|
<Field name='firstName' placeholder='First Name' />
|
|
</FormField>
|
|
|
|
<FormField label='Last Name'>
|
|
<Field name='lastName' placeholder='Last Name' />
|
|
</FormField>
|
|
|
|
<FormField label='Phone Number'>
|
|
<Field name='phoneNumber' placeholder='Phone Number' />
|
|
</FormField>
|
|
|
|
<FormField label='E-Mail'>
|
|
<Field name='email' placeholder='E-Mail' />
|
|
</FormField>
|
|
|
|
<FormField label='Disabled' labelFor='disabled'>
|
|
<Field
|
|
name='disabled'
|
|
id='disabled'
|
|
component={SwitchField}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField>
|
|
<Field
|
|
label='Avatar'
|
|
color='info'
|
|
icon={mdiUpload}
|
|
path={'users/avatar'}
|
|
name='avatar'
|
|
id='avatar'
|
|
schema={{
|
|
size: undefined,
|
|
formats: undefined,
|
|
}}
|
|
component={FormImagePicker}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='App Role' labelFor='app_role'>
|
|
<Field
|
|
name='app_role'
|
|
id='app_role'
|
|
component={SelectField}
|
|
options={[]}
|
|
itemRef={'roles'}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField
|
|
label='Custom Permissions'
|
|
labelFor='custom_permissions'
|
|
>
|
|
<Field
|
|
name='custom_permissions'
|
|
id='custom_permissions'
|
|
itemRef={'permissions'}
|
|
options={[]}
|
|
component={SelectFieldMany}
|
|
></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('/users/users-list')}
|
|
/>
|
|
</BaseButtons>
|
|
</Form>
|
|
</Formik>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
UsersNew.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated permission={'CREATE_USERS'}>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
);
|
|
};
|
|
|
|
export default UsersNew;
|