forked from react-component/upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAjaxUploader.tsx
326 lines (286 loc) · 8.14 KB
/
AjaxUploader.tsx
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
/* eslint react/no-is-mounted:0,react/sort-comp:0,react/prop-types:0 */
import type { ReactElement } from 'react';
import React, { Component } from 'react';
import clsx from 'classnames';
import pickAttrs from 'rc-util/lib/pickAttrs';
import defaultRequest from './request';
import getUid from './uid';
import attrAccept from './attr-accept';
import traverseFileTree from './traverseFileTree';
import type {
UploadProps,
UploadProgressEvent,
UploadRequestError,
RcFile,
BeforeUploadFileType,
} from './interface';
interface ParsedFileInfo {
origin: RcFile;
action: string;
data: Record<string, unknown>;
parsedFile: RcFile;
}
class AjaxUploader extends Component<UploadProps> {
state = { uid: getUid() };
reqs: any = {};
private fileInput: HTMLInputElement;
private _isMounted: boolean;
onChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const { accept, directory } = this.props;
const { files } = e.target;
const acceptedFiles = [...files].filter(
(file: RcFile) => !directory || attrAccept(file, accept),
);
this.uploadFiles(acceptedFiles);
this.reset();
};
onClick = (e: React.MouseEvent<HTMLDivElement> | React.KeyboardEvent<HTMLDivElement>) => {
const el = this.fileInput;
if (!el) {
return;
}
const { children, onClick } = this.props;
if (children && (children as ReactElement).type === 'button') {
const parent = el.parentNode as HTMLInputElement;
parent.focus();
parent.querySelector('button').blur();
}
el.click();
if (onClick) {
onClick(e);
}
};
onKeyDown = (e: React.KeyboardEvent<HTMLDivElement>) => {
if (e.key === 'Enter') {
this.onClick(e);
}
};
onFileDrop = (e: React.DragEvent<HTMLDivElement>) => {
const { multiple } = this.props;
e.preventDefault();
if (e.type === 'dragover') {
return;
}
if (this.props.directory) {
traverseFileTree(
Array.prototype.slice.call(e.dataTransfer.items),
this.uploadFiles,
(_file: RcFile) => attrAccept(_file, this.props.accept),
);
} else {
let files = [...e.dataTransfer.files].filter((file: RcFile) =>
attrAccept(file, this.props.accept),
);
if (multiple === false) {
files = files.slice(0, 1);
}
this.uploadFiles(files);
}
};
componentDidMount() {
this._isMounted = true;
}
componentWillUnmount() {
this._isMounted = false;
this.abort();
}
uploadFiles = (files: File[]) => {
const originFiles = [...files] as RcFile[];
const postFiles = originFiles.map((file: RcFile & { uid?: string }) => {
// eslint-disable-next-line no-param-reassign
file.uid = getUid();
return this.processFile(file, originFiles);
});
// Batch upload files
Promise.all(postFiles).then(fileList => {
const { onBatchStart } = this.props;
onBatchStart?.(fileList.map(({ origin, parsedFile }) => ({ file: origin, parsedFile })));
fileList
.filter(file => file.parsedFile !== null)
.forEach(file => {
this.post(file);
});
});
};
/**
* Process file before upload. When all the file is ready, we start upload.
*/
processFile = async (file: RcFile, fileList: RcFile[]): Promise<ParsedFileInfo> => {
const { beforeUpload } = this.props;
let transformedFile: BeforeUploadFileType | void = file;
if (beforeUpload) {
try {
transformedFile = await beforeUpload(file, fileList);
} catch (e) {
// Rejection will also trade as false
transformedFile = false;
}
if (transformedFile === false) {
return {
origin: file,
parsedFile: null,
action: null,
data: null,
};
}
}
// Get latest action
const { action } = this.props;
let mergedAction: string;
if (typeof action === 'function') {
mergedAction = await action(file);
} else {
mergedAction = action;
}
// Get latest data
const { data } = this.props;
let mergedData: Record<string, unknown>;
if (typeof data === 'function') {
mergedData = await data(file);
} else {
mergedData = data;
}
const parsedData =
// string type is from legacy `transformFile`.
// Not sure if this will work since no related test case works with it
(typeof transformedFile === 'object' || typeof transformedFile === 'string') &&
transformedFile
? transformedFile
: file;
let parsedFile: File;
if (parsedData instanceof File) {
parsedFile = parsedData;
} else {
parsedFile = new File([parsedData], file.name, { type: file.type });
}
const mergedParsedFile: RcFile = parsedFile as RcFile;
mergedParsedFile.uid = file.uid;
return {
origin: file,
data: mergedData,
parsedFile: mergedParsedFile,
action: mergedAction,
};
};
post({ data, origin, action, parsedFile }: ParsedFileInfo) {
if (!this._isMounted) {
return;
}
const { onStart, customRequest, name, headers, withCredentials, method } = this.props;
const { uid } = origin;
const request = customRequest || defaultRequest;
const requestOption = {
action,
filename: name,
data,
file: parsedFile,
headers,
withCredentials,
method: method || 'post',
onProgress: (e: UploadProgressEvent) => {
const { onProgress } = this.props;
onProgress?.(e, parsedFile);
},
onSuccess: (ret: any, xhr: XMLHttpRequest) => {
const { onSuccess } = this.props;
onSuccess?.(ret, parsedFile, xhr);
delete this.reqs[uid];
},
onError: (err: UploadRequestError, ret: any) => {
const { onError } = this.props;
onError?.(err, ret, parsedFile);
delete this.reqs[uid];
},
};
onStart(origin);
this.reqs[uid] = request(requestOption);
}
reset() {
this.setState({
uid: getUid(),
});
}
abort(file?: any) {
const { reqs } = this;
if (file) {
const uid = file.uid ? file.uid : file;
if (reqs[uid] && reqs[uid].abort) {
reqs[uid].abort();
}
delete reqs[uid];
} else {
Object.keys(reqs).forEach(uid => {
if (reqs[uid] && reqs[uid].abort) {
reqs[uid].abort();
}
delete reqs[uid];
});
}
}
saveFileInput = (node: HTMLInputElement) => {
this.fileInput = node;
};
render() {
const {
component: Tag,
prefixCls,
className,
classNames = {},
disabled,
id,
style,
styles = {},
multiple,
accept,
capture,
children,
directory,
openFileDialogOnClick,
onMouseEnter,
onMouseLeave,
...otherProps
} = this.props;
const cls = clsx({
[prefixCls]: true,
[`${prefixCls}-disabled`]: disabled,
[className]: className,
});
// because input don't have directory/webkitdirectory type declaration
const dirProps: any = directory
? { directory: 'directory', webkitdirectory: 'webkitdirectory' }
: {};
const events = disabled
? {}
: {
onClick: openFileDialogOnClick ? this.onClick : () => {},
onKeyDown: openFileDialogOnClick ? this.onKeyDown : () => {},
onMouseEnter,
onMouseLeave,
onDrop: this.onFileDrop,
onDragOver: this.onFileDrop,
tabIndex: '0',
};
return (
<Tag {...events} className={cls} role="button" style={style}>
<input
{...pickAttrs(otherProps, { aria: true, data: true })}
id={id}
disabled={disabled}
type="file"
ref={this.saveFileInput}
onClick={e => e.stopPropagation()} // https://github.com/ant-design/ant-design/issues/19948
key={this.state.uid}
style={{ display: 'none', ...styles.input }}
className={classNames.input}
accept={accept}
{...dirProps}
multiple={multiple}
onChange={this.onChange}
{...(capture != null ? { capture } : {})}
/>
{children}
</Tag>
);
}
}
export default AjaxUploader;