ui(admin): add basic egg editing
This commit is contained in:
parent
66443dd5d3
commit
6abf4a302c
2 changed files with 95 additions and 23 deletions
|
@ -1,5 +1,8 @@
|
||||||
|
import updateEgg from '@/api/admin/eggs/updateEgg';
|
||||||
|
import EggDeleteButton from '@/components/admin/nests/eggs/EggDeleteButton';
|
||||||
|
import Button from '@/components/elements/Button';
|
||||||
import Editor from '@/components/elements/Editor';
|
import Editor from '@/components/elements/Editor';
|
||||||
import Field from '@/components/elements/Field';
|
import Field, { TextareaField } from '@/components/elements/Field';
|
||||||
import Input from '@/components/elements/Input';
|
import Input from '@/components/elements/Input';
|
||||||
import Label from '@/components/elements/Label';
|
import Label from '@/components/elements/Label';
|
||||||
import SpinnerOverlay from '@/components/elements/SpinnerOverlay';
|
import SpinnerOverlay from '@/components/elements/SpinnerOverlay';
|
||||||
|
@ -9,9 +12,10 @@ import { faEgg, faTerminal } from '@fortawesome/free-solid-svg-icons';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import AdminBox from '@/components/admin/AdminBox';
|
import AdminBox from '@/components/admin/AdminBox';
|
||||||
import { Egg } from '@/api/admin/eggs/getEgg';
|
import { Egg } from '@/api/admin/eggs/getEgg';
|
||||||
|
import { useHistory } from 'react-router-dom';
|
||||||
import tw from 'twin.macro';
|
import tw from 'twin.macro';
|
||||||
import { object } from 'yup';
|
import { object } from 'yup';
|
||||||
import { Form, Formik, useFormikContext } from 'formik';
|
import { Form, Formik, FormikHelpers, useFormikContext } from 'formik';
|
||||||
|
|
||||||
function EggInformationContainer () {
|
function EggInformationContainer () {
|
||||||
const { isSubmitting } = useFormikContext();
|
const { isSubmitting } = useFormikContext();
|
||||||
|
@ -91,6 +95,13 @@ function EggImageContainer () {
|
||||||
return (
|
return (
|
||||||
<AdminBox icon={undefined} title={'Image'} css={tw`relative`}>
|
<AdminBox icon={undefined} title={'Image'} css={tw`relative`}>
|
||||||
<SpinnerOverlay visible={isSubmitting}/>
|
<SpinnerOverlay visible={isSubmitting}/>
|
||||||
|
|
||||||
|
<TextareaField
|
||||||
|
id={'dockerImages'}
|
||||||
|
name={'dockerImages'}
|
||||||
|
label={'Docker Images'}
|
||||||
|
rows={5}
|
||||||
|
/>
|
||||||
</AdminBox>
|
</AdminBox>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -113,11 +124,11 @@ function EggStopContainer () {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function EggProcessContainer ({ egg }: { egg: Egg }) {
|
function EggProcessContainer ({ className, egg }: { className?: string, egg: Egg }) {
|
||||||
const { isSubmitting } = useFormikContext();
|
const { isSubmitting } = useFormikContext();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<AdminBox title={'Process Configuration'} css={tw`relative mb-16`}>
|
<AdminBox title={'Process Configuration'} css={tw`relative`} className={className}>
|
||||||
<SpinnerOverlay visible={isSubmitting}/>
|
<SpinnerOverlay visible={isSubmitting}/>
|
||||||
|
|
||||||
<div css={tw`mb-6`}>
|
<div css={tw`mb-6`}>
|
||||||
|
@ -141,11 +152,30 @@ function EggProcessContainer ({ egg }: { egg: Egg }) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function EggSettingsContainer ({ egg }: { egg: Egg }) {
|
interface Values {
|
||||||
const { clearFlashes } = useFlash();
|
name: string;
|
||||||
|
description: string;
|
||||||
|
startup: string;
|
||||||
|
dockerImages: string;
|
||||||
|
stopCommand: string;
|
||||||
|
}
|
||||||
|
|
||||||
const submit = () => {
|
export default function EggSettingsContainer ({ egg }: { egg: Egg }) {
|
||||||
|
const history = useHistory();
|
||||||
|
|
||||||
|
const { clearFlashes, clearAndAddHttpError } = useFlash();
|
||||||
|
|
||||||
|
const submit = (values: Values, { setSubmitting }: FormikHelpers<Values>) => {
|
||||||
clearFlashes('egg');
|
clearFlashes('egg');
|
||||||
|
|
||||||
|
// TODO: Send data from code blocks.
|
||||||
|
|
||||||
|
updateEgg(egg.id, { ...values, dockerImages: values.dockerImages.split('\n') })
|
||||||
|
.catch(error => {
|
||||||
|
console.error(error);
|
||||||
|
clearAndAddHttpError({ key: 'egg', error });
|
||||||
|
})
|
||||||
|
.then(() => setSubmitting(false));
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -154,29 +184,42 @@ export default function EggSettingsContainer ({ egg }: { egg: Egg }) {
|
||||||
initialValues={{
|
initialValues={{
|
||||||
name: egg.name,
|
name: egg.name,
|
||||||
description: egg.description || '',
|
description: egg.description || '',
|
||||||
|
|
||||||
startup: egg.startup,
|
startup: egg.startup,
|
||||||
|
dockerImages: egg.dockerImages.join('\n'),
|
||||||
stopCommand: egg.configStop,
|
stopCommand: egg.configStop || '',
|
||||||
}}
|
}}
|
||||||
validationSchema={object().shape({
|
validationSchema={object().shape({
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
<Form>
|
{({ isSubmitting, isValid }) => (
|
||||||
<div css={tw`grid grid-cols-1 md:grid-cols-2 gap-x-8 gap-y-6 mb-6`}>
|
<Form>
|
||||||
<EggInformationContainer/>
|
<div css={tw`grid grid-cols-1 md:grid-cols-2 gap-x-8 gap-y-6 mb-6`}>
|
||||||
<EggDetailsContainer egg={egg}/>
|
<EggInformationContainer/>
|
||||||
</div>
|
<EggDetailsContainer egg={egg}/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<EggStartupContainer css={tw`mb-6`}/>
|
<EggStartupContainer css={tw`mb-6`}/>
|
||||||
|
|
||||||
<div css={tw`grid grid-cols-1 md:grid-cols-2 gap-x-8 gap-y-6 mb-6`}>
|
<div css={tw`grid grid-cols-1 md:grid-cols-2 gap-x-8 gap-y-6 mb-6`}>
|
||||||
<EggImageContainer/>
|
<EggImageContainer/>
|
||||||
<EggStopContainer/>
|
<EggStopContainer/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<EggProcessContainer egg={egg}/>
|
<EggProcessContainer egg={egg} css={tw`mb-6`}/>
|
||||||
</Form>
|
|
||||||
|
<div css={tw`bg-neutral-700 rounded shadow-md py-2 px-6 mb-16`}>
|
||||||
|
<div css={tw`flex flex-row`}>
|
||||||
|
<EggDeleteButton
|
||||||
|
eggId={egg.id}
|
||||||
|
onDeleted={() => history.push('/admin/eggs')}
|
||||||
|
/>
|
||||||
|
<Button type="submit" size="small" css={tw`ml-auto`} disabled={isSubmitting || !isValid}>
|
||||||
|
Save Changes
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Form>
|
||||||
|
)}
|
||||||
</Formik>
|
</Formik>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import React, { forwardRef } from 'react';
|
import React, { forwardRef } from 'react';
|
||||||
import { Field as FormikField, FieldProps } from 'formik';
|
import { Field as FormikField, FieldProps } from 'formik';
|
||||||
import Input from '@/components/elements/Input';
|
import Input, { Textarea } from '@/components/elements/Input';
|
||||||
import Label from '@/components/elements/Label';
|
import Label from '@/components/elements/Label';
|
||||||
import InputError from '@/components/elements/InputError';
|
import InputError from '@/components/elements/InputError';
|
||||||
import tw from 'twin.macro';
|
import tw from 'twin.macro';
|
||||||
|
@ -43,4 +43,33 @@ const Field = forwardRef<HTMLInputElement, Props>(({ id, name, light = false, la
|
||||||
));
|
));
|
||||||
Field.displayName = 'Field';
|
Field.displayName = 'Field';
|
||||||
|
|
||||||
|
type Props2 = OwnProps & Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'>;
|
||||||
|
|
||||||
|
export const TextareaField = forwardRef<HTMLTextAreaElement, Props2>(
|
||||||
|
function TextareaField ({ id, name, light = false, label, description, validate, ...props }, ref) {
|
||||||
|
return (
|
||||||
|
<FormikField innerRef={ref} name={name} validate={validate}>
|
||||||
|
{
|
||||||
|
({ field, form: { errors, touched } }: FieldProps) => (
|
||||||
|
<div>
|
||||||
|
{label && <Label htmlFor={id} isLight={light}>{label}</Label>}
|
||||||
|
<Textarea
|
||||||
|
id={id}
|
||||||
|
{...field}
|
||||||
|
{...props}
|
||||||
|
isLight={light}
|
||||||
|
hasError={!!(touched[field.name] && errors[field.name])}
|
||||||
|
/>
|
||||||
|
<InputError errors={errors} touched={touched} name={field.name}>
|
||||||
|
{description || null}
|
||||||
|
</InputError>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</FormikField>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
TextareaField.displayName = 'TextareaField';
|
||||||
|
|
||||||
export default Field;
|
export default Field;
|
||||||
|
|
Loading…
Reference in a new issue