2021-01-01 00:27:16 +00:00
|
|
|
import React, { useState } from 'react';
|
|
|
|
import createNest from '@/api/admin/nests/createNest';
|
2021-01-03 23:25:32 +00:00
|
|
|
import getNests from '@/api/admin/nests/getNests';
|
2021-01-01 00:27:16 +00:00
|
|
|
import Button from '@/components/elements/Button';
|
|
|
|
import Field from '@/components/elements/Field';
|
|
|
|
import Modal from '@/components/elements/Modal';
|
|
|
|
import FlashMessageRender from '@/components/FlashMessageRender';
|
|
|
|
import useFlash from '@/plugins/useFlash';
|
|
|
|
import { Form, Formik, FormikHelpers } from 'formik';
|
|
|
|
import { object, string } from 'yup';
|
2021-01-03 23:25:32 +00:00
|
|
|
import tw from 'twin.macro';
|
2021-01-01 00:27:16 +00:00
|
|
|
|
|
|
|
interface Values {
|
|
|
|
name: string,
|
|
|
|
description: string,
|
|
|
|
}
|
|
|
|
|
|
|
|
const schema = object().shape({
|
|
|
|
name: string()
|
|
|
|
.required('A nest name must be provided.')
|
|
|
|
.max(32, 'Nest name must not exceed 32 characters.'),
|
|
|
|
description: string()
|
|
|
|
.max(255, 'Nest description must not exceed 255 characters.'),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default () => {
|
|
|
|
const [ visible, setVisible ] = useState(false);
|
2021-01-03 23:25:32 +00:00
|
|
|
const { clearFlashes, clearAndAddHttpError } = useFlash();
|
|
|
|
const { mutate } = getNests();
|
2021-01-01 00:27:16 +00:00
|
|
|
|
|
|
|
const submit = ({ name, description }: Values, { setSubmitting }: FormikHelpers<Values>) => {
|
|
|
|
clearFlashes('nest:create');
|
|
|
|
setSubmitting(true);
|
|
|
|
|
|
|
|
createNest(name, description)
|
|
|
|
.then(nest => {
|
2021-01-03 23:25:32 +00:00
|
|
|
mutate(data => ({ ...data, items: data.items.concat(nest) }), false);
|
2021-01-01 00:27:16 +00:00
|
|
|
setVisible(false);
|
|
|
|
})
|
|
|
|
.catch(error => {
|
2021-01-03 23:25:32 +00:00
|
|
|
clearAndAddHttpError({ key: 'nest:create', error });
|
2021-01-01 00:27:16 +00:00
|
|
|
setSubmitting(false);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Formik
|
|
|
|
onSubmit={submit}
|
|
|
|
initialValues={{ name: '', description: '' }}
|
|
|
|
validationSchema={schema}
|
|
|
|
>
|
|
|
|
{
|
|
|
|
({ isSubmitting, resetForm }) => (
|
|
|
|
<Modal
|
|
|
|
visible={visible}
|
|
|
|
dismissable={!isSubmitting}
|
|
|
|
showSpinnerOverlay={isSubmitting}
|
|
|
|
onDismissed={() => {
|
|
|
|
resetForm();
|
|
|
|
setVisible(false);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<FlashMessageRender byKey={'nest:create'} css={tw`mb-6`}/>
|
2021-01-06 22:39:23 +00:00
|
|
|
|
2021-01-01 00:27:16 +00:00
|
|
|
<h2 css={tw`text-neutral-100 text-2xl mb-6`}>New Nest</h2>
|
2021-01-06 22:39:23 +00:00
|
|
|
|
2021-01-01 00:27:16 +00:00
|
|
|
<Form css={tw`m-0`}>
|
|
|
|
<Field
|
|
|
|
type={'string'}
|
|
|
|
id={'name'}
|
|
|
|
name={'name'}
|
|
|
|
label={'Name'}
|
|
|
|
description={'A short name used to identify this nest.'}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<div css={tw`mt-6`}>
|
|
|
|
<Field
|
|
|
|
type={'string'}
|
|
|
|
id={'description'}
|
|
|
|
name={'description'}
|
|
|
|
label={'Description'}
|
|
|
|
description={'A description for this nest.'}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div css={tw`flex flex-wrap justify-end mt-6`}>
|
|
|
|
<Button
|
|
|
|
type={'button'}
|
|
|
|
isSecondary
|
|
|
|
css={tw`w-full sm:w-auto sm:mr-2`}
|
|
|
|
onClick={() => setVisible(false)}
|
|
|
|
>
|
|
|
|
Cancel
|
|
|
|
</Button>
|
|
|
|
<Button css={tw`w-full mt-4 sm:w-auto sm:mt-0`} type={'submit'}>
|
|
|
|
Create Nest
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</Form>
|
|
|
|
</Modal>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
</Formik>
|
|
|
|
|
|
|
|
<Button type={'button'} size={'large'} css={tw`h-10 ml-auto px-4 py-0`} onClick={() => setVisible(true)}>
|
|
|
|
New Nest
|
|
|
|
</Button>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|