2021-01-08 17:48:11 +00:00
|
|
|
import React, { useEffect, useState } from 'react';
|
2021-06-06 20:08:39 +00:00
|
|
|
import { useHistory } from 'react-router';
|
2021-07-14 22:43:59 +00:00
|
|
|
import { useRouteMatch } from 'react-router-dom';
|
2021-01-08 16:25:40 +00:00
|
|
|
import tw from 'twin.macro';
|
|
|
|
import AdminContentBlock from '@/components/admin/AdminContentBlock';
|
|
|
|
import Spinner from '@/components/elements/Spinner';
|
|
|
|
import FlashMessageRender from '@/components/FlashMessageRender';
|
|
|
|
import { Nest } from '@/api/admin/nests/getNests';
|
|
|
|
import getNest from '@/api/admin/nests/getNest';
|
2021-01-08 17:02:49 +00:00
|
|
|
import updateNest from '@/api/admin/nests/updateNest';
|
|
|
|
import { object, string } from 'yup';
|
|
|
|
import Button from '@/components/elements/Button';
|
|
|
|
import Field from '@/components/elements/Field';
|
|
|
|
import SpinnerOverlay from '@/components/elements/SpinnerOverlay';
|
|
|
|
import { ApplicationStore } from '@/state';
|
2021-01-08 17:48:11 +00:00
|
|
|
import { action, Action, Actions, createContextStore, useStoreActions } from 'easy-peasy';
|
2021-01-08 17:02:49 +00:00
|
|
|
import { Form, Formik, FormikHelpers } from 'formik';
|
|
|
|
import AdminBox from '@/components/admin/AdminBox';
|
2021-01-08 17:48:11 +00:00
|
|
|
import CopyOnClick from '@/components/elements/CopyOnClick';
|
|
|
|
import Input from '@/components/elements/Input';
|
|
|
|
import Label from '@/components/elements/Label';
|
2021-06-06 20:08:39 +00:00
|
|
|
import NestDeleteButton from '@/components/admin/nests/NestDeleteButton';
|
2021-07-14 22:43:59 +00:00
|
|
|
import NestEggTable from '@/components/admin/nests/NestEggTable';
|
2021-01-06 22:50:21 +00:00
|
|
|
|
2021-01-08 17:02:49 +00:00
|
|
|
interface ctx {
|
|
|
|
nest: Nest | undefined;
|
2021-01-08 17:48:11 +00:00
|
|
|
setNest: Action<ctx, Nest | undefined>;
|
|
|
|
|
|
|
|
selectedEggs: number[];
|
|
|
|
|
|
|
|
setSelectedEggs: Action<ctx, number[]>;
|
|
|
|
appendSelectedEggs: Action<ctx, number>;
|
|
|
|
removeSelectedEggs: Action<ctx, number>;
|
2021-01-08 17:02:49 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 17:48:11 +00:00
|
|
|
export const Context = createContextStore<ctx>({
|
|
|
|
nest: undefined,
|
|
|
|
|
|
|
|
setNest: action((state, payload) => {
|
|
|
|
state.nest = payload;
|
|
|
|
}),
|
|
|
|
|
|
|
|
selectedEggs: [],
|
|
|
|
|
|
|
|
setSelectedEggs: action((state, payload) => {
|
|
|
|
state.selectedEggs = payload;
|
|
|
|
}),
|
|
|
|
|
|
|
|
appendSelectedEggs: action((state, payload) => {
|
|
|
|
state.selectedEggs = state.selectedEggs.filter(id => id !== payload).concat(payload);
|
|
|
|
}),
|
|
|
|
|
|
|
|
removeSelectedEggs: action((state, payload) => {
|
|
|
|
state.selectedEggs = state.selectedEggs.filter(id => id !== payload);
|
|
|
|
}),
|
|
|
|
});
|
2021-01-08 17:02:49 +00:00
|
|
|
|
|
|
|
interface Values {
|
|
|
|
name: string;
|
2021-01-08 22:34:55 +00:00
|
|
|
description: string;
|
2021-01-08 17:02:49 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 17:24:41 +00:00
|
|
|
const EditInformationContainer = () => {
|
2021-06-06 20:08:39 +00:00
|
|
|
const history = useHistory();
|
|
|
|
|
2021-01-08 17:02:49 +00:00
|
|
|
const { clearFlashes, clearAndAddHttpError } = useStoreActions((actions: Actions<ApplicationStore>) => actions.flashes);
|
2021-01-09 17:36:40 +00:00
|
|
|
|
2021-01-08 17:48:11 +00:00
|
|
|
const nest = Context.useStoreState(state => state.nest);
|
|
|
|
const setNest = Context.useStoreActions(actions => actions.setNest);
|
2021-01-08 17:02:49 +00:00
|
|
|
|
|
|
|
if (nest === undefined) {
|
|
|
|
return (
|
|
|
|
<></>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const submit = ({ name, description }: Values, { setSubmitting }: FormikHelpers<Values>) => {
|
|
|
|
clearFlashes('nest');
|
|
|
|
|
2021-01-08 22:34:55 +00:00
|
|
|
updateNest(nest.id, name, description)
|
2021-01-08 17:02:49 +00:00
|
|
|
.then(() => setNest({ ...nest, name, description }))
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
clearAndAddHttpError({ key: 'nest', error });
|
|
|
|
})
|
|
|
|
.then(() => setSubmitting(false));
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Formik
|
|
|
|
onSubmit={submit}
|
|
|
|
initialValues={{
|
|
|
|
name: nest.name,
|
2021-01-08 22:34:55 +00:00
|
|
|
description: nest.description || '',
|
2021-01-08 17:02:49 +00:00
|
|
|
}}
|
|
|
|
validationSchema={object().shape({
|
|
|
|
name: string().required().min(1),
|
|
|
|
description: string().max(255, ''),
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
{
|
|
|
|
({ isSubmitting, isValid }) => (
|
|
|
|
<React.Fragment>
|
2021-01-08 21:55:34 +00:00
|
|
|
<AdminBox title={'Edit Nest'} css={tw`flex-1 self-start w-full relative mb-8 lg:mb-0 mr-0 lg:mr-4`}>
|
2021-01-08 17:02:49 +00:00
|
|
|
<SpinnerOverlay visible={isSubmitting}/>
|
|
|
|
|
|
|
|
<Form css={tw`mb-0`}>
|
|
|
|
<div>
|
|
|
|
<Field
|
|
|
|
id={'name'}
|
|
|
|
name={'name'}
|
|
|
|
label={'Name'}
|
|
|
|
type={'text'}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div css={tw`mt-6`}>
|
|
|
|
<Field
|
|
|
|
id={'description'}
|
|
|
|
name={'description'}
|
|
|
|
label={'Description'}
|
|
|
|
type={'text'}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
2021-01-09 17:36:40 +00:00
|
|
|
<div css={tw`w-full flex flex-row items-center mt-6`}>
|
|
|
|
<div css={tw`flex`}>
|
2021-06-06 20:08:39 +00:00
|
|
|
<NestDeleteButton
|
|
|
|
nestId={nest.id}
|
|
|
|
onDeleted={() => history.push('/admin/nests')}
|
|
|
|
/>
|
2021-01-09 17:36:40 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div css={tw`flex ml-auto`}>
|
|
|
|
<Button type={'submit'} disabled={isSubmitting || !isValid}>
|
|
|
|
Save
|
|
|
|
</Button>
|
|
|
|
</div>
|
2021-01-08 17:02:49 +00:00
|
|
|
</div>
|
|
|
|
</Form>
|
|
|
|
</AdminBox>
|
|
|
|
</React.Fragment>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
</Formik>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2021-01-08 17:24:41 +00:00
|
|
|
const ViewDetailsContainer = () => {
|
2021-01-08 17:48:11 +00:00
|
|
|
const nest = Context.useStoreState(state => state.nest);
|
2021-01-08 17:24:41 +00:00
|
|
|
|
|
|
|
if (nest === undefined) {
|
|
|
|
return (
|
|
|
|
<></>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2021-01-08 21:55:34 +00:00
|
|
|
<AdminBox title={'Nest Details'} css={tw`flex-1 w-full relative ml-0 lg:ml-4`}>
|
2021-01-08 17:24:41 +00:00
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<Label>ID</Label>
|
|
|
|
<CopyOnClick text={nest.id.toString()}>
|
|
|
|
<Input
|
|
|
|
type={'text'}
|
|
|
|
value={nest.id}
|
|
|
|
readOnly
|
|
|
|
/>
|
|
|
|
</CopyOnClick>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div css={tw`mt-6`}>
|
|
|
|
<Label>UUID</Label>
|
|
|
|
<CopyOnClick text={nest.uuid}>
|
|
|
|
<Input
|
|
|
|
type={'text'}
|
|
|
|
value={nest.uuid}
|
|
|
|
readOnly
|
|
|
|
/>
|
|
|
|
</CopyOnClick>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div css={tw`mt-6 mb-2`}>
|
|
|
|
<Label>Author</Label>
|
|
|
|
<CopyOnClick text={nest.author}>
|
|
|
|
<Input
|
|
|
|
type={'text'}
|
|
|
|
value={nest.author}
|
|
|
|
readOnly
|
|
|
|
/>
|
|
|
|
</CopyOnClick>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</AdminBox>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2021-01-08 17:02:49 +00:00
|
|
|
const NestEditContainer = () => {
|
2021-07-14 22:43:59 +00:00
|
|
|
const match = useRouteMatch<{ nestId: string }>();
|
2021-01-08 16:25:40 +00:00
|
|
|
|
2021-01-08 17:02:49 +00:00
|
|
|
const { clearFlashes, clearAndAddHttpError } = useStoreActions((actions: Actions<ApplicationStore>) => actions.flashes);
|
2021-01-08 16:25:40 +00:00
|
|
|
const [ loading, setLoading ] = useState(true);
|
|
|
|
|
2021-01-08 17:48:11 +00:00
|
|
|
const nest = Context.useStoreState(state => state.nest);
|
|
|
|
const setNest = Context.useStoreActions(actions => actions.setNest);
|
|
|
|
|
2021-01-08 16:25:40 +00:00
|
|
|
useEffect(() => {
|
|
|
|
clearFlashes('nest');
|
|
|
|
|
2021-07-14 22:43:59 +00:00
|
|
|
getNest(Number(match.params.nestId), [ 'eggs' ])
|
2021-01-08 16:25:40 +00:00
|
|
|
.then(nest => setNest(nest))
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
2021-01-08 17:02:49 +00:00
|
|
|
clearAndAddHttpError({ key: 'nest', error });
|
2021-01-08 16:25:40 +00:00
|
|
|
})
|
|
|
|
.then(() => setLoading(false));
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
if (loading || nest === undefined) {
|
|
|
|
return (
|
2021-01-08 22:07:03 +00:00
|
|
|
<AdminContentBlock>
|
2021-01-08 17:02:49 +00:00
|
|
|
<FlashMessageRender byKey={'nest'} css={tw`mb-4`}/>
|
|
|
|
|
2021-01-08 16:25:40 +00:00
|
|
|
<div css={tw`w-full flex flex-col items-center justify-center`} style={{ height: '24rem' }}>
|
|
|
|
<Spinner size={'base'}/>
|
|
|
|
</div>
|
|
|
|
</AdminContentBlock>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-01-06 22:50:21 +00:00
|
|
|
return (
|
2021-01-08 16:25:40 +00:00
|
|
|
<AdminContentBlock title={'Nests - ' + nest.name}>
|
|
|
|
<div css={tw`w-full flex flex-row items-center mb-8`}>
|
2021-01-10 18:34:14 +00:00
|
|
|
<div css={tw`flex flex-col flex-shrink`} style={{ minWidth: '0' }}>
|
2021-01-08 16:25:40 +00:00
|
|
|
<h2 css={tw`text-2xl text-neutral-50 font-header font-medium`}>{nest.name}</h2>
|
2021-01-08 22:34:55 +00:00
|
|
|
{
|
|
|
|
(nest.description || '').length < 1 ?
|
|
|
|
<p css={tw`text-base text-neutral-400`}>
|
|
|
|
<span css={tw`italic`}>No description</span>
|
|
|
|
</p>
|
|
|
|
:
|
2021-01-10 18:34:14 +00:00
|
|
|
<p css={tw`text-base text-neutral-400 whitespace-nowrap overflow-ellipsis overflow-hidden`}>{nest.description}</p>
|
2021-01-08 22:34:55 +00:00
|
|
|
}
|
2021-01-08 16:25:40 +00:00
|
|
|
</div>
|
2021-05-20 22:00:46 +00:00
|
|
|
|
|
|
|
<div css={tw`flex ml-auto pl-4`}>
|
|
|
|
<Button type={'button'} size={'large'} css={tw`h-10 px-4 py-0 whitespace-nowrap`}>
|
|
|
|
New Egg
|
|
|
|
</Button>
|
|
|
|
</div>
|
2021-01-08 16:25:40 +00:00
|
|
|
</div>
|
|
|
|
|
2021-01-08 17:02:49 +00:00
|
|
|
<FlashMessageRender byKey={'nest'} css={tw`mb-4`}/>
|
|
|
|
|
2021-01-08 21:55:34 +00:00
|
|
|
<div css={tw`flex flex-col lg:flex-row mb-8`}>
|
2021-01-08 17:24:41 +00:00
|
|
|
<EditInformationContainer/>
|
|
|
|
<ViewDetailsContainer/>
|
|
|
|
</div>
|
2021-01-08 17:48:11 +00:00
|
|
|
|
2021-07-14 22:43:59 +00:00
|
|
|
<NestEggTable/>
|
2021-01-08 16:25:40 +00:00
|
|
|
</AdminContentBlock>
|
2021-01-06 22:50:21 +00:00
|
|
|
);
|
|
|
|
};
|
2021-01-08 17:02:49 +00:00
|
|
|
|
|
|
|
export default () => {
|
|
|
|
return (
|
2021-01-08 17:48:11 +00:00
|
|
|
<Context.Provider>
|
2021-01-08 17:02:49 +00:00
|
|
|
<NestEditContainer/>
|
|
|
|
</Context.Provider>
|
|
|
|
);
|
|
|
|
};
|