ant-design/components/upload/index.jsx

303 lines
6.9 KiB
React
Raw Normal View History

2015-08-08 23:37:35 +08:00
import React from 'react';
import RcUpload from 'rc-upload';
import UploadList from './uploadList';
2015-08-21 16:19:28 +08:00
import getFileItem from './getFileItem';
import classNames from 'classnames';
2015-08-08 23:37:35 +08:00
const prefixCls = 'ant-upload';
2015-08-27 15:46:23 +08:00
function noop() {
}
function T() {
return true;
}
2015-09-16 18:48:22 +08:00
// Fix IE file.status problem
// via coping a new Object
function fileToObject(file) {
return {
lastModified: file.lastModified,
lastModifiedDate: file.lastModifiedDate,
2015-09-20 13:56:14 +08:00
name: file.filename || file.name,
2015-09-16 18:48:22 +08:00
size: file.size,
type: file.type,
2015-09-16 20:02:29 +08:00
uid: file.uid,
response: file.response,
2015-10-31 13:27:58 +08:00
error: file.error,
percent: 0,
originFileObj: file,
2015-10-31 13:27:58 +08:00
};
}
/**
* 生成Progress percent: 0.1 -> 0.98
* - for ie
*/
function genPercentAdd() {
let k = 0.1;
const i = 0.01;
const end = 0.98;
return function (s) {
let start = s;
2015-10-31 13:27:58 +08:00
if (start >= end) {
return start;
}
start += k;
k = k - i;
if (k < 0.001) {
k = 0.001;
2015-10-31 13:27:58 +08:00
}
return start * 100;
2015-09-16 18:48:22 +08:00
};
}
2016-03-31 17:46:35 +08:00
function UploadDragger(props) {
return <Upload {...props} type="drag" style={{ height: props.height }} />;
}
export default class Upload extends React.Component {
static Dragger = UploadDragger;
static defaultProps = {
type: 'select',
// do not set
// name: '',
multiple: false,
action: '',
data: {},
accept: '',
onChange: noop,
beforeUpload: T,
showUploadList: true,
listType: 'text', // or pictrue
className: '',
}
constructor(props) {
super(props);
this.state = {
2015-11-11 00:28:05 +08:00
fileList: this.props.fileList || this.props.defaultFileList || [],
2016-05-11 09:32:33 +08:00
dragState: 'drop',
2015-08-08 23:37:35 +08:00
};
}
2016-01-15 15:56:06 +08:00
onStart = (file) => {
if (this.recentUploadStatus === false) return;
2015-09-19 17:05:41 +08:00
let targetItem;
2015-09-09 14:58:17 +08:00
let nextFileList = this.state.fileList.concat();
if (file.length > 0) {
targetItem = file.map(f => {
const fileObject = fileToObject(f);
fileObject.status = 'uploading';
return fileObject;
2015-09-09 14:58:17 +08:00
});
2015-11-24 17:00:34 +08:00
nextFileList = nextFileList.concat(targetItem);
2015-09-09 14:58:17 +08:00
} else {
2015-09-19 17:05:41 +08:00
targetItem = fileToObject(file);
targetItem.status = 'uploading';
nextFileList.push(targetItem);
2015-09-09 14:58:17 +08:00
}
2015-09-01 11:26:33 +08:00
this.onChange({
2015-09-19 17:05:41 +08:00
file: targetItem,
2016-05-11 09:32:33 +08:00
fileList: nextFileList,
2015-08-31 21:26:34 +08:00
});
2015-10-31 13:27:58 +08:00
// fix ie progress
if (!window.FormData) {
this.autoUpdateProgress(0, targetItem);
}
}
2016-01-15 15:56:06 +08:00
2015-10-31 13:27:58 +08:00
autoUpdateProgress(percent, file) {
const getPercent = genPercentAdd();
let curPercent = 0;
this.progressTimer = setInterval(() => {
curPercent = getPercent(curPercent);
this.onProgress({
2016-05-11 09:32:33 +08:00
percent: curPercent,
2015-10-31 13:27:58 +08:00
}, file);
}, 200);
}
2016-01-15 15:56:06 +08:00
removeFile(file) {
2015-09-19 17:05:41 +08:00
let fileList = this.state.fileList;
2015-08-31 18:13:16 +08:00
let targetItem = getFileItem(file, fileList);
let index = fileList.indexOf(targetItem);
2015-08-27 17:35:10 +08:00
if (index !== -1) {
2015-08-31 18:13:16 +08:00
fileList.splice(index, 1);
2015-09-01 11:26:33 +08:00
return fileList;
2015-08-27 17:35:10 +08:00
}
2015-09-01 11:26:33 +08:00
return null;
}
2016-01-15 15:56:06 +08:00
onSuccess = (response, file) => {
2015-10-31 13:27:58 +08:00
this.clearProgressTimer();
2015-09-16 20:02:29 +08:00
try {
2015-09-18 23:31:07 +08:00
if (typeof response === 'string') {
2016-03-23 18:35:35 +08:00
response = JSON.parse(response);
2015-09-18 23:31:07 +08:00
}
} catch (e) { /* do nothing */ }
2015-09-19 17:05:41 +08:00
let fileList = this.state.fileList;
2015-08-31 21:26:34 +08:00
let targetItem = getFileItem(file, fileList);
2015-09-01 11:26:33 +08:00
// 之前已经删除
if (targetItem) {
targetItem.status = 'done';
targetItem.response = response;
this.onChange({
file: targetItem,
2016-05-11 09:32:33 +08:00
fileList,
2015-09-01 11:26:33 +08:00
});
2015-08-27 16:53:53 +08:00
}
}
2016-01-15 15:56:06 +08:00
onProgress = (e, file) => {
2015-09-01 11:26:33 +08:00
let fileList = this.state.fileList;
let targetItem = getFileItem(file, fileList);
2015-10-31 13:27:58 +08:00
if (!targetItem) return;
targetItem.percent = e.percent;
this.onChange({
event: e,
file: targetItem,
2016-05-11 09:32:33 +08:00
fileList: this.state.fileList,
2015-10-31 13:27:58 +08:00
});
}
2016-01-15 15:56:06 +08:00
onError = (error, response, file) => {
2015-10-31 13:27:58 +08:00
this.clearProgressTimer();
2015-09-16 20:02:29 +08:00
let fileList = this.state.fileList;
let targetItem = getFileItem(file, fileList);
targetItem.error = error;
targetItem.response = response;
targetItem.status = 'error';
this.handleRemove(targetItem);
}
2016-01-15 15:56:06 +08:00
2016-04-07 11:18:32 +08:00
beforeUpload = (file) => {
this.recentUploadStatus = this.props.beforeUpload(file);
return this.recentUploadStatus;
}
2016-01-15 15:56:06 +08:00
2016-04-07 11:39:23 +08:00
handleRemove(file) {
let fileList = this.removeFile(file);
2015-09-01 11:26:33 +08:00
if (fileList) {
this.onChange({
file,
fileList,
2015-09-01 11:26:33 +08:00
});
}
}
2016-01-15 15:56:06 +08:00
2016-04-05 12:30:14 +08:00
handlePreview = (file) => {
if ('onPreview' in this.props) {
this.props.onPreview(file);
}
2016-04-05 12:30:14 +08:00
}
handleManualRemove = (file) => {
2016-01-07 18:04:05 +08:00
/*eslint-disable */
2015-09-14 00:28:39 +08:00
file.status = 'removed';
2016-01-07 18:04:05 +08:00
/*eslint-enable */
if ('onRemove' in this.props) {
this.props.onRemove(file);
} else {
this.handleRemove(file);
}
}
2016-01-15 15:56:06 +08:00
onChange = (info) => {
2015-10-31 13:27:58 +08:00
this.setState({
2016-05-11 09:32:33 +08:00
fileList: info.fileList,
2015-10-31 13:27:58 +08:00
});
2015-09-09 14:58:17 +08:00
this.props.onChange(info);
}
2016-01-15 15:56:06 +08:00
componentWillReceiveProps(nextProps) {
if ('fileList' in nextProps) {
this.setState({
2016-01-30 19:00:56 +08:00
fileList: nextProps.fileList || [],
});
}
}
2016-01-15 15:56:06 +08:00
onFileDrop = (e) => {
2015-11-13 16:09:39 +08:00
this.setState({
2016-05-11 09:32:33 +08:00
dragState: e.type,
2015-11-13 16:09:39 +08:00
});
}
2016-01-15 15:56:06 +08:00
2015-10-31 13:27:58 +08:00
clearProgressTimer() {
clearInterval(this.progressTimer);
}
2016-01-15 15:56:06 +08:00
2015-08-08 23:37:35 +08:00
render() {
2015-08-21 16:19:28 +08:00
let type = this.props.type || 'select';
2016-03-25 18:16:48 +08:00
let props = {
...this.props,
2015-08-27 15:45:38 +08:00
onStart: this.onStart,
onError: this.onError,
onProgress: this.onProgress,
onSuccess: this.onSuccess,
beforeUpload: this.beforeUpload,
2016-03-25 18:16:48 +08:00
};
let uploadList;
2015-11-03 16:58:41 +08:00
if (this.props.showUploadList) {
2015-12-12 15:25:54 +08:00
uploadList = (
<UploadList listType={this.props.listType}
items={this.state.fileList}
onPreview={this.handlePreview}
onRemove={this.handleManualRemove}
/>
2015-12-12 15:25:54 +08:00
);
}
if (type === 'drag') {
2015-11-13 16:10:27 +08:00
let dragUploadingClass = this.state.fileList.some(file => file.status === 'uploading')
2016-01-30 19:00:56 +08:00
? `${prefixCls}-drag-uploading` : '';
2015-11-13 16:09:39 +08:00
let draggingClass = this.state.dragState === 'dragover'
2016-01-30 19:00:56 +08:00
? `${prefixCls}-drag-hover` : '';
2015-08-08 23:37:35 +08:00
return (
2015-12-14 11:45:35 +08:00
<span className={this.props.className}>
<div className={`${prefixCls} ${prefixCls}-drag ${dragUploadingClass} ${draggingClass}`}
2015-11-13 16:09:39 +08:00
onDrop={this.onFileDrop}
onDragOver={this.onFileDrop}
onDragLeave={this.onFileDrop}
>
<RcUpload {...props}>
<div className={`${prefixCls}-drag-container`}>
2015-10-31 13:27:58 +08:00
{this.props.children}
</div>
</RcUpload>
2015-10-31 13:27:58 +08:00
</div>
2015-11-13 16:09:39 +08:00
{uploadList}
</span>
2015-08-08 23:37:35 +08:00
);
}
const uploadButtonCls = classNames({
[prefixCls]: true,
[`${prefixCls}-select`]: true,
[`${prefixCls}-select-${this.props.listType}`]: true,
});
const uploadButton = this.props.children
? <div className={uploadButtonCls}><RcUpload {...props} /></div>
: null;
if (this.props.listType === 'picture-card') {
2015-08-08 23:37:35 +08:00
return (
2015-12-12 15:25:54 +08:00
<span className={this.props.className}>
{uploadList}
{uploadButton}
2015-11-13 16:09:39 +08:00
</span>
2015-08-08 23:37:35 +08:00
);
}
return (
<span className={this.props.className}>
{uploadButton}
{uploadList}
</span>
);
2015-08-08 23:37:35 +08:00
}
}