1 // © 2013 Benoît Pin MINES ParisTech
5 // nombre maximun d'image chargées en local
8 DDFileUploader = function(dropbox
, uploadUrl
) {
9 this.dropbox
= dropbox
;
10 this.uploadUrl
= uploadUrl
;
12 this.progressBarMaxSize
= 200; // pixels
13 this.thumbnailSize
= 180;
14 this.previewQueue
= [];
15 this._previewQueueRunning
= false;
16 this.previewsLoaded
= 0;
17 this.uploadQueue
= [];
18 this._uploadQueueRunning
= false;
20 addListener(dropbox
, 'dragenter', function(evt
){self
.dragenter(evt
);});
21 addListener(dropbox
, 'dragover', function(evt
){self
.dragover(evt
);});
22 addListener(dropbox
, 'drop', function(evt
){self
.drop(evt
);});
26 DDFileUploader
.prototype.dragenter = function(evt
) {
28 disablePropagation(evt
);
31 DDFileUploader
.prototype.dragover = function(evt
) {
33 disablePropagation(evt
);
34 evt
= getEventObject(evt
);
35 var dt
= evt
.dataTransfer
;
36 dt
.dropEffect
= 'copy';
39 DDFileUploader
.prototype.drop = function(evt
) {
41 disablePropagation(evt
);
43 var dt
= evt
.dataTransfer
;
44 dt
.dropEffect
= 'copy';
45 this.handleFiles(dt
.files
);
48 // Methods about upload
49 DDFileUploader
.prototype.handleFiles = function(files
) {
51 for (i
= 0; i
< files
.length
; i
++) {
53 slide
= this.createSlide(file
);
54 this.previewQueuePush(slide
);
55 this.uploadQueuePush(slide
);
59 DDFileUploader
.prototype.upload = function(slide
) {
60 var reader
= new FileReader();
61 var req
= new XMLHttpRequest();
62 var file
= slide
.file
;
63 this.uploadedSlide
= slide
;
64 this.previewImg
= slide
.img
;
65 this.progressBar
= slide
.progressBar
;
68 addListener(req
.upload
, 'progress', function(evt
){self
.progressHandler(evt
);});
69 addListener(req
, 'readystatechange',
71 if (req
.readyState
=== 4) {
72 self
.uploadCompleteHandler(req
);
76 req
.open("PUT", this.uploadUrl
);
77 req
.setRequestHeader("Content-Type", file
.type
);
78 req
.setRequestHeader("X-File-Name", file
.name
);
79 addListener(reader
, 'load',
82 req
.sendAsBinary(evt
.target
.result
);
86 reader
.readAsBinaryString(file
);
89 DDFileUploader
.prototype.uploadCompleteHandler = function(req
) {
90 var slide
= this.uploadedSlide
;
91 this.uploadedSlide
.removeChild(slide
.label
);
92 this.uploadedSlide
.removeChild(slide
.progressBar
);
93 var fragment
= getCopyOfNode(req
.responseXML
.documentElement
.firstChild
);
94 var img
= fragment
.getElementsByTagName('img')[0];
95 img
.onload = function(evt
) {
96 var preview
= slide
.getElementsByTagName('img')[0];
97 preview
.src
= undefined;
98 slide
.parentNode
.replaceChild(fragment
, slide
);
100 this.previewsLoaded
--;
101 this.previewQueueLoadNext();
102 this.uploadQueueLoadNext();
105 DDFileUploader
.prototype.progressHandler = function(evt
) {
106 if (evt
.lengthComputable
) {
107 var progress
= evt
.loaded
/ evt
.total
;
108 this.updateProgressBar(progress
);
109 var currentOpacity
= this.previewImg
.style
.opacity
;
110 this.previewImg
.style
.opacity
= Math
.max(currentOpacity
, progress
);
114 // Method about queues
116 DDFileUploader
.prototype.previewQueuePush = function(slide
) {
117 this.previewQueue
.push(slide
);
118 if (!this._previewQueueRunning
) {
119 this.startPreviewQueue();
123 DDFileUploader
.prototype.startPreviewQueue = function() {
124 this._previewQueueRunning
= true;
125 this.previewQueueLoadNext();
128 DDFileUploader
.prototype.previewQueueLoadNext = function() {
129 if (this.previewQueue
.length
&& this.previewsLoaded
< MAX_PREVIEW
) {
130 var slide
= this.previewQueue
.shift();
131 this.previewUploadedImage(slide
);
132 this.previewsLoaded
++;
135 this._previewQueueRunning
= false;
139 DDFileUploader
.prototype.uploadQueuePush = function(slide
) {
140 this.uploadQueue
.push(slide
);
141 if (!this._uploadQueueRunning
) {
142 this.startUploadQueue();
146 DDFileUploader
.prototype.startUploadQueue = function() {
147 this._uploadQueueRunning
= true;
148 this.uploadQueueLoadNext();
152 DDFileUploader
.prototype.uploadQueueLoadNext = function() {
153 var slide
= this.uploadQueue
.shift();
158 this._uploadQueueRunning
= false;
164 DDFileUploader
.prototype.createSlide = function(file
) {
165 var slide
= document
.createElement('span');
168 var a
= document
.createElement('a');
170 a
.className
= 'slide';
172 var img
= document
.createElement('img');
173 img
.className
= 'hidden';
174 var size
= this.thumbnailSize
;
176 img
.onload = function(evt
) {
177 if (img
.width
> img
.height
) { // landscape
178 img
.height
= Math
.round(size
* img
.height
/ img
.width
);
182 img
.width
= Math
.round(size
* img
.width
/ img
.height
);
185 img
.style
.marginLeft
= Math
.floor((self
.slideSize
- img
.width
) / 2) + 'px';
186 img
.style
.marginTop
= Math
.floor((self
.slideSize
- img
.height
) / 2) + 'px';
187 img
.style
.opacity
= 0.2;
188 img
.className
= undefined;
193 var label
= document
.createElement('span');
195 label
.className
= 'label';
196 label
.innerHTML
= file
.name
;
198 var progressBar
= document
.createElement('span');
199 progressBar
.className
= 'upload-progress';
200 slide
.progressBar
= progressBar
;
202 slide
.appendChild(a
);
203 slide
.appendChild(progressBar
);
204 slide
.appendChild(label
);
205 this.dropbox
.appendChild(slide
);
210 DDFileUploader
.prototype.updateProgressBar = function(progress
) {
211 // 0 <= progress <= 1
212 var size
= this.progressBarMaxSize
* progress
;
213 size
= Math
.round(size
);
214 this.progressBar
.style
.width
= size
+ 'px';
217 DDFileUploader
.prototype.previewUploadedImage = function(slide
) {
218 var reader
= new FileReader();
219 var size
= this.thumbnailSize
;
222 reader
.onload = function(evt
) {
223 slide
.img
.src
= evt
.target
.result
;
224 setTimeout(function(){self
.previewQueueLoadNext();}, 500);
226 reader
.readAsDataURL(slide
.file
);