aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_trashbin/js/app.js')
-rw-r--r--apps/files_trashbin/js/app.js108
1 files changed, 0 insertions, 108 deletions
diff --git a/apps/files_trashbin/js/app.js b/apps/files_trashbin/js/app.js
deleted file mode 100644
index 771ea90bc16..00000000000
--- a/apps/files_trashbin/js/app.js
+++ /dev/null
@@ -1,108 +0,0 @@
-/*
- * 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,
-
- initialize: function($el) {
- if (this._initialized) {
- return;
- }
- this._initialized = true;
- var urlParams = OC.Util.History.parseUrlQuery();
- this.fileList = new OCA.Trashbin.FileList(
- $('#app-content-trashbin'), {
- scrollContainer: $('#app-content'),
- fileActions: this._createFileActions(),
- detailsViewEnabled: false,
- scrollTo: urlParams.scrollto
- }
- );
- },
-
- _createFileActions: function() {
- var fileActions = new OCA.Files.FileActions();
- fileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function (filename, context) {
- var 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) {
- 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)
- );
- }
- });
-
- fileActions.registerAction({
- name: 'Delete',
- displayName: t('files', 'Delete'),
- mime: 'all',
- permissions: OC.PERMISSION_READ,
- iconClass: 'icon-delete',
- render: function(actionSpec, isDefault, context) {
- var $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) {
- 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)
- );
- }
- });
- return fileActions;
- }
-};
-
-$(document).ready(function() {
- $('#app-content-trashbin').one('show', function() {
- var App = OCA.Trashbin.App;
- App.initialize($('#app-content-trashbin'));
- // force breadcrumb init
- // App.fileList.changeDirectory(App.fileList.getCurrentDirectory(), false, true);
- });
-});
-