зеркало из https://github.com/nextcloud/server.git
214 строки
6.3 KiB
JavaScript
214 строки
6.3 KiB
JavaScript
$(document).ready(function() {
|
|
$('#file_action_panel').attr('activeAction', false);
|
|
$('#file_newfolder_name').css('width', '14em');
|
|
$('#file_newfolder_submit').css('width', '3em');
|
|
|
|
// Sets browser table behaviour :
|
|
$('.browser tr').hover(
|
|
function() {
|
|
$(this).addClass('mouseOver');
|
|
},
|
|
function() {
|
|
$(this).removeClass('mouseOver');
|
|
}
|
|
);
|
|
|
|
// Sets the file-action buttons behaviour :
|
|
$('td.fileaction a').live('click',function(event) {
|
|
event.preventDefault();
|
|
FileActions.display($(this).parent());
|
|
});
|
|
|
|
// Sets the file link behaviour :
|
|
$('td.filename a').live('click',function(event) {
|
|
event.preventDefault();
|
|
var filename=$(this).text();
|
|
var mime=$(this).parent().parent().attr('data-mime');
|
|
var type=$(this).parent().parent().attr('data-type');
|
|
var action=FileActions.getDefault(mime,type);
|
|
if(action){
|
|
action(filename);
|
|
}
|
|
});
|
|
|
|
// Sets the select_all checkbox behaviour :
|
|
$('#select_all').click(function() {
|
|
if($(this).attr('checked'))
|
|
// Check all
|
|
$('td.selection input:checkbox').attr('checked', true);
|
|
else
|
|
// Uncheck all
|
|
$('td.selection input:checkbox').attr('checked', false);
|
|
});
|
|
|
|
$('td.selection input:checkbox').live('click',function() {
|
|
if(!$(this).attr('checked')){
|
|
$('#select_all').attr('checked',false);
|
|
}else{
|
|
if($('td.selection input:checkbox:checked').length==$('td.selection input:checkbox').length){
|
|
$('#select_all').attr('checked',true);
|
|
}
|
|
}
|
|
});
|
|
|
|
$('#file_newfolder_form').submit(function(event) {
|
|
event.preventDefault();
|
|
$.ajax({
|
|
url: 'ajax/newfolder.php',
|
|
data: "dir="+$('#dir').val()+"&foldername="+$('#file_newfolder_name').val(),
|
|
complete: function(data){boolOperationFinished(data, function(){
|
|
var date=formatDate(new Date());
|
|
FileList.addDir($('#file_newfolder_name').val(),'0 B',date)
|
|
});}
|
|
});
|
|
$('#file_newfolder_submit').fadeOut(250).trigger('vanish');
|
|
});
|
|
|
|
$('#file_newfolder_name').click(function(){
|
|
if($('#file_newfolder_name').val() == 'New Folder'){
|
|
$('#file_newfolder_name').val('');
|
|
}
|
|
});
|
|
|
|
$('#file_newfolder_name').bind('keyup', adjustNewFolderSize);
|
|
|
|
$('#file_newfolder_submit').bind('vanish', function() {
|
|
$('#file_newfolder_name').bind('keyup', adjustNewFolderSize);
|
|
unsplitSize($('#file_newfolder_name'),$('#file_newfolder_submit'));
|
|
});
|
|
|
|
$('#file_newfolder_name').focusout(function(){
|
|
if($('#file_newfolder_name').val() == '') {
|
|
$('#file_newfolder_form')[0].reset();
|
|
$('#file_newfolder_submit').fadeOut(250).trigger('vanish');
|
|
}
|
|
});
|
|
|
|
$('.download').live('click',function(event) {
|
|
var files='';
|
|
$('td.selection input:checkbox:checked').parent().parent().each(function(i,element){
|
|
files+=';'+$(element).attr('data-file');
|
|
});
|
|
files=files.substr(1);//remove leading ;
|
|
|
|
//send the browser to the download location
|
|
var dir=$('#dir').val()||'/';
|
|
// alert(files);
|
|
window.location='ajax/download.php?files='+files+'&dir='+dir;
|
|
return false;
|
|
});
|
|
|
|
$('.delete').live('click',function(event) {
|
|
var files='';
|
|
$('td.selection input:checkbox:checked').parent().parent().each(function(i,element){
|
|
files+=';'+$(element).attr('data-file');
|
|
});
|
|
files=files.substr(1);//remove leading ;
|
|
|
|
$.ajax({
|
|
url: 'ajax/delete.php',
|
|
data: "dir="+$('#dir').val()+"&files="+files,
|
|
complete: function(data){
|
|
boolOperationFinished(data, function(){
|
|
$('td.selection input:checkbox:checked').parent().parent().each(function(i,element){
|
|
FileList.remove($(element).attr('data-file'));
|
|
});
|
|
});
|
|
}
|
|
});
|
|
|
|
return false;
|
|
});
|
|
|
|
$('#file_upload_start').change(function(){
|
|
var filename=$(this).val();
|
|
filename=filename.replace(/^.*[\/\\]/g, '');
|
|
$('#file_upload_filename').val(filename);
|
|
$('#file_upload_submit').show();
|
|
})
|
|
|
|
$('#file_upload_submit').click(function(){
|
|
var name=$('#file_upload_filename').val();
|
|
if($('#file_upload_start')[0].files[0] && $('#file_upload_start')[0].files[0].size>0){
|
|
var size=humanFileSize($('#file_upload_start')[0].files[0].size);
|
|
}else{
|
|
var size='Pending';
|
|
}
|
|
$('#file_upload_target').load(function(){
|
|
var response=jQuery.parseJSON($('#file_upload_target').contents().find('body').text());
|
|
//set mimetype and if needed filesize
|
|
$('tr[data-file="'+name+'"]').attr('data-mime',response.mime);
|
|
if(size=='Pending'){
|
|
$('tr[data-file='+name+'] td.filesize').text(response.size);
|
|
}
|
|
});
|
|
$('#file_upload_form').submit();
|
|
var date=new Date();
|
|
var uploadTime=formatDate(date);
|
|
FileList.addFile(name,size,uploadTime);
|
|
$('#file_upload_filename').val($('#file_upload_filename').data('upload_text'));
|
|
});
|
|
//save the original upload button text
|
|
$('#file_upload_filename').data('upload_text',$('#file_upload_filename').val());
|
|
});
|
|
|
|
var adjustNewFolderSize = function() {
|
|
if($('#file_newfolder_name').val() != '') {
|
|
splitSize($('#file_newfolder_name'),$('#file_newfolder_submit'));
|
|
$('#file_newfolder_name').unbind('keyup', adjustNewFolderSize);
|
|
};
|
|
}
|
|
|
|
function splitSize(existingEl, appearingEl) {
|
|
nw = parseInt($(existingEl).css('width')) - parseInt($(appearingEl).css('width'));
|
|
$(existingEl).css('width', nw + 'px');
|
|
$(appearingEl).fadeIn(250);
|
|
}
|
|
|
|
function unsplitSize(stayingEl, vanishingEl) {
|
|
nw = parseInt($(stayingEl).css('width')) + parseInt($(vanishingEl).css('width'));
|
|
$(stayingEl).css('width', nw + 'px');
|
|
$(vanishingEl).fadeOut(250);
|
|
}
|
|
|
|
function resetFileActionPanel() {
|
|
$('#file_action_panel form').css({"display":"none"});
|
|
$('#file_action_panel').attr('activeAction', false);
|
|
}
|
|
|
|
function boolOperationFinished(data, callback) {
|
|
result = jQuery.parseJSON(data.responseText);
|
|
if(result.status == 'success'){
|
|
callback.call();
|
|
} else {
|
|
alert(result.data.message);
|
|
}
|
|
}
|
|
|
|
function updateBreadcrumb(breadcrumbHtml) {
|
|
$('p.nav').empty().html(breadcrumbHtml);
|
|
}
|
|
|
|
function humanFileSize(bytes){
|
|
if( bytes < 1024 ){
|
|
return bytes+' B';
|
|
}
|
|
bytes = Math.round(bytes / 1024, 1 );
|
|
if( bytes < 1024 ){
|
|
return bytes+' kB';
|
|
}
|
|
bytes = Math.round( bytes / 1024, 1 );
|
|
if( bytes < 1024 ){
|
|
return bytes+' MB';
|
|
}
|
|
|
|
// Wow, heavy duty for owncloud
|
|
bytes = Math.round( bytes / 1024, 1 );
|
|
return bytes+' GB';
|
|
}
|
|
|
|
function formatDate(date){
|
|
var monthNames = [ "January", "February", "March", "April", "May", "June",
|
|
"July", "August", "September", "October", "November", "December" ];
|
|
return monthNames[date.getMonth()]+' '+date.getDate()+', '+date.getFullYear()+', '+((date.getHours()<10)?'0':'')+date.getHours()+':'+date.getMinutes();
|
|
} |