forked from Saifullah-dev/react-file-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUploadFile.action.jsx
More file actions
165 lines (151 loc) · 5.28 KB
/
UploadFile.action.jsx
File metadata and controls
165 lines (151 loc) · 5.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import { useRef, useState } from "react";
import Button from "../../../components/Button/Button";
import { AiOutlineCloudUpload } from "react-icons/ai";
import UploadItem from "./UploadItem";
import Loader from "../../../components/Loader/Loader";
import { useFileNavigation } from "../../../contexts/FileNavigationContext";
import { getFileExtension } from "../../../utils/getFileExtension";
import { getDataSize } from "../../../utils/getDataSize";
import { useFiles } from "../../../contexts/FilesContext";
import "./UploadFile.action.scss";
import {injectIntl} from "react-intl";
const UploadFileAction = ({
fileUploadConfig,
maxFileSize,
acceptedFileTypes,
onFileUploading,
onFileUploaded,
intl
}) => {
const [files, setFiles] = useState([]);
const [isDragging, setIsDragging] = useState(false);
const [isUploading, setIsUploading] = useState({});
const { currentFolder, currentPathFiles } = useFileNavigation();
const { onError } = useFiles();
const fileInputRef = useRef(null);
// To open choose file if the "Choose File" button is focused and Enter key is pressed
const handleChooseFileKeyDown = (e) => {
if (e.key === "Enter") {
fileInputRef.current.click();
}
};
const checkFileError = (file) => {
if (acceptedFileTypes) {
const extError = !acceptedFileTypes.includes(getFileExtension(file.name));
if (extError) return intl.formatMessage({id: `fileTypeNotAllowed`});
}
const fileExists = currentPathFiles.some(
(item) => item.name.toLowerCase() === file.name.toLowerCase() && !item.isDirectory
);
if (fileExists) return intl.formatMessage({id: `fileAlreadyExist`});
const sizeError = maxFileSize && file.size > maxFileSize;
if (sizeError) return intl.formatMessage({id: `maxUploadSize`})+" "+getDataSize(maxFileSize, 0);
};
const setSelectedFiles = (selectedFiles) => {
selectedFiles = selectedFiles.filter(
(item) =>
!files.some((fileData) => fileData.file.name.toLowerCase() === item.name.toLowerCase())
);
if (selectedFiles.length > 0) {
const newFiles = selectedFiles.map((file) => {
const appendData = onFileUploading(file, currentFolder);
const error = checkFileError(file);
error && onError({ type: "upload", message: error }, file);
return {
file: file,
appendData: appendData,
...(error && { error: error }),
};
});
setFiles((prev) => [...prev, ...newFiles]);
}
};
// Todo: Also validate allowed file extensions on drop
const handleDrop = (e) => {
e.preventDefault();
setIsDragging(false);
const droppedFiles = Array.from(e.dataTransfer.files);
setSelectedFiles(droppedFiles);
};
const handleChooseFile = (e) => {
const choosenFiles = Array.from(e.target.files);
setSelectedFiles(choosenFiles);
};
const handleFileRemove = (index) => {
setFiles((prev) => {
const newFiles = prev.map((file, i) => {
if (index === i) {
return {
...file,
removed: true,
};
}
return file;
});
// If every file is removed, empty files array
if (newFiles.every((file) => !!file.removed)) return [];
return newFiles;
});
};
return (
<div className={`fm-upload-file ${files.length > 0 ? "file-selcted" : ""}`}>
<div className="select-files">
<div
className={`draggable-file-input ${isDragging ? "dragging" : ""}`}
onDrop={handleDrop}
onDragOver={(e) => e.preventDefault()}
onDragEnter={() => setIsDragging(true)}
onDragLeave={() => setIsDragging(false)}
>
<div className="input-text">
<AiOutlineCloudUpload size={30} />
<span>{intl.formatMessage({id: `dragFileToUpload`})}</span>
</div>
</div>
<div className="btn-choose-file">
<Button padding="0" onKeyDown={handleChooseFileKeyDown}>
<label htmlFor="chooseFile">{intl.formatMessage({id: `chooseFile`})}</label>
<input
ref={fileInputRef}
type="file"
id="chooseFile"
className="choose-file-input"
onChange={handleChooseFile}
multiple
accept={acceptedFileTypes}
/>
</Button>
</div>
</div>
{files.length > 0 && (
<div className="files-progress">
<div className="heading">
{Object.values(isUploading).some((fileUploading) => fileUploading) ? (
<>
<h2>Uploading</h2>
<Loader loading={true} className="upload-loading" />
</>
) : (
<h2>{intl.formatMessage({id: `completed`})}</h2>
)}
</div>
<ul>
{files.map((fileData, index) => (
<UploadItem
index={index}
key={index}
fileData={fileData}
setFiles={setFiles}
fileUploadConfig={fileUploadConfig}
setIsUploading={setIsUploading}
onFileUploaded={onFileUploaded}
handleFileRemove={handleFileRemove}
/>
))}
</ul>
</div>
)}
</div>
);
};
export default injectIntl(UploadFileAction);