ant-design/components/upload/Upload.tsx

355 lines
8.6 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
import { polyfill } from 'react-lifecycles-compat';
import RcUpload from 'rc-upload';
import classNames from 'classnames';
2018-03-08 13:36:12 +08:00
import uniqBy from 'lodash/uniqBy';
import findIndex from 'lodash/findIndex';
import Dragger from './Dragger';
import UploadList from './UploadList';
import {
RcFile,
UploadProps,
UploadState,
UploadFile,
UploadLocale,
UploadChangeParam,
UploadType,
UploadListType,
} from './interface';
import { T, fileToObject, genPercentAdd, getFileItem, removeFileItem } from './utils';
import LocaleReceiver from '../locale-provider/LocaleReceiver';
import defaultLocale from '../locale-provider/default';
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
export { UploadProps };
class Upload extends React.Component<UploadProps, UploadState> {
static Dragger: typeof Dragger;
static defaultProps = {
type: 'select' as UploadType,
multiple: false,
action: '',
data: {},
accept: '',
beforeUpload: T,
showUploadList: true,
listType: 'text' as UploadListType, // or pictrue
className: '',
disabled: false,
supportServerRender: true,
};
static getDerivedStateFromProps(nextProps: UploadProps) {
if ('fileList' in nextProps) {
return {
fileList: nextProps.fileList || [],
};
}
return null;
}
recentUploadStatus: boolean | PromiseLike<any>;
2019-01-11 17:20:48 +08:00
progressTimer: any;
upload: any;
2017-11-20 16:31:41 +08:00
constructor(props: UploadProps) {
super(props);
2017-11-10 09:47:30 +08:00
this.state = {
2017-11-10 09:47:30 +08:00
fileList: props.fileList || props.defaultFileList || [],
dragState: 'drop',
};
}
componentWillUnmount() {
this.clearProgressTimer();
}
onStart = (file: RcFile) => {
const targetItem = fileToObject(file);
2017-11-20 16:53:56 +08:00
targetItem.status = 'uploading';
2018-09-20 10:11:04 +08:00
const nextFileList = this.state.fileList.concat();
const fileIndex = findIndex(nextFileList, ({ uid }: UploadFile) => uid === targetItem.uid);
if (fileIndex === -1) {
nextFileList.push(targetItem);
} else {
nextFileList[fileIndex] = targetItem;
}
this.onChange({
file: targetItem,
fileList: nextFileList,
});
// fix ie progress
if (!(window as any).FormData) {
this.autoUpdateProgress(0, targetItem);
}
2018-12-07 20:02:01 +08:00
};
2017-11-20 16:31:41 +08:00
autoUpdateProgress(_: any, file: UploadFile) {
const getPercent = genPercentAdd();
let curPercent = 0;
this.clearProgressTimer();
this.progressTimer = setInterval(() => {
curPercent = getPercent(curPercent);
2018-12-07 20:02:01 +08:00
this.onProgress(
{
percent: curPercent * 100,
},
file,
);
}, 200);
}
2017-11-20 16:31:41 +08:00
onSuccess = (response: any, file: UploadFile) => {
this.clearProgressTimer();
try {
if (typeof response === 'string') {
response = JSON.parse(response);
}
2018-12-07 20:02:01 +08:00
} catch (e) {
/* do nothing */
}
2018-11-10 21:40:21 +08:00
const fileList = this.state.fileList;
const targetItem = getFileItem(file, fileList);
// removed
if (!targetItem) {
return;
}
targetItem.status = 'done';
targetItem.response = response;
this.onChange({
file: { ...targetItem },
fileList,
});
2018-12-07 20:02:01 +08:00
};
2017-11-20 16:31:41 +08:00
onProgress = (e: { percent: number }, file: UploadFile) => {
2018-11-10 21:40:21 +08:00
const fileList = this.state.fileList;
const targetItem = getFileItem(file, fileList);
// removed
if (!targetItem) {
return;
}
targetItem.percent = e.percent;
this.onChange({
event: e,
file: { ...targetItem },
fileList: this.state.fileList,
});
2018-12-07 20:02:01 +08:00
};
2017-11-20 16:31:41 +08:00
onError = (error: Error, response: any, file: UploadFile) => {
this.clearProgressTimer();
2018-11-10 21:40:21 +08:00
const fileList = this.state.fileList;
const targetItem = getFileItem(file, fileList);
// removed
if (!targetItem) {
return;
}
targetItem.error = error;
targetItem.response = response;
targetItem.status = 'error';
this.onChange({
file: { ...targetItem },
fileList,
});
2018-12-07 20:02:01 +08:00
};
2017-11-20 16:31:41 +08:00
handleRemove(file: UploadFile) {
const { onRemove } = this.props;
2019-01-11 17:20:48 +08:00
const { status } = file;
file.status = 'removed'; // eslint-disable-line
Promise.resolve(typeof onRemove === 'function' ? onRemove(file) : onRemove).then(ret => {
// Prevent removing file
if (ret === false) {
2019-01-11 17:20:48 +08:00
file.status = status;
return;
}
const removedFileList = removeFileItem(file, this.state.fileList);
if (removedFileList) {
this.onChange({
file,
fileList: removedFileList,
});
}
});
}
2017-11-20 16:31:41 +08:00
handleManualRemove = (file: UploadFile) => {
if (this.upload) {
this.upload.abort(file);
}
this.handleRemove(file);
2018-12-07 20:02:01 +08:00
};
onChange = (info: UploadChangeParam) => {
if (!('fileList' in this.props)) {
this.setState({ fileList: info.fileList });
}
const { onChange } = this.props;
if (onChange) {
onChange(info);
}
2018-12-07 20:02:01 +08:00
};
2017-11-20 16:31:41 +08:00
onFileDrop = (e: React.DragEvent<HTMLDivElement>) => {
this.setState({
dragState: e.type,
});
2018-12-07 20:02:01 +08:00
};
beforeUpload = (file: RcFile, fileList: RcFile[]) => {
if (!this.props.beforeUpload) {
return true;
}
const result = this.props.beforeUpload(file, fileList);
if (result === false) {
this.onChange({
file,
fileList: uniqBy(
this.state.fileList.concat(fileList.map(fileToObject)),
(item: UploadFile) => item.uid,
),
});
return false;
2019-01-11 17:20:48 +08:00
}
if (result && (result as PromiseLike<any>).then) {
return result;
}
return true;
2018-12-07 20:02:01 +08:00
};
clearProgressTimer() {
clearInterval(this.progressTimer);
}
2017-11-20 16:31:41 +08:00
saveUpload = (node: typeof RcUpload) => {
this.upload = node;
2018-12-07 20:02:01 +08:00
};
2017-11-20 16:31:41 +08:00
renderUploadList = (locale: UploadLocale) => {
const { showUploadList, listType, onPreview } = this.props;
const { showRemoveIcon, showPreviewIcon } = showUploadList as any;
return (
<UploadList
listType={listType}
items={this.state.fileList}
onPreview={onPreview}
onRemove={this.handleManualRemove}
showRemoveIcon={showRemoveIcon}
showPreviewIcon={showPreviewIcon}
locale={{ ...locale, ...this.props.locale }}
/>
);
2018-12-07 20:02:01 +08:00
};
renderUpload = ({ getPrefixCls }: ConfigConsumerProps) => {
const {
prefixCls: customizePrefixCls,
className,
showUploadList,
listType,
type,
disabled,
children,
} = this.props;
const prefixCls = getPrefixCls('upload', customizePrefixCls);
const rcUploadProps = {
onStart: this.onStart,
onError: this.onError,
onProgress: this.onProgress,
onSuccess: this.onSuccess,
...this.props,
prefixCls,
beforeUpload: this.beforeUpload,
};
delete rcUploadProps.className;
const uploadList = showUploadList ? (
2018-12-07 20:02:01 +08:00
<LocaleReceiver componentName="Upload" defaultLocale={defaultLocale.Upload}>
{this.renderUploadList}
</LocaleReceiver>
) : null;
if (type === 'drag') {
const dragCls = classNames(prefixCls, {
[`${prefixCls}-drag`]: true,
2018-12-07 20:02:01 +08:00
[`${prefixCls}-drag-uploading`]: this.state.fileList.some(
file => file.status === 'uploading',
),
[`${prefixCls}-drag-hover`]: this.state.dragState === 'dragover',
[`${prefixCls}-disabled`]: disabled,
});
return (
<span className={className}>
<div
className={dragCls}
onDrop={this.onFileDrop}
onDragOver={this.onFileDrop}
onDragLeave={this.onFileDrop}
>
<RcUpload {...rcUploadProps} ref={this.saveUpload} className={`${prefixCls}-btn`}>
2018-12-07 20:02:01 +08:00
<div className={`${prefixCls}-drag-container`}>{children}</div>
</RcUpload>
</div>
{uploadList}
</span>
);
}
const uploadButtonCls = classNames(prefixCls, {
[`${prefixCls}-select`]: true,
[`${prefixCls}-select-${listType}`]: true,
[`${prefixCls}-disabled`]: disabled,
});
// Remove id to avoid open by label when trigger is hidden
// https://github.com/ant-design/ant-design/issues/14298
if (!children) {
delete rcUploadProps.id;
}
const uploadButton = (
<div className={uploadButtonCls} style={children ? undefined : { display: 'none' }}>
<RcUpload {...rcUploadProps} ref={this.saveUpload} />
</div>
);
if (listType === 'picture-card') {
return (
<span className={className}>
{uploadList}
{uploadButton}
</span>
);
}
return (
<span className={className}>
{uploadButton}
{uploadList}
</span>
);
2018-12-07 20:02:01 +08:00
};
render() {
2018-12-07 20:02:01 +08:00
return <ConfigConsumer>{this.renderUpload}</ConfigConsumer>;
}
}
polyfill(Upload);
export default Upload;