import React, { useEffect, useState } from 'react'; import tw from 'twin.macro'; import { useRouteMatch } from 'react-router-dom'; import { action, Action, Actions, createContextStore, useStoreActions } from 'easy-peasy'; import { Role } from '@/api/admin/roles/getRoles'; import getRole from '@/api/admin/roles/getRole'; import AdminContentBlock from '@/components/admin/AdminContentBlock'; import Spinner from '@/components/elements/Spinner'; import FlashMessageRender from '@/components/FlashMessageRender'; import { ApplicationStore } from '@/state'; interface ctx { role: Role | undefined; setRole: Action; } export const Context = createContextStore({ role: undefined, setRole: action((state, payload) => { state.role = payload; }), }); const RoleEditContainer = () => { const match = useRouteMatch<{ id?: string }>(); 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(match.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 ( ); };