57 lines
1.8 KiB
JavaScript
57 lines
1.8 KiB
JavaScript
$(document).ready(function() {
|
|
|
|
var disableSharing = $('#disableSharing').data('status'),
|
|
sharesLoaded = false;
|
|
|
|
if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !disableSharing) {
|
|
$('#fileList').on('fileActionsReady',function(){
|
|
|
|
var allShared = $('#fileList').find('[data-share-owner]').find('[data-Action="Share"]');
|
|
allShared.addClass('permanent');
|
|
allShared.find('span').text(function(){
|
|
$owner = $(this).closest('tr').attr('data-share-owner');
|
|
return ' ' + t('files_sharing', 'Shared by {owner}', {owner: $owner});
|
|
});
|
|
|
|
if (!sharesLoaded){
|
|
OC.Share.loadIcons('file');
|
|
// assume that we got all shares, so switching directories
|
|
// will not invalidate that list
|
|
sharesLoaded = true;
|
|
}
|
|
else{
|
|
OC.Share.updateIcons('file');
|
|
}
|
|
});
|
|
|
|
FileActions.register('all', 'Share', OC.PERMISSION_READ, OC.imagePath('core', 'actions/share'), function(filename) {
|
|
var dir = $('#dir').val();
|
|
var item = dir + '/' + filename;
|
|
if (dir == '/') {
|
|
item = dir + filename;
|
|
}
|
|
var tr = FileList.findFileEl(filename);
|
|
var itemType = 'file';
|
|
if ($(tr).data('type') == 'dir') {
|
|
itemType = 'folder';
|
|
}
|
|
var possiblePermissions = $(tr).data('permissions');
|
|
var appendTo = $(tr).find('td.filename');
|
|
// Check if drop down is already visible for a different file
|
|
if (OC.Share.droppedDown) {
|
|
if ($(tr).data('id') != $('#dropdown').attr('data-item-source')) {
|
|
OC.Share.hideDropDown(function () {
|
|
$(tr).addClass('mouseOver');
|
|
OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions, filename);
|
|
});
|
|
} else {
|
|
OC.Share.hideDropDown();
|
|
}
|
|
} else {
|
|
$(tr).addClass('mouseOver');
|
|
OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions, filename);
|
|
}
|
|
});
|
|
}
|
|
});
|