2021-01-06 22:39:23 +00:00
|
|
|
import React from 'react';
|
|
|
|
import tw from 'twin.macro';
|
|
|
|
import AdminContentBlock from '@/components/admin/AdminContentBlock';
|
2021-07-24 18:23:33 +00:00
|
|
|
import FlashMessageRender from '@/components/FlashMessageRender';
|
2021-09-12 23:00:22 +00:00
|
|
|
import UserForm from '@/components/admin/users/UserForm';
|
2021-07-24 18:23:33 +00:00
|
|
|
import { useHistory } from 'react-router-dom';
|
|
|
|
import { Actions, useStoreActions } from 'easy-peasy';
|
|
|
|
import { ApplicationStore } from '@/state';
|
|
|
|
import { FormikHelpers } from 'formik';
|
|
|
|
import createUser, { Values } from '@/api/admin/users/createUser';
|
2021-01-06 22:39:23 +00:00
|
|
|
|
|
|
|
export default () => {
|
2021-07-24 18:23:33 +00:00
|
|
|
const history = useHistory();
|
|
|
|
|
|
|
|
const { clearFlashes, clearAndAddHttpError } = useStoreActions((actions: Actions<ApplicationStore>) => actions.flashes);
|
|
|
|
|
|
|
|
const submit = (values: Values, { setSubmitting }: FormikHelpers<Values>) => {
|
|
|
|
clearFlashes('user:create');
|
|
|
|
|
|
|
|
createUser(values)
|
|
|
|
.then(user => history.push(`/admin/users/${user.id}`))
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
clearAndAddHttpError({ key: 'user:create', error });
|
|
|
|
})
|
|
|
|
.then(() => setSubmitting(false));
|
|
|
|
};
|
|
|
|
|
2021-01-06 22:39:23 +00:00
|
|
|
return (
|
2021-01-10 18:34:14 +00:00
|
|
|
<AdminContentBlock title={'New User'}>
|
2021-01-06 22:39:23 +00:00
|
|
|
<div css={tw`w-full flex flex-row items-center mb-8`}>
|
2021-01-10 18:34:14 +00:00
|
|
|
<div css={tw`flex flex-col flex-shrink`} style={{ minWidth: '0' }}>
|
2021-01-06 22:39:23 +00:00
|
|
|
<h2 css={tw`text-2xl text-neutral-50 font-header font-medium`}>Create User</h2>
|
2021-01-10 18:34:14 +00:00
|
|
|
<p css={tw`text-base text-neutral-400 whitespace-nowrap overflow-ellipsis overflow-hidden`}>Add a new user to the panel.</p>
|
2021-01-06 22:39:23 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-24 18:23:33 +00:00
|
|
|
|
|
|
|
<FlashMessageRender byKey={'user:create'} css={tw`mb-4`}/>
|
|
|
|
|
2021-09-12 23:00:22 +00:00
|
|
|
<UserForm title={'Create User'} onSubmit={submit} role={null}/>
|
2021-01-06 22:39:23 +00:00
|
|
|
</AdminContentBlock>
|
|
|
|
);
|
|
|
|
};
|