import type { Action, Actions } from 'easy-peasy'; import { action, createContextStore, useStoreActions } from 'easy-peasy'; import type { FormikHelpers } from 'formik'; import { Form, Formik } from 'formik'; import { useEffect, useState } from 'react'; import { useNavigate, useParams } from 'react-router-dom'; import tw from 'twin.macro'; import { object, string } from 'yup'; import { getRole, updateRole } from '@/api/admin/roles'; import FlashMessageRender from '@/components/FlashMessageRender'; import AdminBox from '@/components/admin/AdminBox'; import AdminContentBlock from '@/components/admin/AdminContentBlock'; import RoleDeleteButton from '@/components/admin/roles/RoleDeleteButton'; import Button from '@/components/elements/Button'; import Field from '@/components/elements/Field'; import Spinner from '@/components/elements/Spinner'; import SpinnerOverlay from '@/components/elements/SpinnerOverlay'; import type { UserRole } from '@definitions/admin'; import type { ApplicationStore } from '@/state'; interface ctx { role: UserRole | undefined; setRole: Action; } export const Context = createContextStore({ role: undefined, setRole: action((state, payload) => { state.role = payload; }), }); interface Values { name: string; description: string; } const EditInformationContainer = () => { const navigate = useNavigate(); const { clearFlashes, clearAndAddHttpError } = useStoreActions( (actions: Actions) => actions.flashes, ); const role = Context.useStoreState(state => state.role); const setRole = Context.useStoreActions(actions => actions.setRole); if (role === undefined) { return <>; } const submit = ({ name, description }: Values, { setSubmitting }: FormikHelpers) => { clearFlashes('role'); updateRole(role.id, name, description) .then(() => setRole({ ...role, name, description })) .catch(error => { console.error(error); clearAndAddHttpError({ key: 'role', error }); }) .then(() => setSubmitting(false)); }; return ( {({ isSubmitting, isValid }) => ( <>
navigate('/admin/roles')} />
)}
); }; const RoleEditContainer = () => { const params = useParams<'id'>(); const { clearFlashes, clearAndAddHttpError } = useStoreActions( (actions: Actions) => actions.flashes, ); const [loading, setLoading] = useState(true); const role = Context.useStoreState(state => state.role); const setRole = Context.useStoreActions(actions => actions.setRole); useEffect(() => { clearFlashes('role'); getRole(Number(params.id)) .then(role => setRole(role)) .catch(error => { console.error(error); clearAndAddHttpError({ key: 'role', error }); }) .then(() => setLoading(false)); }, []); if (loading || role === undefined) { return (
); } return (

{role.name}

{(role.description || '').length < 1 ? (

No description

) : (

{role.description}

)}
); }; export default () => { return ( ); };