X-Git-Url: https://scm.cri.ensmp.fr/git/Plinn.git/blobdiff_plain/18ed8263755a35f5206a4a7205745f269b69bb06..620ae31539db55f2603d84fc78fb2ee471c8f403:/skins/fileupload.js?ds=inline diff --git a/skins/fileupload.js b/skins/fileupload.js index 7229df9..8e09907 100644 --- a/skins/fileupload.js +++ b/skins/fileupload.js @@ -50,8 +50,6 @@ DDFileUploader.prototype.handleFiles = function(files) { slide = this.createSlide(file); this.previewQueuePush(slide); this.uploadQueuePush(slide); - // this.previewUploadedImage(file); - // this.upload(file); } }; @@ -59,6 +57,7 @@ DDFileUploader.prototype.upload = function(slide) { var reader = new FileReader(); var req = new XMLHttpRequest(); var file = slide.file; + this.uploadedSlide = slide; this.previewImg = slide.img; this.progressBar = slide.progressBar; var self = this; @@ -68,12 +67,21 @@ DDFileUploader.prototype.upload = function(slide) { req.open("PUT", this.uploadUrl + '/' + file.name); req.setRequestHeader("Content-Type", file.type); - addListener(reader, 'load', function(evt){req.sendAsBinary(evt.target.result);}); + addListener(reader, 'load', + function(evt){ + console.info('load'); + try { + req.sendAsBinary(evt.target.result); + } + catch(e){} + }); reader.readAsBinaryString(file); }; DDFileUploader.prototype.uploadCompleteHandler = function(evt) { - this.progressBar.parentNode.removeChild(this.progressBar); + var slide = this.uploadedSlide; + this.uploadedSlide.removeChild(slide.label); + this.uploadedSlide.removeChild(slide.label); this.uploadQueueLoadNext(); }; @@ -90,8 +98,9 @@ DDFileUploader.prototype.progressHandler = function(evt) { DDFileUploader.prototype.previewQueuePush = function(slide) { this.previewQueue.push(slide); - if (!this._previewQueueRunning) + if (!this._previewQueueRunning) { this.startPreviewQueue(); + } }; DDFileUploader.prototype.startPreviewQueue = function() { @@ -101,16 +110,19 @@ DDFileUploader.prototype.startPreviewQueue = function() { DDFileUploader.prototype.previewQueueLoadNext = function() { var slide = this.previewQueue.shift(); - if (slide) + if (slide) { this.previewUploadedImage(slide); - else + } + else { this._previewQueueRunning = false; + } }; DDFileUploader.prototype.uploadQueuePush = function(slide) { this.uploadQueue.push(slide); - if (!this._uploadQueueRunning) + if (!this._uploadQueueRunning) { this.startUploadQueue(); + } }; DDFileUploader.prototype.startUploadQueue = function() { @@ -121,10 +133,12 @@ DDFileUploader.prototype.startUploadQueue = function() { DDFileUploader.prototype.uploadQueueLoadNext = function() { var slide = this.uploadQueue.shift(); - if (slide) + if (slide) { this.upload(slide); - else + } + else { this._uploadQueueRunning = false; + } }; @@ -142,7 +156,6 @@ DDFileUploader.prototype.createSlide = function(file) { var size = this.thumbnailSize; var self = this; img.onload = function(evt) { - console.info('createSlide loaded.') if (img.width > img.height) { // landscape img.height = Math.round(size * img.height / img.width); img.width = size; @@ -158,6 +171,11 @@ DDFileUploader.prototype.createSlide = function(file) { }; a.appendChild(img); slide.img = img; + + var label = document.createElement('span'); + slide.label = label; + label.className = 'label'; + label.innerHTML = file.name; var progressBar = document.createElement('span'); progressBar.className = 'upload-progress'; @@ -165,7 +183,7 @@ DDFileUploader.prototype.createSlide = function(file) { slide.appendChild(a); slide.appendChild(progressBar); - // this.progressBar = progressBar; + slide.appendChild(label); this.dropbox.appendChild(slide); return slide; @@ -184,10 +202,8 @@ DDFileUploader.prototype.previewUploadedImage = function(slide) { var self = this; reader.onload = function(evt) { - console.info('previewUploadedImage loaded.') slide.img.src = evt.target.result; - setTimeout(function(){self.previewQueueLoadNext();}, 1000); - // self.previewQueueLoadNext(); + setTimeout(function(){self.previewQueueLoadNext();}, 500); }; reader.readAsDataURL(slide.file); };