174 lines
7.6 KiB
TypeScript
174 lines
7.6 KiB
TypeScript
import DatabaseSelect from '@/components/admin/nodes/DatabaseSelect';
|
|
import React from 'react';
|
|
import AdminBox from '@/components/admin/AdminBox';
|
|
import tw from 'twin.macro';
|
|
import { object, string } from 'yup';
|
|
import updateNode from '@/api/admin/nodes/updateNode';
|
|
import Button from '@/components/elements/Button';
|
|
import Field from '@/components/elements/Field';
|
|
import SpinnerOverlay from '@/components/elements/SpinnerOverlay';
|
|
import { Form, Formik, FormikHelpers } from 'formik';
|
|
import { Context } from '@/components/admin/nodes/NodeEditContainer';
|
|
import { ApplicationStore } from '@/state';
|
|
import { Actions, useStoreActions } from 'easy-peasy';
|
|
import LocationSelect from '@/components/admin/nodes/LocationSelect';
|
|
|
|
interface Values {
|
|
public: boolean;
|
|
name: string;
|
|
description: string;
|
|
locationId: number;
|
|
databaseHostId: number | null;
|
|
fqdn: string;
|
|
listenPortHTTP: number;
|
|
publicPortHTTP: number;
|
|
listenPortSFTP: number;
|
|
publicPortSFTP: number;
|
|
scheme: string;
|
|
}
|
|
|
|
export default () => {
|
|
const { clearFlashes, clearAndAddHttpError } = useStoreActions((actions: Actions<ApplicationStore>) => actions.flashes);
|
|
|
|
const node = Context.useStoreState(state => state.node);
|
|
const setNode = Context.useStoreActions(actions => actions.setNode);
|
|
|
|
if (node === undefined) {
|
|
return (
|
|
<></>
|
|
);
|
|
}
|
|
|
|
const submit = ({ name, description, locationId, databaseHostId, fqdn, listenPortHTTP, publicPortHTTP, listenPortSFTP, publicPortSFTP }: Values, { setSubmitting }: FormikHelpers<Values>) => {
|
|
clearFlashes('node');
|
|
|
|
console.log(`Location ID: ${locationId}`);
|
|
console.log(`Database Host ID: ${databaseHostId || 'null'}`);
|
|
|
|
updateNode(node.id, { name, description, locationId, databaseHostId, fqdn, listenPortHTTP, publicPortHTTP, listenPortSFTP, publicPortSFTP })
|
|
.then(() => setNode({ ...node, name, description, locationId, fqdn, listenPortHTTP, publicPortHTTP, listenPortSFTP, publicPortSFTP }))
|
|
.catch(error => {
|
|
console.error(error);
|
|
clearAndAddHttpError({ key: 'node', error });
|
|
})
|
|
.then(() => setSubmitting(false));
|
|
};
|
|
|
|
return (
|
|
<Formik
|
|
onSubmit={submit}
|
|
initialValues={{
|
|
public: node.public,
|
|
name: node.name,
|
|
description: node.description || '',
|
|
locationId: node.locationId,
|
|
databaseHostId: node.databaseHostId,
|
|
fqdn: node.fqdn,
|
|
listenPortHTTP: node.listenPortHTTP,
|
|
publicPortHTTP: node.publicPortHTTP,
|
|
listenPortSFTP: node.listenPortSFTP,
|
|
publicPortSFTP: node.publicPortSFTP,
|
|
scheme: node.scheme,
|
|
}}
|
|
validationSchema={object().shape({
|
|
name: string().required().max(191),
|
|
description: string().max(255),
|
|
})}
|
|
>
|
|
{
|
|
({ isSubmitting, isValid }) => (
|
|
<React.Fragment>
|
|
<AdminBox title={'Settings'} css={tw`relative`}>
|
|
<SpinnerOverlay visible={isSubmitting}/>
|
|
|
|
<Form css={tw`mb-0`}>
|
|
<div css={tw`mb-6`}>
|
|
<Field
|
|
id={'name'}
|
|
name={'name'}
|
|
label={'Name'}
|
|
type={'text'}
|
|
/>
|
|
</div>
|
|
|
|
<div css={tw`mb-6`}>
|
|
<Field
|
|
id={'description'}
|
|
name={'description'}
|
|
label={'Description'}
|
|
type={'text'}
|
|
/>
|
|
</div>
|
|
|
|
<div css={tw`mb-6`}>
|
|
<LocationSelect selected={node?.relations.location || null}/>
|
|
</div>
|
|
|
|
<div css={tw`mb-6`}>
|
|
<DatabaseSelect selected={node?.relations.databaseHost || null}/>
|
|
</div>
|
|
|
|
<div css={tw`mb-6`}>
|
|
<Field
|
|
id={'fqdn'}
|
|
name={'fqdn'}
|
|
label={'FQDN'}
|
|
type={'text'}
|
|
/>
|
|
</div>
|
|
|
|
<div css={tw`mb-6 md:w-full md:flex md:flex-row`}>
|
|
<div css={tw`mb-6 md:w-full md:flex md:flex-col md:mr-4 md:mb-0`}>
|
|
<Field
|
|
id={'listenPortHTTP'}
|
|
name={'listenPortHTTP'}
|
|
label={'HTTP Listen Port'}
|
|
type={'number'}
|
|
/>
|
|
</div>
|
|
|
|
<div css={tw`mb-6 md:w-full md:flex md:flex-col md:ml-4 md:mb-0`}>
|
|
<Field
|
|
id={'publicPortHTTP'}
|
|
name={'publicPortHTTP'}
|
|
label={'HTTP Public Port'}
|
|
type={'number'}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div css={tw`mb-6 md:w-full md:flex md:flex-row`}>
|
|
<div css={tw`mb-6 md:w-full md:flex md:flex-col md:mr-4 md:mb-0`}>
|
|
<Field
|
|
id={'listenPortSFTP'}
|
|
name={'listenPortSFTP'}
|
|
label={'SFTP Listen Port'}
|
|
type={'number'}
|
|
/>
|
|
</div>
|
|
|
|
<div css={tw`mb-6 md:w-full md:flex md:flex-col md:ml-4 md:mb-0`}>
|
|
<Field
|
|
id={'publicPortSFTP'}
|
|
name={'publicPortSFTP'}
|
|
label={'SFTP Public Port'}
|
|
type={'number'}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div css={tw`flex flex-row items-center w-full`}>
|
|
<div css={tw`flex ml-auto`}>
|
|
<Button type={'submit'} disabled={isSubmitting || !isValid}>
|
|
Save
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</Form>
|
|
</AdminBox>
|
|
</React.Fragment>
|
|
)
|
|
}
|
|
</Formik>
|
|
);
|
|
};
|