1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-20 13:49:43 +02:00
planka/client/src/components/CardModal/AttachmentAddZone/AttachmentAddZone.jsx

120 lines
2.6 KiB
React
Raw Normal View History

import React, { useCallback, useEffect } from 'react';
import PropTypes from 'prop-types';
import { useDropzone } from 'react-dropzone';
import { useTranslation } from 'react-i18next';
import { closePopup } from '../../../lib/popup';
import { useModal } from '../../../hooks';
import TextFileAddModal from './TextFileAddModal';
import styles from './AttachmentAddZone.module.scss';
const AttachmentAddZone = React.memo(({ children, onCreate }) => {
const [t] = useTranslation();
const [modal, openModal, handleModalClose] = useModal();
const submit = useCallback(
(file) => {
onCreate({
file,
});
},
[onCreate],
);
const handleDropAccepted = useCallback(
(files) => {
submit(files[0]);
},
[submit],
);
const { getRootProps, getInputProps, isDragActive } = useDropzone({
multiple: false,
noClick: true,
noKeyboard: true,
onDropAccepted: handleDropAccepted,
});
const handleFileCreate = useCallback(
(file) => {
submit(file);
},
[submit],
);
useEffect(() => {
const handlePaste = (event) => {
if (!event.clipboardData) {
return;
}
const file = event.clipboardData.files[0];
if (file) {
submit(file);
return;
}
const item = event.clipboardData.items[0];
if (!item) {
return;
}
if (item.kind === 'file') {
submit(item.getAsFile());
return;
}
if (
['input', 'textarea'].includes(event.target.tagName.toLowerCase()) &&
event.target === document.activeElement
) {
return;
}
closePopup();
event.preventDefault();
item.getAsString((content) => {
openModal({
content,
});
});
};
window.addEventListener('paste', handlePaste);
return () => {
window.removeEventListener('paste', handlePaste);
};
}, [openModal, submit]);
return (
<>
{/* eslint-disable-next-line react/jsx-props-no-spreading */}
2020-05-23 18:05:22 +05:00
<div {...getRootProps()} className={styles.wrapper}>
{isDragActive && <div className={styles.dropzone}>{t('common.dropFileToUpload')}</div>}
{children}
2020-05-23 18:05:22 +05:00
{/* eslint-disable-next-line react/jsx-props-no-spreading */}
<input {...getInputProps()} />
</div>
{modal && (
<TextFileAddModal
content={modal.content}
onCreate={handleFileCreate}
onClose={handleModalClose}
/>
)}
</>
);
});
AttachmentAddZone.propTypes = {
children: PropTypes.element.isRequired,
onCreate: PropTypes.func.isRequired,
};
export default AttachmentAddZone;