import React, { useState } from 'react'; import createRole from '@/api/admin/roles/createRole'; import { httpErrorToHuman } from '@/api/http'; import { AdminContext } from '@/state/admin'; 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 tw from 'twin.macro'; import { object, string } from 'yup'; interface Values { name: string, description: string, } const schema = object().shape({ name: string() .required('A role name must be provided.') .max(32, 'Role name must not exceed 32 characters.'), description: string() .max(255, 'Role description must not exceed 255 characters.'), }); export default () => { const [ visible, setVisible ] = useState(false); const { addError, clearFlashes } = useFlash(); const appendRole = AdminContext.useStoreActions(actions => actions.roles.appendRole); const submit = ({ name, description }: Values, { setSubmitting }: FormikHelpers) => { clearFlashes('role:create'); setSubmitting(true); createRole(name, description) .then(role => { appendRole(role); setVisible(false); }) .catch(error => { addError({ key: 'role:create', message: httpErrorToHuman(error) }); setSubmitting(false); }); }; return ( <> { ({ isSubmitting, resetForm }) => ( { resetForm(); setVisible(false); }} >

New Role

) }
); };