ant-design/components/upload/index.jsx

151 lines
3.6 KiB
React
Raw Normal View History

2015-08-08 23:37:35 +08:00
import React from 'react';
import Upload from 'rc-upload';
import assign from 'object-assign';
import UploadList from './uploadList';
2015-08-21 16:19:28 +08:00
import getFileItem from './getFileItem';
2015-08-08 23:37:35 +08:00
const prefixCls = 'ant-upload';
2015-08-27 15:46:23 +08:00
function noop() {
}
2015-08-21 16:19:28 +08:00
const AntUpload = React.createClass({
2015-08-08 23:37:35 +08:00
getInitialState() {
return {
fileList: this.props.fileList || this.props.defaultFileList || []
2015-08-08 23:37:35 +08:00
};
},
2015-08-27 15:45:38 +08:00
onStart(file) {
2015-09-09 14:58:17 +08:00
let nextFileList = this.state.fileList.concat();
if (file.length > 0) {
file.forEach(function(f) {
f.status = 'uploading';
});
nextFileList = nextFileList.concat(file);
} else {
file.status = 'uploading';
nextFileList.push(file);
}
2015-09-01 11:26:33 +08:00
this.onChange({
2015-08-31 21:26:34 +08:00
file: file,
2015-09-09 14:58:17 +08:00
fileList: nextFileList
2015-08-31 21:26:34 +08:00
});
2015-08-08 23:37:35 +08:00
},
removeFile(file) {
file.status = 'removed';
let fileList = this.state.fileList.concat();
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;
2015-08-27 17:35:10 +08:00
},
onSuccess(response, file) {
let fileList = this.state.fileList.concat();
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,
fileList: this.state.fileList
});
2015-08-27 16:53:53 +08:00
}
2015-08-08 23:37:35 +08:00
},
2015-08-27 15:45:38 +08:00
onProgress(e, file) {
2015-09-01 11:26:33 +08:00
let fileList = this.state.fileList;
let targetItem = getFileItem(file, fileList);
if (targetItem) {
this.onChange({
event: e,
file: file,
fileList: this.state.fileList
});
}
2015-08-08 23:37:35 +08:00
},
onError(error, response, file) {
file.error = error;
2015-08-31 21:26:34 +08:00
file.response = response;
this.handleRemove(file);
2015-08-27 15:45:38 +08:00
},
handleRemove(file) {
let fileList = this.removeFile(file);
2015-09-01 11:26:33 +08:00
if (fileList) {
this.onChange({
file: file,
fileList: fileList
});
}
2015-08-08 23:37:35 +08:00
},
onChange(info) {
// 1. 有设置外部属性时不改变 fileList
// 2. 上传中状态info.event不改变 fileList
if (!('fileList' in this.props) && !info.event) {
2015-09-09 14:58:17 +08:00
this.setState({
fileList: info.fileList
});
}
2015-09-09 14:58:17 +08:00
this.props.onChange(info);
},
2015-08-08 23:37:35 +08:00
getDefaultProps() {
return {
type: 'select',
name: '',
2015-08-08 23:37:35 +08:00
multipart: false,
action: '',
data: {},
accept: '',
2015-08-31 21:26:34 +08:00
onChange: noop,
2015-08-08 23:37:35 +08:00
};
},
componentWillReceiveProps(nextProps) {
if ('fileList' in nextProps) {
this.setState({
fileList: nextProps.fileList
});
}
},
2015-08-08 23:37:35 +08:00
render() {
2015-08-21 16:19:28 +08:00
let type = this.props.type || 'select';
2015-08-27 15:45:38 +08:00
let props = assign({}, this.props, {
onStart: this.onStart,
onError: this.onError,
onProgress: this.onProgress,
onSuccess: this.onSuccess,
});
if (type === 'drag') {
2015-08-08 23:37:35 +08:00
return (
<div className={prefixCls + ' ' + prefixCls + '-drag'}>
<Upload {...props}>
<div className={prefixCls + '-drag-container'}>
{this.props.children}
2015-08-08 23:37:35 +08:00
</div>
</Upload>
</div>
2015-08-08 23:37:35 +08:00
);
} else if (type === 'select') {
2015-08-08 23:37:35 +08:00
return (
<div>
<div className={prefixCls + ' ' + prefixCls + '-select'}>
<Upload {...props}>
{this.props.children}
</Upload>
</div>
2015-08-31 18:13:16 +08:00
<UploadList items={this.state.fileList}
2015-09-01 11:26:33 +08:00
onRemove={this.handleRemove}/>
2015-08-08 23:37:35 +08:00
</div>
);
}
}
});
AntUpload.Dragger = React.createClass({
render() {
2015-08-27 15:45:38 +08:00
return <AntUpload {...this.props} type="drag" style={{height: this.props.height}}/>;
}
});
export default AntUpload;