Ajout barre de progression de l’upload du fichier courant.
authorBenoît Pin <benoit.pin@gmail.com>
Wed, 4 Dec 2013 22:32:56 +0000 (23:32 +0100)
committerBenoît Pin <benoit.pin@gmail.com>
Wed, 4 Dec 2013 22:32:56 +0000 (23:32 +0100)
skins/ajax_scripts/folder_contents_script.js
skins/custom_generic/zpt_stylesheet.css.dtml

index 7204a4e..d427939 100644 (file)
@@ -244,6 +244,7 @@ loadListing = function(evt) {
 DDFolderUploader = function(dropbox, uploadUrl, listing) {
        DDFileUploaderBase.apply(this, [dropbox, uploadUrl]);
        this.listing = listing;
+       this.progressBarMaxSize = listing.clientWidth;
        var thead = listing;
        do {
                thead = thead.previousSibling;
@@ -273,9 +274,19 @@ DDFolderUploader.prototype.createRow = function(file) {
        this.lastRowClassName = row.className;
        var td = document.createElement('td');
        td.setAttribute('colspan', this.tableSpan);
-       td.innerHTML = file.name;
+       var relSpan = document.createElement('span');
+       relSpan.style.position = 'relative';
+       td.appendChild(relSpan);
+       var progressBar = document.createElement('span');
+       progressBar.className = 'upload-progress';
+       row.progressBar = progressBar;
+       relSpan.appendChild(progressBar);
+       var fileNameSpan = document.createElement('span');
+       fileNameSpan.innerHTML = file.name;
+       td.appendChild(fileNameSpan);
        row.appendChild(td);
        this.listing.appendChild(row);
+       this.progressBarMaxSize = row.clientWidth;
        return row;
 };
 
@@ -290,28 +301,31 @@ DDFolderUploader.prototype.handleFiles = function(files) {
 };
 
 DDFolderUploader.prototype.beforeUpload = function(item) {
-  this.uploadedItem = item;
-       // To be implemented by decendant.
+       this.uploadedItem = item;
+       this.progressBar = item.progressBar;
 };
 
 DDFolderUploader.prototype.uploadCompleteHandlerCB = function(req) {
        var item = this.uploadedItem;
        var row = getCopyOfNode(req.responseXML.documentElement.firstChild);
-  row.className = item.className;
+       row.className = item.className;
 
        if (req.status === 200) {
                // update
-    console.log('todo');
+       console.log('todo');
        }
        else if(req.status === 201) {
                // creation
                this.listing.replaceChild(row, item);
+               this.progressBarMaxSize = row.clientWidth;
        }
 };
 
 DDFolderUploader.prototype.progressHandlerCB = function(progress) {
-       // To be implemented by descendant.
        // 0 <= progress <= 1
+       var size = this.progressBarMaxSize * progress;
+       size = Math.round(size);
+       this.progressBar.style.width = size + 'px';
 };
 
 }());
\ No newline at end of file
index 8acbdab..77011e0 100644 (file)
@@ -390,7 +390,18 @@ textarea {
 }
 .listing .even {
   background-color: &dtml-evenRowBackgroundColor;;
-} 
+}
+
+.listing span.upload-progress {
+  display: block;
+  position:absolute;
+  background:#ef8e32;
+  height:4px;
+  border-radius:2px;
+  width:0;
+  top:3px;
+}
+
 
 /* Batched navigation */