106 lines
4.2 KiB
TypeScript
106 lines
4.2 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
|
import { useLocation } from 'react-router';
|
|
import tw from 'twin.macro';
|
|
import { Route, Switch, useRouteMatch } from 'react-router-dom';
|
|
import { action, Action, Actions, createContextStore, useStoreActions } from 'easy-peasy';
|
|
import { User } from '@/api/admin/users/getUsers';
|
|
import getUser from '@/api/admin/users/getUser';
|
|
import AdminContentBlock from '@/components/admin/AdminContentBlock';
|
|
import Spinner from '@/components/elements/Spinner';
|
|
import FlashMessageRender from '@/components/FlashMessageRender';
|
|
import { ApplicationStore } from '@/state';
|
|
import { SubNavigation, SubNavigationLink } from '@/components/admin/SubNavigation';
|
|
import UserServers from '@/components/admin/users/UserServers';
|
|
|
|
interface ctx {
|
|
user: User | undefined;
|
|
setUser: Action<ctx, User | undefined>;
|
|
}
|
|
|
|
export const Context = createContextStore<ctx>({
|
|
user: undefined,
|
|
|
|
setUser: action((state, payload) => {
|
|
state.user = payload;
|
|
}),
|
|
});
|
|
|
|
const UserRouter = () => {
|
|
const location = useLocation();
|
|
const match = useRouteMatch<{ id?: string }>();
|
|
|
|
const { clearFlashes, clearAndAddHttpError } = useStoreActions((actions: Actions<ApplicationStore>) => actions.flashes);
|
|
const [ loading, setLoading ] = useState(true);
|
|
|
|
const user = Context.useStoreState(state => state.user);
|
|
const setUser = Context.useStoreActions(actions => actions.setUser);
|
|
|
|
useEffect(() => {
|
|
clearFlashes('user');
|
|
|
|
getUser(Number(match.params?.id), [ 'database_host', 'location' ])
|
|
.then(user => setUser(user))
|
|
.catch(error => {
|
|
console.error(error);
|
|
clearAndAddHttpError({ key: 'user', error });
|
|
})
|
|
.then(() => setLoading(false));
|
|
}, []);
|
|
|
|
if (loading || user === undefined) {
|
|
return (
|
|
<AdminContentBlock>
|
|
<FlashMessageRender byKey={'user'} css={tw`mb-4`}/>
|
|
|
|
<div css={tw`w-full flex flex-col items-center justify-center`} style={{ height: '24rem' }}>
|
|
<Spinner size={'base'}/>
|
|
</div>
|
|
</AdminContentBlock>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<AdminContentBlock title={'User - ' + user.id}>
|
|
<div css={tw`w-full flex flex-row items-center mb-4`}>
|
|
<div css={tw`flex flex-col flex-shrink`} style={{ minWidth: '0' }}>
|
|
<h2 css={tw`text-2xl text-neutral-50 font-header font-medium`}>{user.email}</h2>
|
|
<p css={tw`text-base text-neutral-400 whitespace-nowrap overflow-ellipsis overflow-hidden`}>{user.uuid}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<FlashMessageRender byKey={'user'} css={tw`mb-4`}/>
|
|
|
|
<SubNavigation>
|
|
<SubNavigationLink to={`${match.url}`} name={'About'}>
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
|
<path clipRule="evenodd" fillRule="evenodd" d="M4 4a2 2 0 012-2h8a2 2 0 012 2v12a1 1 0 110 2h-3a1 1 0 01-1-1v-2a1 1 0 00-1-1H9a1 1 0 00-1 1v2a1 1 0 01-1 1H4a1 1 0 110-2V4zm3 1h2v2H7V5zm2 4H7v2h2V9zm2-4h2v2h-2V5zm2 4h-2v2h2V9z" />
|
|
</svg>
|
|
</SubNavigationLink>
|
|
|
|
<SubNavigationLink to={`${match.url}/servers`} name={'Servers'}>
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
|
<path clipRule="evenodd" fillRule="evenodd" d="M2 5a2 2 0 012-2h12a2 2 0 012 2v10a2 2 0 01-2 2H4a2 2 0 01-2-2V5zm3.293 1.293a1 1 0 011.414 0l3 3a1 1 0 010 1.414l-3 3a1 1 0 01-1.414-1.414L7.586 10 5.293 7.707a1 1 0 010-1.414zM11 12a1 1 0 100 2h3a1 1 0 100-2h-3z" />
|
|
</svg>
|
|
</SubNavigationLink>
|
|
</SubNavigation>
|
|
|
|
<Switch location={location}>
|
|
<Route path={`${match.path}`} exact>
|
|
<p>About</p>
|
|
</Route>
|
|
|
|
<Route path={`${match.path}/servers`} exact>
|
|
<UserServers/>
|
|
</Route>
|
|
</Switch>
|
|
</AdminContentBlock>
|
|
);
|
|
};
|
|
|
|
export default () => {
|
|
return (
|
|
<Context.Provider>
|
|
<UserRouter/>
|
|
</Context.Provider>
|
|
);
|
|
};
|