misc_pterodactyl-panel/resources/scripts/components/admin/nodes/NodeSettingsContainer.tsx

166 lines
7 KiB
TypeScript
Raw Normal View History

2021-01-30 20:53:47 +00:00
import React from 'react';
import AdminBox from '@/components/admin/AdminBox';
import tw from 'twin.macro';
2021-01-30 20:55:13 +00:00
import { object, string } from 'yup';
2021-01-30 20:53:47 +00:00
import updateNode from '@/api/admin/nodes/updateNode';
import Field from '@/components/elements/Field';
import SpinnerOverlay from '@/components/elements/SpinnerOverlay';
2021-03-12 21:12:45 +00:00
import { Field as FormikField, Form, Formik, FormikHelpers } from 'formik';
2021-01-30 20:53:47 +00:00
import { Context } from '@/components/admin/nodes/NodeEditContainer';
import { ApplicationStore } from '@/state';
import { Actions, useStoreActions } from 'easy-peasy';
2021-02-11 17:21:49 +00:00
import LocationSelect from '@/components/admin/nodes/LocationSelect';
2021-03-12 21:12:45 +00:00
import DatabaseSelect from '@/components/admin/nodes/DatabaseSelect';
import Label from '@/components/elements/Label';
2021-01-30 20:53:47 +00:00
interface Values {
public: boolean;
2021-01-30 20:53:47 +00:00
name: string;
description: string;
locationId: number;
2021-02-16 01:48:10 +00:00
databaseHostId: number | null;
fqdn: string;
2021-02-11 17:32:13 +00:00
scheme: string;
2021-03-12 21:12:45 +00:00
behindProxy: boolean;
2021-01-30 20:53:47 +00:00
}
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 (
<></>
);
}
2021-03-12 21:12:45 +00:00
const submit = ({ name, description, locationId, databaseHostId, fqdn, scheme, behindProxy }: Values, { setSubmitting }: FormikHelpers<Values>) => {
2021-02-11 17:21:49 +00:00
clearFlashes('node');
2021-01-30 20:53:47 +00:00
2021-03-12 21:12:45 +00:00
updateNode(node.id, { name, description, locationId, databaseHostId, fqdn, scheme, behindProxy })
.then(() => setNode({ ...node, name, description, locationId, fqdn, scheme, behindProxy }))
2021-01-30 20:53:47 +00:00
.catch(error => {
console.error(error);
clearAndAddHttpError({ key: 'node', error });
})
.then(() => setSubmitting(false));
};
return (
<Formik
onSubmit={submit}
initialValues={{
public: node.public,
2021-01-30 20:53:47 +00:00
name: node.name,
description: node.description || '',
locationId: node.locationId,
2021-02-16 01:48:10 +00:00
databaseHostId: node.databaseHostId,
fqdn: node.fqdn,
2021-02-11 17:32:13 +00:00
scheme: node.scheme,
2021-03-12 21:12:45 +00:00
behindProxy: node.behindProxy,
2021-01-30 20:53:47 +00:00
}}
validationSchema={object().shape({
name: string().required().max(191),
description: string().max(255),
})}
>
{
2021-03-12 21:12:45 +00:00
({ isSubmitting }) => (
2021-01-30 20:53:47 +00:00
<React.Fragment>
2021-03-12 21:12:45 +00:00
<AdminBox title={'Settings'} css={tw`w-full relative`}>
2021-01-30 20:53:47 +00:00
<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}/>
2021-02-16 01:48:10 +00:00
</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>
2021-03-12 21:12:45 +00:00
<div css={tw`mt-6`}>
<Label htmlFor={'scheme'}>SSL</Label>
<div>
<label css={tw`inline-flex items-center mr-2`}>
<FormikField
name={'scheme'}
type={'radio'}
value={'https'}
/>
<span css={tw`text-neutral-300 ml-2`}>Enabled</span>
</label>
<label css={tw`inline-flex items-center ml-2`}>
<FormikField
name={'scheme'}
type={'radio'}
value={'http'}
/>
<span css={tw`text-neutral-300 ml-2`}>Disabled</span>
</label>
2021-02-07 23:41:32 +00:00
</div>
</div>
2021-03-12 21:12:45 +00:00
<div css={tw`mt-6`}>
<Label htmlFor={'behindProxy'}>Behind Proxy</Label>
<div>
<label css={tw`inline-flex items-center mr-2`}>
<FormikField
name={'behindProxy'}
type={'radio'}
value={false}
/>
<span css={tw`text-neutral-300 ml-2`}>No</span>
</label>
<label css={tw`inline-flex items-center ml-2`}>
<FormikField
name={'behindProxy'}
type={'radio'}
value
/>
<span css={tw`text-neutral-300 ml-2`}>Yes</span>
</label>
2021-01-30 20:53:47 +00:00
</div>
</div>
</Form>
</AdminBox>
</React.Fragment>
)
}
</Formik>
);
};