X-Git-Url: https://scm.cri.ensmp.fr/git/Plinn.git/blobdiff_plain/36f853f6b380099a378c032baf46f35d914026f9..ff6b092efb7356ee8f98cce22c489601ded30e0e:/skins/fileupload.js diff --git a/skins/fileupload.js b/skins/fileupload.js index d862ad6..980fb44 100644 --- a/skins/fileupload.js +++ b/skins/fileupload.js @@ -1,54 +1,195 @@ -function dragenter(evt) { +// © 2013 Benoît Pin MINES ParisTech +var DDFileUploader; + +(function(){ + +DDFileUploader = function(dropbox, uploadUrl) { + this.dropbox = dropbox; + this.uploadUrl = uploadUrl; + this.slideSize = 222; + this.progressBarMaxSize = 200; // pixels + this.thumbnailSize = 180; + this.previewQueue = []; + this._previewQueueRunning = false; + this.uploadQueue = []; + this._uploadQueueRunning = false; + var self = this; + addListener(dropbox, 'dragenter', function(evt){self.dragenter(evt);}); + addListener(dropbox, 'dragover', function(evt){self.dragover(evt);}); + addListener(dropbox, 'drop', function(evt){self.drop(evt);}); +}; + +// Drag and drop +DDFileUploader.prototype.dragenter = function(evt) { disableDefault(evt); disablePropagation(evt); -} +}; -function dragover(evt) { +DDFileUploader.prototype.dragover = function(evt) { disableDefault(evt); disablePropagation(evt); evt = getEventObject(evt); var dt = evt.dataTransfer; dt.dropEffect = 'copy'; -} +}; - -function drop(evt) { +DDFileUploader.prototype.drop = function(evt) { disableDefault(evt); disablePropagation(evt); getEventObject(evt); var dt = evt.dataTransfer; dt.dropEffect = 'copy'; - handleFiles(dt.files); -} - -function handleFiles(files) { - for (var i = 0; i < files.length; i++) { - var file = files[i]; - console.log(file.type); - // console.log(file); - // var imageType = /image.*/; - // - // if (!file.type.match(imageType)) { - // continue; - // } - // - // var img = document.createElement("img"); - // img.classList.add("obj"); - // img.file = file; - // preview.appendChild(img); - // - // var reader = new FileReader(); - // reader.onload = (function(aImg) { return function(e) { aImg.src = e.target.result; }; })(img); - // reader.readAsDataURL(file); - } -} - -function init() { - var dropbox = document.getElementById('dropbox'); - addListener(dropbox, 'dragenter', dragenter); - addListener(dropbox, 'dragover', dragover); - addListener(dropbox, 'drop', drop); -} - - -addListener(window, 'load', init); \ No newline at end of file + this.handleFiles(dt.files); +}; + +// Methods about upload +DDFileUploader.prototype.handleFiles = function(files) { + var file, i, slide; + for (i = 0; i < files.length; i++) { + file = files[i]; + slide = this.createSlide(file); + this.previewQueuePush(slide); + this.uploadQueuePush(slide); + } +}; + +DDFileUploader.prototype.upload = function(slide) { + var reader = new FileReader(); + var req = new XMLHttpRequest(); + var file = slide.file; + this.previewImg = slide.img; + this.progressBar = slide.progressBar; + var self = this; + + addListener(req.upload, 'progress', function(evt){self.progressHandler(evt);}); + addListener(req.upload, 'load', function(evt){self.uploadCompleteHandler(evt);}); + + req.open("PUT", this.uploadUrl + '/' + file.name); + req.setRequestHeader("Content-Type", file.type); + addListener(reader, 'load', function(evt){req.sendAsBinary(evt.target.result);}); + reader.readAsBinaryString(file); +}; + +DDFileUploader.prototype.uploadCompleteHandler = function(evt) { + this.progressBar.parentNode.removeChild(this.progressBar); + this.uploadQueueLoadNext(); +}; + +DDFileUploader.prototype.progressHandler = function(evt) { + if (evt.lengthComputable) { + var progress = evt.loaded / evt.total; + this.updateProgressBar(progress); + var currentOpacity = this.previewImg.style.opacity; + this.previewImg.style.opacity = Math.max(currentOpacity, progress); + } +}; + +// Method about queues + +DDFileUploader.prototype.previewQueuePush = function(slide) { + this.previewQueue.push(slide); + if (!this._previewQueueRunning) { + this.startPreviewQueue(); + } +}; + +DDFileUploader.prototype.startPreviewQueue = function() { + this._previewQueueRunning = true; + this.previewQueueLoadNext(); +}; + +DDFileUploader.prototype.previewQueueLoadNext = function() { + var slide = this.previewQueue.shift(); + if (slide) { + this.previewUploadedImage(slide); + } + else { + this._previewQueueRunning = false; + } +}; + +DDFileUploader.prototype.uploadQueuePush = function(slide) { + this.uploadQueue.push(slide); + if (!this._uploadQueueRunning) { + this.startUploadQueue(); + } +}; + +DDFileUploader.prototype.startUploadQueue = function() { + this._uploadQueueRunning = true; + this.uploadQueueLoadNext(); +}; + + +DDFileUploader.prototype.uploadQueueLoadNext = function() { + var slide = this.uploadQueue.shift(); + if (slide) { + this.upload(slide); + } + else { + this._uploadQueueRunning = false; + } +}; + + +// User interface +DDFileUploader.prototype.createSlide = function(file) { + var slide = document.createElement('span'); + slide.file = file; + + var a = document.createElement('a'); + a.href = '#'; + a.className = 'slide'; + + var img = document.createElement('img'); + img.className = 'hidden'; + var size = this.thumbnailSize; + var self = this; + img.onload = function(evt) { + if (img.width > img.height) { // landscape + img.height = Math.round(size * img.height / img.width); + img.width = size; + } + else { + img.width = Math.round(size * img.width / img.height); + img.height = size; + } + img.style.marginLeft = Math.round((self.slideSize - img.width) / 2) + 'px'; + img.style.marginTop = Math.round((self.slideSize - img.height) / 2) + 'px'; + img.style.opacity = 0.2; + img.className = undefined; + }; + a.appendChild(img); + slide.img = img; + + var progressBar = document.createElement('span'); + progressBar.className = 'upload-progress'; + slide.progressBar = progressBar; + + slide.appendChild(a); + slide.appendChild(progressBar); + this.dropbox.appendChild(slide); + + return slide; +}; + +DDFileUploader.prototype.updateProgressBar = function(progress) { + // 0 <= progress <= 1 + var size = this.progressBarMaxSize * progress; + size = Math.round(size); + this.progressBar.style.width = size + 'px'; +}; + +DDFileUploader.prototype.previewUploadedImage = function(slide) { + var reader = new FileReader(); + var size = this.thumbnailSize; + var self = this; + + reader.onload = function(evt) { + slide.img.src = evt.target.result; + setTimeout(function(){self.previewQueueLoadNext();}, 500); + }; + reader.readAsDataURL(slide.file); +}; + +}());