118 lines
4.8 KiB
TypeScript
118 lines
4.8 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
|
import { ServerContext } from '@/state/server';
|
|
import { Form, Formik, FormikHelpers } from 'formik';
|
|
import Field from '@/components/elements/Field';
|
|
import { join } from 'path';
|
|
import { object, string } from 'yup';
|
|
import createDirectory from '@/api/server/files/createDirectory';
|
|
import tw from 'twin.macro';
|
|
import { Button } from '@/components/elements/button/index';
|
|
import { FileObject } from '@/api/server/files/loadDirectory';
|
|
import useFlash from '@/plugins/useFlash';
|
|
import useFileManagerSwr from '@/plugins/useFileManagerSwr';
|
|
import { WithClassname } from '@/components/types';
|
|
import FlashMessageRender from '@/components/FlashMessageRender';
|
|
import { Dialog } from '@/components/elements/dialog';
|
|
import Portal from '@/components/elements/Portal';
|
|
import Code from '@/components/elements/Code';
|
|
|
|
interface Values {
|
|
directoryName: string;
|
|
}
|
|
|
|
const schema = object().shape({
|
|
directoryName: string().required('A valid directory name must be provided.'),
|
|
});
|
|
|
|
const generateDirectoryData = (name: string): FileObject => ({
|
|
key: `dir_${name.split('/', 1)[0] ?? name}`,
|
|
name: name.replace(/^(\/*)/, '').split('/', 1)[0] ?? name,
|
|
mode: 'drwxr-xr-x',
|
|
modeBits: '0755',
|
|
size: 0,
|
|
isFile: false,
|
|
isSymlink: false,
|
|
mimetype: '',
|
|
createdAt: new Date(),
|
|
modifiedAt: new Date(),
|
|
isArchiveType: () => false,
|
|
isEditable: () => false,
|
|
});
|
|
|
|
export default ({ className }: WithClassname) => {
|
|
const uuid = ServerContext.useStoreState((state) => state.server.data!.uuid);
|
|
const { clearFlashes, clearAndAddHttpError } = useFlash();
|
|
const [visible, setVisible] = useState(false);
|
|
|
|
const { mutate } = useFileManagerSwr();
|
|
const directory = ServerContext.useStoreState((state) => state.files.directory);
|
|
|
|
useEffect(() => {
|
|
if (!visible) return;
|
|
|
|
return () => {
|
|
clearFlashes('files:directory-modal');
|
|
};
|
|
}, [visible]);
|
|
|
|
const submit = ({ directoryName }: Values, { setSubmitting }: FormikHelpers<Values>) => {
|
|
createDirectory(uuid, directory, directoryName)
|
|
.then(() => mutate((data) => [...data, generateDirectoryData(directoryName)], false))
|
|
.then(() => setVisible(false))
|
|
.catch((error) => {
|
|
console.error(error);
|
|
setSubmitting(false);
|
|
clearAndAddHttpError({ key: 'files:directory-modal', error });
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Portal>
|
|
<Formik onSubmit={submit} validationSchema={schema} initialValues={{ directoryName: '' }}>
|
|
{({ resetForm, submitForm, isSubmitting: _, values }) => (
|
|
<Dialog
|
|
title={'Create Directory'}
|
|
open={visible}
|
|
onClose={() => {
|
|
setVisible(false);
|
|
resetForm();
|
|
}}
|
|
>
|
|
<FlashMessageRender key={'files:directory-modal'} />
|
|
<Form css={tw`m-0`}>
|
|
<Field autoFocus id={'directoryName'} name={'directoryName'} label={'Name'} />
|
|
<p css={tw`mt-2 text-sm md:text-base break-all`}>
|
|
<span css={tw`text-neutral-200`}>This directory will be created as </span>
|
|
<Code>
|
|
/home/container/
|
|
<span css={tw`text-cyan-200`}>
|
|
{join(directory, values.directoryName).replace(/^(\.\.\/|\/)+/, '')}
|
|
</span>
|
|
</Code>
|
|
</p>
|
|
</Form>
|
|
<Dialog.Footer>
|
|
<Button.Text
|
|
className={'w-full sm:w-auto'}
|
|
onClick={() => {
|
|
setVisible(false);
|
|
resetForm();
|
|
}}
|
|
>
|
|
Cancel
|
|
</Button.Text>
|
|
<Button className={'w-full sm:w-auto'} onClick={submitForm}>
|
|
Create
|
|
</Button>
|
|
</Dialog.Footer>
|
|
</Dialog>
|
|
)}
|
|
</Formik>
|
|
</Portal>
|
|
<Button.Text onClick={() => setVisible(true)} className={className}>
|
|
Create Directory
|
|
</Button.Text>
|
|
</>
|
|
);
|
|
};
|