X-Git-Url: https://scm.cri.ensmp.fr/git/Portfolio.git/blobdiff_plain/edfd67539f00f7719ddd0cc146d61bc49895e1d5..30ba3a527054cc5c4c188b1049ef68e8ac0c69dd:/skins/fileupload.js diff --git a/skins/fileupload.js b/skins/fileupload.js index 497e30a..ff3f478 100644 --- a/skins/fileupload.js +++ b/skins/fileupload.js @@ -2,8 +2,6 @@ var DDFileUploaderBase; (function(){ -// nombre maximun d'image chargées en local -var MAX_PREVIEW = 2; DDFileUploaderBase = function(dropbox, uploadUrl) { this.dropbox = dropbox; @@ -41,13 +39,7 @@ DDFileUploaderBase.prototype.drop = function(evt) { // Methods about upload DDFileUploaderBase.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); - } + // To be implemented by descendant. }; DDFileUploaderBase.prototype.upload = function(slide) { @@ -121,31 +113,7 @@ DDFileUploaderBase.prototype.progressHandler = function(evt) { } }; -// Method about queues - -DDFileUploaderBase.prototype.previewQueuePush = function(slide) { - this.previewQueue.push(slide); - if (!this._previewQueueRunning) { - this.startPreviewQueue(); - } -}; - -DDFileUploaderBase.prototype.startPreviewQueue = function() { - this._previewQueueRunning = true; - this.previewQueueLoadNext(); -}; - -DDFileUploaderBase.prototype.previewQueueLoadNext = function() { - if (this.previewQueue.length && this.previewsLoaded < MAX_PREVIEW) { - var slide = this.previewQueue.shift(); - this.previewUploadedImage(slide); - this.previewsLoaded++; - } - else { - this._previewQueueRunning = false; - } -}; - +// Methods about queue DDFileUploaderBase.prototype.uploadQueuePush = function(slide) { this.uploadQueue.push(slide); if (!this._uploadQueueRunning) {