-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
159 lines (138 loc) · 5 KB
/
index.js
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
/*global URL */
'use strict';
var React = require('react');
var ReactDOM = require('react-dom')
var request = require('superagent-bluebird-promise');
var cdhCompressUtil = require('./lib/cdhCompressUtil');
var isFunction = function (fn) {
var getType = {};
return fn && getType.toString.call(fn) === '[object Function]';
};
var ReactQiniu = React.createClass({
// based on https://github.com/paramaggarwal/react-dropzone
propTypes: {
onDrop: React.PropTypes.func.isRequired,
token: React.PropTypes.string.isRequired,
// called before upload to set callback to files
onUpload: React.PropTypes.func,
size: React.PropTypes.number,
style: React.PropTypes.object,
supportClick: React.PropTypes.bool,
accept: React.PropTypes.string,
multiple: React.PropTypes.bool,
isMobile: React.PropTypes.string,
// Qiniu
uploadUrl: React.PropTypes.string,
prefix: React.PropTypes.string,
adjustImageSize: React.PropTypes.object // 是否自动调整图片尺寸
},
getDefaultProps: function() {
return {
supportClick: true,
multiple: true,
uploadUrl: 'http://upload.qiniu.com/'
};
},
getInitialState: function() {
return {
isDragActive: false
};
},
onDragLeave: function(e) {
this.setState({
isDragActive: false
});
},
onDragOver: function(e) {
e.preventDefault();
e.dataTransfer.dropEffect = 'copy';
this.setState({
isDragActive: true
});
},
onDrop: function(e) {
e.preventDefault();
this.setState({
isDragActive: false
});
var files;
if (e.dataTransfer) {
files = e.dataTransfer.files;
} else if (e.target) {
files = e.target.files;
}
var callback = function(feed){
// console.log('cdhCompressUtil.handleUploadFilesPromise ->', feed); // debug only
var maxFiles = (this.props.multiple) ? files.length : 1;
if (this.props.onUpload) {
if(this.props.adjustImageSize){
files = Array.prototype.slice.call(feed, 0, maxFiles).map(function(elem, idx){
return cdhCompressUtil.blobToFile(feed[idx].blob, feed[idx].fileName)
});
}else{
files = Array.prototype.slice.call(files, 0, maxFiles);
}
this.props.onUpload(files, e);
}
for (var i = 0; i < maxFiles; i++) {
files[i].preview = URL.createObjectURL(files[i]);
files[i].request = this.upload(files[i]);
files[i].uploadPromise = files[i].request.promise();
}
if (this.props.onDrop) {
files = Array.prototype.slice.call(files, 0, maxFiles);
this.props.onDrop(files, e);
}
}
if(this.props.adjustImageSize){
cdhCompressUtil.handleUploadFilesPromise(files, this.props.adjustImageSize, this.props.isMobile).then(callback.bind(this));
}else{
callback.call(this, files);
}
},
onClick: function () {
if (this.props.supportClick) {
this.open();
}
},
open: function() {
var fileInput = ReactDOM.findDOMNode(this.refs.fileInput);
fileInput.value = null;
fileInput.click();
},
upload: function(file) {
if (!file || file.size === 0) return null;
var key = file.preview.split('/').pop() + '.' + file.name.split('.').pop();
if (this.props.prefix) {
key = this.props.prefix + key;
}
var r = request
.post(this.props.uploadUrl)
.field('key', key)
.field('token', this.props.token)
.field('x:filename', file.name)
.field('x:size', file.size)
.attach('file', file, file.name)
.set('Accept', 'application/json');
if (isFunction(file.onprogress)) { r.on('progress', file.onprogress); }
return r;
},
render: function() {
var className = this.props.className || 'dropzone';
if (this.state.isDragActive) {
className += ' active';
}
var style = this.props.style || {
width: this.props.size || 100,
height: this.props.size || 100,
borderStyle: this.state.isDragActive ? 'solid' : 'dashed'
};
return (
React.createElement('div', {className: className, style: style, onClick: this.onClick, onDragLeave: this.onDragLeave, onDragOver: this.onDragOver, onDrop: this.onDrop},
React.createElement('input', {style: {display: 'none'}, type: 'file', multiple: this.props.multiple, ref: 'fileInput', onChange: this.onDrop, accept: this.props.accept}),
this.props.children
)
);
}
});
module.exports = ReactQiniu;