import React from 'react'; import Upload from 'rc-upload'; import assign from 'object-assign'; import UploadList from './uploadList'; import getFileItem from './getFileItem'; const prefixCls = 'ant-upload'; function noop() { } const AntUpload = React.createClass({ getInitialState() { return { fileList: this.props.fileList || this.props.defaultFileList || [] }; }, onStart(file) { 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); } this.onChange({ file: file, fileList: nextFileList }); }, removeFile(file) { file.status = 'removed'; let fileList = this.state.fileList.concat(); let targetItem = getFileItem(file, fileList); let index = fileList.indexOf(targetItem); if (index !== -1) { fileList.splice(index, 1); return fileList; } return null; }, onSuccess(response, file) { let fileList = this.state.fileList.concat(); let targetItem = getFileItem(file, fileList); // 之前已经删除 if (targetItem) { targetItem.status = 'done'; targetItem.response = response; this.onChange({ file: targetItem, fileList: this.state.fileList }); } }, onProgress(e, file) { let fileList = this.state.fileList; let targetItem = getFileItem(file, fileList); if (targetItem) { this.onChange({ event: e, file: file, fileList: this.state.fileList }); } }, onError(error, response, file) { file.error = error; file.response = response; this.handleRemove(file); }, handleRemove(file) { let fileList = this.removeFile(file); if (fileList) { this.onChange({ file: file, fileList: fileList }); } }, onChange(info) { // 1. 有设置外部属性时不改变 fileList // 2. 上传中状态(info.event)不改变 fileList if (!('fileList' in this.props) && !info.event) { this.setState({ fileList: info.fileList }); } this.props.onChange(info); }, getDefaultProps() { return { type: 'select', name: '', multipart: false, action: '', data: {}, accept: '', onChange: noop, }; }, componentWillReceiveProps(nextProps) { if ('fileList' in nextProps) { this.setState({ fileList: nextProps.fileList }); } }, render() { let type = this.props.type || 'select'; let props = assign({}, this.props, { onStart: this.onStart, onError: this.onError, onProgress: this.onProgress, onSuccess: this.onSuccess, }); if (type === 'drag') { return (
{this.props.children}
); } else if (type === 'select') { return (
{this.props.children}
); } } }); AntUpload.Dragger = React.createClass({ render() { return ; } }); export default AntUpload;