2014-05-09 00:06:30 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3
|
|
|
|
* or later.
|
|
|
|
*
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-06-24 01:56:10 +04:00
|
|
|
/**
|
|
|
|
* @namespace OCA.Trashbin
|
|
|
|
*/
|
2014-05-09 00:06:30 +04:00
|
|
|
OCA.Trashbin = {};
|
2014-06-24 01:56:10 +04:00
|
|
|
/**
|
|
|
|
* @namespace OCA.Trashbin.App
|
|
|
|
*/
|
2014-05-09 00:06:30 +04:00
|
|
|
OCA.Trashbin.App = {
|
|
|
|
_initialized: false,
|
|
|
|
|
|
|
|
initialize: function($el) {
|
|
|
|
if (this._initialized) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._initialized = true;
|
2015-11-02 12:30:30 +03:00
|
|
|
var urlParams = OC.Util.History.parseUrlQuery();
|
2014-05-12 21:54:20 +04:00
|
|
|
this.fileList = new OCA.Trashbin.FileList(
|
|
|
|
$('#app-content-trashbin'), {
|
2014-05-20 18:01:34 +04:00
|
|
|
scrollContainer: $('#app-content'),
|
2015-10-08 13:59:13 +03:00
|
|
|
fileActions: this._createFileActions(),
|
2015-11-02 12:30:30 +03:00
|
|
|
detailsViewEnabled: false,
|
2016-04-12 18:10:09 +03:00
|
|
|
scrollTo: urlParams.scrollto,
|
|
|
|
config: OCA.Files.App.getFilesConfig()
|
2014-05-12 21:54:20 +04:00
|
|
|
}
|
|
|
|
);
|
2014-05-09 00:06:30 +04:00
|
|
|
},
|
|
|
|
|
2014-05-20 18:01:34 +04:00
|
|
|
_createFileActions: function() {
|
|
|
|
var fileActions = new OCA.Files.FileActions();
|
|
|
|
fileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function (filename, context) {
|
|
|
|
var dir = context.fileList.getCurrentDirectory();
|
2015-11-18 19:54:00 +03:00
|
|
|
context.fileList.changeDirectory(OC.joinPaths(dir, filename));
|
2014-05-09 00:06:30 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
fileActions.setDefault('dir', 'Open');
|
|
|
|
|
2015-10-12 12:27:23 +03:00
|
|
|
fileActions.registerAction({
|
|
|
|
name: 'Restore',
|
|
|
|
displayName: t('files_trashbin', 'Restore'),
|
|
|
|
type: OCA.Files.FileActions.TYPE_INLINE,
|
|
|
|
mime: 'all',
|
|
|
|
permissions: OC.PERMISSION_READ,
|
2016-02-17 13:04:29 +03:00
|
|
|
iconClass: 'icon-history',
|
2015-10-12 12:27:23 +03:00
|
|
|
actionHandler: function(filename, context) {
|
|
|
|
var fileList = context.fileList;
|
|
|
|
var tr = fileList.findFileEl(filename);
|
|
|
|
var deleteAction = tr.children("td.date").children(".action.delete");
|
|
|
|
deleteAction.removeClass('icon-delete').addClass('icon-loading-small');
|
|
|
|
fileList.disableActions();
|
|
|
|
$.post(OC.filePath('files_trashbin', 'ajax', 'undelete.php'), {
|
|
|
|
files: JSON.stringify([filename]),
|
|
|
|
dir: fileList.getCurrentDirectory()
|
|
|
|
},
|
|
|
|
_.bind(fileList._removeCallback, fileList)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
2014-05-09 00:06:30 +04:00
|
|
|
|
2014-11-24 18:26:50 +03:00
|
|
|
fileActions.registerAction({
|
|
|
|
name: 'Delete',
|
2015-09-22 15:52:52 +03:00
|
|
|
displayName: t('files', 'Delete'),
|
2014-11-24 18:26:50 +03:00
|
|
|
mime: 'all',
|
|
|
|
permissions: OC.PERMISSION_READ,
|
2016-02-17 13:04:29 +03:00
|
|
|
iconClass: 'icon-delete',
|
2014-11-24 18:26:50 +03:00
|
|
|
render: function(actionSpec, isDefault, context) {
|
|
|
|
var $actionLink = fileActions._makeActionLink(actionSpec, context);
|
2015-01-11 19:15:58 +03:00
|
|
|
$actionLink.attr('original-title', t('files_trashbin', 'Delete permanently'));
|
|
|
|
$actionLink.children('img').attr('alt', t('files_trashbin', 'Delete permanently'));
|
2014-11-24 18:26:50 +03:00
|
|
|
context.$file.find('td:last').append($actionLink);
|
|
|
|
return $actionLink;
|
|
|
|
},
|
|
|
|
actionHandler: function(filename, context) {
|
|
|
|
var fileList = context.fileList;
|
|
|
|
$('.tipsy').remove();
|
|
|
|
var tr = fileList.findFileEl(filename);
|
|
|
|
var deleteAction = tr.children("td.date").children(".action.delete");
|
|
|
|
deleteAction.removeClass('icon-delete').addClass('icon-loading-small');
|
|
|
|
fileList.disableActions();
|
|
|
|
$.post(OC.filePath('files_trashbin', 'ajax', 'delete.php'), {
|
|
|
|
files: JSON.stringify([filename]),
|
|
|
|
dir: fileList.getCurrentDirectory()
|
|
|
|
},
|
|
|
|
_.bind(fileList._removeCallback, fileList)
|
|
|
|
);
|
|
|
|
}
|
2014-05-09 00:06:30 +04:00
|
|
|
});
|
2014-05-20 18:01:34 +04:00
|
|
|
return fileActions;
|
2014-05-09 00:06:30 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
2014-05-12 21:54:20 +04:00
|
|
|
$('#app-content-trashbin').one('show', function() {
|
2014-05-09 00:06:30 +04:00
|
|
|
var App = OCA.Trashbin.App;
|
|
|
|
App.initialize($('#app-content-trashbin'));
|
|
|
|
// force breadcrumb init
|
|
|
|
// App.fileList.changeDirectory(App.fileList.getCurrentDirectory(), false, true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|