2019-12-22 00:38:40 +00:00
|
|
|
import React from 'react';
|
|
|
|
import Modal, { RequiredModalProps } from '@/components/elements/Modal';
|
|
|
|
import { Form, Formik, FormikActions } from 'formik';
|
|
|
|
import { object, string } from 'yup';
|
|
|
|
import Field from '@/components/elements/Field';
|
2019-12-22 01:43:50 +00:00
|
|
|
import { ServerContext } from '@/state/server';
|
|
|
|
import { join } from 'path';
|
2019-12-22 00:38:40 +00:00
|
|
|
|
|
|
|
type Props = RequiredModalProps & {
|
|
|
|
onFileNamed: (name: string) => void;
|
|
|
|
};
|
|
|
|
|
|
|
|
interface Values {
|
|
|
|
fileName: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ({ onFileNamed, onDismissed, ...props }: Props) => {
|
2019-12-22 01:43:50 +00:00
|
|
|
const directory = ServerContext.useStoreState(state => state.files.directory);
|
|
|
|
|
2019-12-22 00:38:40 +00:00
|
|
|
const submit = (values: Values, { setSubmitting }: FormikActions<Values>) => {
|
2019-12-22 01:43:50 +00:00
|
|
|
onFileNamed(join(directory, values.fileName));
|
2019-12-22 00:38:40 +00:00
|
|
|
setSubmitting(false);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Formik
|
|
|
|
onSubmit={submit}
|
|
|
|
initialValues={{ fileName: '' }}
|
|
|
|
validationSchema={object().shape({
|
|
|
|
fileName: string().required().min(1),
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
{({ resetForm }) => (
|
|
|
|
<Modal
|
|
|
|
onDismissed={() => {
|
|
|
|
resetForm();
|
|
|
|
onDismissed();
|
|
|
|
}}
|
|
|
|
{...props}
|
|
|
|
>
|
|
|
|
<Form>
|
|
|
|
<Field
|
|
|
|
id={'fileName'}
|
|
|
|
name={'fileName'}
|
|
|
|
label={'File Name'}
|
|
|
|
description={'Enter the name that this file should be saved as.'}
|
2019-12-22 01:43:50 +00:00
|
|
|
autoFocus={true}
|
2019-12-22 00:38:40 +00:00
|
|
|
/>
|
|
|
|
<div className={'mt-6 text-right'}>
|
|
|
|
<button className={'btn btn-primary btn-sm'}>
|
|
|
|
Create File
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</Form>
|
|
|
|
</Modal>
|
|
|
|
)}
|
|
|
|
</Formik>
|
|
|
|
);
|
|
|
|
};
|