summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorRobin <robin@Amaya.(none)>2010-03-28 19:08:18 +0200
committerRobin <robin@Amaya.(none)>2010-03-28 19:08:18 +0200
commit6822185c5bc33abe892bb9db904a96fbaa916f2c (patch)
tree6e5dc3ddc852c427eaa274b256b77c0939d79588 /js
parentf16f1e508f1d12164c4c25d9af110c8350a548fd (diff)
downloadnextcloud-server-6822185c5bc33abe892bb9db904a96fbaa916f2c.tar.gz
nextcloud-server-6822185c5bc33abe892bb9db904a96fbaa916f2c.zip
added option to delete multiply files and fixed a bug when downloading large files
Diffstat (limited to 'js')
-rw-r--r--js/lib_files.js93
1 files changed, 78 insertions, 15 deletions
diff --git a/js/lib_files.js b/js/lib_files.js
index 83846d611ff..2b2c5665063 100644
--- a/js/lib_files.js
+++ b/js/lib_files.js
@@ -146,6 +146,32 @@ OC_FILES.showbrowser_callback=function(content){
var filesfound=false;
var sizeTd=null;
if(content){
+ tr=document.createElement('tr');
+ tbody.appendChild(tr);
+ tr.className='browserline';
+ td=document.createElement('td');
+ tr.appendChild(td);
+ td.setAttribute('colspan','2');
+ input=document.createElement('input');
+ input.setAttribute('type','checkbox');
+ input.setAttribute('name','fileSelector');
+ input.setAttribute('value','select_all');
+ input.setAttribute('id','select_all');
+ input.setAttribute('onclick','OC_FILES.selectAll()');
+ td.appendChild(input);
+ td=document.createElement('td');
+ tr.appendChild(td);
+ td.className='nametext';
+ td.setAttribute('name','name');
+ td.appendChild(document.createTextNode('name'))
+ sizeTd=document.createElement('td');
+ tr.appendChild(sizeTd);
+ sizeTd.className='sizetext';
+ sizeTd.appendChild(document.createTextNode('size'));
+ td=document.createElement('td');
+ tr.appendChild(td);
+ td.className='sizetext';
+ td.appendChild(document.createTextNode('date'));
for(index in content){
file=content[index];
if(file.name){
@@ -185,8 +211,6 @@ OC_FILES.showbrowser_callback=function(content){
img.alt='rename'
img.title='rename';
img.src=WEBROOT+'/img/icons/rename.png';
- img.style.height='16px'
- img.style.width='16px'
img.setAttribute('onclick','OC_FILES.rename(\''+dir+'\',\''+file['name']+'\')')
td=document.createElement('td');
tr.appendChild(td);
@@ -201,8 +225,6 @@ OC_FILES.showbrowser_callback=function(content){
img.alt='delete'
img.title='delete';
img.src=WEBROOT+'/img/icons/delete.png';
- img.style.height='16px'
- img.style.width='16px'
img.setAttribute('onclick','OC_FILES.remove(\''+dir+'\',\''+file['name']+'\')')
}
}
@@ -213,20 +235,32 @@ OC_FILES.showbrowser_callback=function(content){
tr.className='utilrow';
td=document.createElement('td');
tr.appendChild(td);
- td.className='upload';
td.setAttribute('colspan','6');
- this.showuploader(dir,td,content['max_upload']);
+ dropdown=document.createElement('select');
+ td.appendChild(dropdown);
+ dropdown.setAttribute('id','selected_action');
+ for(index in this.actions_selected){
+ if(this.actions_selected[index].call){
+ option=document.createElement('option');
+ dropdown.appendChild(option);
+ option.setAttribute('value',index);
+ option.appendChild(document.createTextNode(index));
+ }
+ }
+ td.appendChild(document.createTextNode(' selected. '));
+ button=document.createElement('input');
+ td.appendChild(button);
+ button.setAttribute('type','button');
+ button.setAttribute('value','Go');
+ button.setAttribute('onclick','OC_FILES.action_selected()');
tr=document.createElement('tr');
tbody.appendChild(tr);
tr.className='utilrow';
td=document.createElement('td');
tr.appendChild(td);
+ td.className='upload';
td.setAttribute('colspan','6');
- button=document.createElement('input');
- td.appendChild(button);
- button.setAttribute('type','button');
- button.setAttribute('value','Download');
- button.setAttribute('onclick','OC_FILES.downloadSelected()');
+ this.showuploader(dir,td,content['max_upload']);
contentNode.appendChild(files);
}
@@ -344,8 +378,8 @@ OC_FILES.remove_callback=function(req){
}
OC_FILES.getSelected=function(){
- nodes=document.getElementsByName('fileSelector');
- files=Array();
+ var nodes=document.getElementsByName('fileSelector');
+ var files=Array();
for(index in nodes){
if(nodes[index].checked){
files[files.length]=nodes[index].value;
@@ -354,9 +388,31 @@ OC_FILES.getSelected=function(){
return files;
}
-OC_FILES.downloadSelected=function(){
+OC_FILES.selectAll=function(){
+ var value=document.getElementById('select_all').checked;
+ var nodes=document.getElementsByName('fileSelector');
+ for(index in nodes){
+ if(nodes[index].value){
+ nodes[index].checked=value;
+ }
+ }
+}
+
+OC_FILES.action_selected=function(){
+ var dropdown=action=document.getElementById('selected_action');
+ var action=dropdown.options[dropdown.selectedIndex].value;
+ if(OC_FILES.actions_selected[action] && OC_FILES.actions_selected[action].call){
+ OC_FILES.actions_selected[action].call(OC_FILES);
+ }
+}
+
+OC_FILES.actions_selected=new Object();
+
+OC_FILES.actions_selected.download=function(){
files=OC_FILES.getSelected();
- if(files.length>1){
+ if(files.length==0){
+ return false;
+ }else if(files.length>1){
files.join(';');
}else{
files=files[0];
@@ -364,6 +420,13 @@ OC_FILES.downloadSelected=function(){
window.location=WEBROOT+'/files/get_file.php?dir='+OC_FILES.dir+'&files='+files;
}
+OC_FILES.actions_selected['delete']=function(){
+ files=OC_FILES.getSelected();
+ for(index in files){
+ OC_FILES.remove(OC_FILES.dir,files[index]);
+ }
+}
+
sizeFormat=function(size){
var orig=size;
var steps=Array('B','KiB','MiB','GiB','TiB');