X-Git-Url: https://scm.cri.minesparis.psl.eu/git/Portfolio.git/blobdiff_plain/10ff1e0196ea513c9e3d29519d2aab9e8680d7dc..c518ef2c2afd05c4f67b356d5dc88ad165f01817:/skins/fileupload.js

diff --git a/skins/fileupload.js b/skins/fileupload.js
index 97b5443..da5c08d 100644
--- a/skins/fileupload.js
+++ b/skins/fileupload.js
@@ -3,14 +3,19 @@ var DDFileUploader;
 
 (function(){
 
-DDFileUploader = function(dropbox) {
+DDFileUploader = function(dropbox, uploadUrl) {
 	this.dropbox = dropbox;
-	var thisDDFU = this;
-	addListener(dropbox, 'dragenter', function(evt){thisDDFU.dragenter(evt);});
-	addListener(dropbox, 'dragover', function(evt){thisDDFU.dragover(evt);});
-	addListener(dropbox, 'drop', function(evt){thisDDFU.drop(evt);});
+	this.uploadUrl = uploadUrl;
+	this.slideSize = 222;
+	this.progressBarMaxSize = 200; // pixels
+	this.thumbnailSize = 180;
+	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);
@@ -24,7 +29,6 @@ DDFileUploader.prototype.dragover = function(evt) {
 	dt.dropEffect = 'copy';
 };
 
-
 DDFileUploader.prototype.drop = function(evt) {
 	disableDefault(evt);
 	disablePropagation(evt);
@@ -34,12 +38,99 @@ DDFileUploader.prototype.drop = function(evt) {
 	this.handleFiles(dt.files);
 };
 
+// Methods about upload
 DDFileUploader.prototype.handleFiles = function(files) {
 	var file, i;
 	for (i = 0; i < files.length; i++) {
 		file = files[i];
-		console.log(file.type);
+		this.createSlide();
+		this.previewUploadedImage(file);
+		this.upload(file);
+	}
+};
+
+DDFileUploader.prototype.upload = function(file) {
+	var reader = new FileReader();
+	var req = new XMLHttpRequest();
+	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);
+};
+
+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);
 	}
 };
 
+// User interface
+DDFileUploader.prototype.createSlide = function() {
+	var slide = document.createElement('span');
+
+	var a = document.createElement('a');
+	a.href = '#';
+	a.className = 'slide';
+
+	var img = document.createElement('img');
+	this.previewImg = img;
+	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);
+
+	var progressBar = document.createElement('span');
+	progressBar.className = 'upload-progress';
+
+	slide.appendChild(a);
+	slide.appendChild(progressBar);
+	this.progressBar = progressBar;
+	this.dropbox.appendChild(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(file) {
+	var reader = new FileReader();
+	var img = this.previewImg;
+	var size = this.thumbnailSize;
+	
+	img.className = 'hidden';
+	
+	reader.onload = function(evt) {
+		img.src = evt.target.result;
+	};
+	reader.readAsDataURL(file);
+};
+
 }());