nextcloud/files/js/fileactions.js

155 lines
4.7 KiB
JavaScript
Raw Normal View History

2011-06-04 22:16:44 +04:00
FileActions={
actions:{},
defaults:{},
icons:{},
currentFile:null,
register:function(mime,name,icon,action){
2011-06-04 22:16:44 +04:00
if(!FileActions.actions[mime]){
FileActions.actions[mime]={};
}
FileActions.actions[mime][name]=action;
FileActions.icons[name]=icon;
2011-06-04 22:16:44 +04:00
},
setDefault:function(mime,name){
FileActions.defaults[mime]=name;
2011-06-04 22:16:44 +04:00
},
get:function(mime,type){
var actions={};
if(FileActions.actions.all){
actions=$.extend( actions, FileActions.actions.all )
}
if(mime){
if(FileActions.actions[mime]){
actions=$.extend( actions, FileActions.actions[mime] )
}
var mimePart=mime.substr(0,mime.indexOf('/'));
if(FileActions.actions[mimePart]){
actions=$.extend( actions, FileActions.actions[mimePart] )
}
}
if(type){//type is 'dir' or 'file'
if(FileActions.actions[type]){
actions=$.extend( actions, FileActions.actions[type] )
}
}
return actions;
},
getDefault:function(mime,type){
if(mime){
var mimePart=mime.substr(0,mime.indexOf('/'));
}
var name=false;
2011-06-04 22:16:44 +04:00
if(mime && FileActions.defaults[mime]){
name=FileActions.defaults[mime];
2011-06-04 22:16:44 +04:00
}else if(mime && FileActions.defaults[mimePart]){
name=FileActions.defaults[mimePart];
2011-06-04 22:16:44 +04:00
}else if(type && FileActions.defaults[type]){
name=FileActions.defaults[type];
2011-06-04 22:16:44 +04:00
}else{
name=FileActions.defaults.all;
2011-06-04 22:16:44 +04:00
}
var actions=this.get(mime,type);
return actions[name];
2011-06-04 22:16:44 +04:00
},
display:function(parent){
FileActions.currentFile=parent;
$('#fileList .action').remove();
2011-06-04 22:16:44 +04:00
var actions=FileActions.get(FileActions.getCurrentMimeType(),FileActions.getCurrentType());
2011-07-29 04:26:20 +04:00
var file=FileActions.getCurrentFile();
if($('tr').filterAttr('data-file',file).data('renaming')){
2011-07-29 04:26:20 +04:00
return;
}
2012-04-15 15:25:31 +04:00
parent.children('a.name').append('<span class="fileactions" />');
var defaultAction=FileActions.getDefault(FileActions.getCurrentMimeType(),FileActions.getCurrentType());
2011-06-04 22:16:44 +04:00
for(name in actions){
2011-07-29 04:02:17 +04:00
if((name=='Download' || actions[name]!=defaultAction) && name!='Delete'){
var img=FileActions.icons[name];
if(img.call){
2011-08-12 01:23:59 +04:00
img=img(file);
}
2012-04-15 15:28:11 +04:00
var html='<a href="#" class="action" style="display:none">';
if(img) { html+='<img src="'+img+'"/> '; }
html += name+'</a>';
var element=$(html);
element.data('action',name);
element.click(function(event){
event.stopPropagation();
event.preventDefault();
var action=actions[$(this).data('action')];
var currentFile=FileActions.getCurrentFile();
FileActions.hide();
action(currentFile);
});
2012-01-15 03:11:26 +04:00
element.hide();
2012-04-15 15:25:31 +04:00
parent.find('a.name>span.fileactions').append(element);
}
2011-06-04 22:16:44 +04:00
}
if(actions['Delete']){
var img=FileActions.icons['Delete'];
if(img.call){
img=img(file);
}
2012-04-13 19:22:23 +04:00
var html='<a href="#" original-title="Delete" class="action delete" style="display:none" />';
2011-06-04 22:16:44 +04:00
var element=$(html);
if(img){
element.append($('<img src="'+img+'"/>'));
}
element.data('action','Delete');
element.click(function(event){
2011-07-22 02:18:41 +04:00
event.stopPropagation();
2011-06-04 22:16:44 +04:00
event.preventDefault();
var action=actions[$(this).data('action')];
2011-07-22 02:18:41 +04:00
var currentFile=FileActions.getCurrentFile();
FileActions.hide();
action(currentFile);
2011-06-04 22:16:44 +04:00
});
2012-01-15 03:11:26 +04:00
element.hide();
parent.parent().children().last().append(element);
2011-06-04 22:16:44 +04:00
}
$('#fileList .action').css('-o-transition-property','none');//temporarly disable
2012-01-15 03:11:26 +04:00
$('#fileList .action').fadeIn(200,function(){
$('#fileList .action').css('-o-transition-property','opacity');
});
2011-06-04 22:16:44 +04:00
return false;
},
2011-07-22 02:18:41 +04:00
hide:function(){
2012-04-15 15:25:31 +04:00
$('#fileList span.fileactions').fadeOut(200,function(){
2011-08-13 00:10:43 +04:00
$(this).remove();
});
2011-07-22 02:18:41 +04:00
},
2011-06-04 22:16:44 +04:00
getCurrentFile:function(){
return FileActions.currentFile.parent().attr('data-file');
2011-06-04 22:16:44 +04:00
},
getCurrentMimeType:function(){
return FileActions.currentFile.parent().attr('data-mime');
2011-06-04 22:16:44 +04:00
},
getCurrentType:function(){
return FileActions.currentFile.parent().attr('data-type');
2011-06-04 22:16:44 +04:00
}
}
$(document).ready(function(){
if($('#allowZipDownload').val() == 1){
var downloadScope = 'all';
} else {
var downloadScope = 'file';
}
FileActions.register(downloadScope,'Download',function(){return OC.imagePath('core','actions/download')},function(filename){
window.location='ajax/download.php?files='+encodeURIComponent(filename)+'&dir='+encodeURIComponent($('#dir').val());
});
2011-06-04 22:16:44 +04:00
});
FileActions.register('all','Delete',function(){return OC.imagePath('core','actions/delete')},function(filename){
FileList.do_delete(filename);
2011-06-04 22:16:44 +04:00
});
FileActions.register('all','Rename',function(){return OC.imagePath('core','actions/rename')},function(filename){
FileList.rename(filename);
});
2011-06-04 22:16:44 +04:00
FileActions.register('dir','Open','',function(filename){
window.location='index.php?dir='+encodeURIComponent($('#dir').val()).replace(/%2F/g, '/')+'/'+encodeURIComponent(filename);
2011-06-04 22:16:44 +04:00
});
FileActions.setDefault('dir','Open');