137 lines
4.0 KiB
JavaScript
137 lines
4.0 KiB
JavaScript
/**
|
|
* Copyright (c) 2014
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3
|
|
* or later.
|
|
*
|
|
* See the COPYING-README file.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @namespace OCA.Trashbin
|
|
*/
|
|
OCA.Trashbin = {}
|
|
/**
|
|
* @namespace OCA.Trashbin.App
|
|
*/
|
|
OCA.Trashbin.App = {
|
|
_initialized: false,
|
|
/** @type {OC.Files.Client} */
|
|
client: null,
|
|
|
|
initialize: function($el) {
|
|
if (this._initialized) {
|
|
return
|
|
}
|
|
this._initialized = true
|
|
|
|
this.client = new OC.Files.Client({
|
|
host: OC.getHost(),
|
|
port: OC.getPort(),
|
|
root: OC.linkToRemoteBase('dav') + '/trashbin/' + OC.getCurrentUser().uid,
|
|
useHTTPS: OC.getProtocol() === 'https',
|
|
})
|
|
const urlParams = OC.Util.History.parseUrlQuery()
|
|
this.fileList = new OCA.Trashbin.FileList(
|
|
$('#app-content-trashbin'), {
|
|
fileActions: this._createFileActions(),
|
|
detailsViewEnabled: false,
|
|
scrollTo: urlParams.scrollto,
|
|
config: OCA.Files.App.getFilesConfig(),
|
|
multiSelectMenu: [
|
|
{
|
|
name: 'restore',
|
|
displayName: t('files_trashbin', 'Restore'),
|
|
iconClass: 'icon-history',
|
|
},
|
|
{
|
|
name: 'delete',
|
|
displayName: t('files_trashbin', 'Delete permanently'),
|
|
iconClass: 'icon-delete',
|
|
},
|
|
],
|
|
client: this.client,
|
|
// The file list is created when a "show" event is handled, so
|
|
// it should be marked as "shown" like it would have been done
|
|
// if handling the event with the file list already created.
|
|
shown: true,
|
|
}
|
|
)
|
|
},
|
|
|
|
_createFileActions: function() {
|
|
const client = this.client
|
|
const fileActions = new OCA.Files.FileActions()
|
|
fileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function(filename, context) {
|
|
const dir = context.fileList.getCurrentDirectory()
|
|
context.fileList.changeDirectory(OC.joinPaths(dir, filename))
|
|
})
|
|
|
|
fileActions.setDefault('dir', 'Open')
|
|
|
|
fileActions.registerAction({
|
|
name: 'Restore',
|
|
displayName: t('files_trashbin', 'Restore'),
|
|
type: OCA.Files.FileActions.TYPE_INLINE,
|
|
mime: 'all',
|
|
permissions: OC.PERMISSION_READ,
|
|
iconClass: 'icon-history',
|
|
actionHandler: function(filename, context) {
|
|
const fileList = context.fileList
|
|
const tr = fileList.findFileEl(filename)
|
|
fileList.showFileBusyState(tr, true)
|
|
const dir = context.fileList.getCurrentDirectory()
|
|
client.move(OC.joinPaths('trash', dir, filename), OC.joinPaths('restore', filename), true)
|
|
.then(
|
|
fileList._removeCallback.bind(fileList, [filename]),
|
|
function() {
|
|
fileList.showFileBusyState(tr, false)
|
|
OC.Notification.show(t('files_trashbin', 'Error while restoring file from trashbin'))
|
|
}
|
|
)
|
|
},
|
|
})
|
|
|
|
fileActions.registerAction({
|
|
name: 'Delete',
|
|
displayName: t('files_trashbin', 'Delete permanently'),
|
|
mime: 'all',
|
|
permissions: OC.PERMISSION_READ,
|
|
iconClass: 'icon-delete',
|
|
render: function(actionSpec, isDefault, context) {
|
|
const $actionLink = fileActions._makeActionLink(actionSpec, context)
|
|
$actionLink.attr('original-title', t('files_trashbin', 'Delete permanently'))
|
|
$actionLink.children('img').attr('alt', t('files_trashbin', 'Delete permanently'))
|
|
context.$file.find('td:last').append($actionLink)
|
|
return $actionLink
|
|
},
|
|
actionHandler: function(filename, context) {
|
|
const fileList = context.fileList
|
|
$('.tipsy').remove()
|
|
const tr = fileList.findFileEl(filename)
|
|
fileList.showFileBusyState(tr, true)
|
|
const dir = context.fileList.getCurrentDirectory()
|
|
client.remove(OC.joinPaths('trash', dir, filename))
|
|
.then(
|
|
fileList._removeCallback.bind(fileList, [filename]),
|
|
function() {
|
|
fileList.showFileBusyState(tr, false)
|
|
OC.Notification.show(t('files_trashbin', 'Error while removing file from trashbin'))
|
|
}
|
|
)
|
|
},
|
|
})
|
|
return fileActions
|
|
},
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
$('#app-content-trashbin').one('show', function() {
|
|
const App = OCA.Trashbin.App
|
|
App.initialize($('#app-content-trashbin'))
|
|
// force breadcrumb init
|
|
// App.fileList.changeDirectory(App.fileList.getCurrentDirectory(), false, true);
|
|
})
|
|
})
|