109 lines
4.8 KiB
TypeScript
109 lines
4.8 KiB
TypeScript
import React, { useState } from 'react';
|
|
import Modal from '@/components/elements/Modal';
|
|
import { Form, Formik, FormikHelpers } from 'formik';
|
|
import Field from '@/components/elements/Field';
|
|
import { object, string } from 'yup';
|
|
import createServerDatabase from '@/api/server/createServerDatabase';
|
|
import { ServerContext } from '@/state/server';
|
|
import { httpErrorToHuman } from '@/api/http';
|
|
import FlashMessageRender from '@/components/FlashMessageRender';
|
|
import useFlash from '@/plugins/useFlash';
|
|
import useServer from '@/plugins/useServer';
|
|
|
|
interface Values {
|
|
databaseName: string;
|
|
connectionsFrom: string;
|
|
}
|
|
|
|
const schema = object().shape({
|
|
databaseName: string()
|
|
.required('A database name must be provided.')
|
|
.min(5, 'Database name must be at least 5 characters.')
|
|
.max(64, 'Database name must not exceed 64 characters.')
|
|
.matches(/^[A-Za-z0-9_\-.]{5,64}$/, 'Database name should only contain alphanumeric characters, underscores, dashes, and/or periods.'),
|
|
connectionsFrom: string()
|
|
.required('A connection value must be provided.')
|
|
.matches(/^([1-9]{1,3}|%)(\.([0-9]{1,3}|%))?(\.([0-9]{1,3}|%))?(\.([0-9]{1,3}|%))?$/, 'A valid connection address must be provided.'),
|
|
});
|
|
|
|
export default () => {
|
|
const { uuid } = useServer();
|
|
const { addError, clearFlashes } = useFlash();
|
|
const [ visible, setVisible ] = useState(false);
|
|
|
|
const appendDatabase = ServerContext.useStoreActions(actions => actions.databases.appendDatabase);
|
|
|
|
const submit = (values: Values, { setSubmitting }: FormikHelpers<Values>) => {
|
|
clearFlashes('database:create');
|
|
createServerDatabase(uuid, { ...values })
|
|
.then(database => {
|
|
appendDatabase(database);
|
|
setVisible(false);
|
|
})
|
|
.catch(error => {
|
|
console.log(error);
|
|
addError({ key: 'database:create', message: httpErrorToHuman(error) });
|
|
setSubmitting(false);
|
|
});
|
|
};
|
|
|
|
return (
|
|
<React.Fragment>
|
|
<Formik
|
|
onSubmit={submit}
|
|
initialValues={{ databaseName: '', connectionsFrom: '%' }}
|
|
validationSchema={schema}
|
|
>
|
|
{
|
|
({ isSubmitting, resetForm }) => (
|
|
<Modal
|
|
visible={visible}
|
|
dismissable={!isSubmitting}
|
|
showSpinnerOverlay={isSubmitting}
|
|
onDismissed={() => {
|
|
resetForm();
|
|
setVisible(false);
|
|
}}
|
|
>
|
|
<FlashMessageRender byKey={'database:create'} className={'mb-6'}/>
|
|
<h3 className={'mb-6'}>Create new database</h3>
|
|
<Form className={'m-0'}>
|
|
<Field
|
|
type={'string'}
|
|
id={'database_name'}
|
|
name={'databaseName'}
|
|
label={'Database Name'}
|
|
description={'A descriptive name for your database instance.'}
|
|
/>
|
|
<div className={'mt-6'}>
|
|
<Field
|
|
type={'string'}
|
|
id={'connections_from'}
|
|
name={'connectionsFrom'}
|
|
label={'Connections From'}
|
|
description={'Where connections should be allowed from. Use % for wildcards.'}
|
|
/>
|
|
</div>
|
|
<div className={'mt-6 text-right'}>
|
|
<button
|
|
type={'button'}
|
|
className={'btn btn-sm btn-secondary mr-2'}
|
|
onClick={() => setVisible(false)}
|
|
>
|
|
Cancel
|
|
</button>
|
|
<button className={'btn btn-sm btn-primary'} type={'submit'}>
|
|
Create Database
|
|
</button>
|
|
</div>
|
|
</Form>
|
|
</Modal>
|
|
)
|
|
}
|
|
</Formik>
|
|
<button className={'btn btn-primary btn-sm'} onClick={() => setVisible(true)}>
|
|
New Database
|
|
</button>
|
|
</React.Fragment>
|
|
);
|
|
};
|