X-Git-Url: https://svn.cri.ensmp.fr/git/Portfolio.git/blobdiff_plain/4c96ff0638e92cdfb35c046c8614e157bfd8ffec..30ba3a527054cc5c4c188b1049ef68e8ac0c69dd:/skins/fileupload.js diff --git a/skins/fileupload.js b/skins/fileupload.js index 4061a0c..ff3f478 100644 --- a/skins/fileupload.js +++ b/skins/fileupload.js @@ -2,20 +2,10 @@ var DDFileUploaderBase; (function(){ -// nombre maximun d'image chargées en local -var MAX_PREVIEW = 2; -var isThumbnail = /.*\/getThumbnail$/; DDFileUploaderBase = function(dropbox, uploadUrl) { this.dropbox = dropbox; - this.existingSlides = this.indexExistingSlides(); this.uploadUrl = uploadUrl; - this.slideSize = 222; - this.progressBarMaxSize = 200; // pixels - this.thumbnailSize = 180; - this.previewQueue = []; - this._previewQueueRunning = false; - this.previewsLoaded = 0; this.uploadQueue = []; this._uploadQueueRunning = false; var self = this; @@ -24,18 +14,6 @@ DDFileUploaderBase = function(dropbox, uploadUrl) { addListener(dropbox, 'drop', function(evt){self.drop(evt);}); }; -DDFileUploaderBase.prototype.indexExistingSlides = function() { - var images = this.dropbox.getElementsByTagName('img'); - var i; - var index = []; - for (i=0 ; i < images.length ; i++) { - if (isThumbnail.test(images[i].src)) { - index[images[i].src] = images[i]; - } - } - return index; -}; - // Drag and drop DDFileUploaderBase.prototype.dragenter = function(evt) { disableDefault(evt); @@ -61,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) { @@ -141,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) {