fileactions.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832
  1. /*
  2. * Copyright (c) 2014
  3. *
  4. * This file is licensed under the Affero General Public License version 3
  5. * or later.
  6. *
  7. * See the COPYING-README file.
  8. *
  9. */
  10. (function() {
  11. /**
  12. * Construct a new FileActions instance
  13. * @constructs FileActions
  14. * @memberof OCA.Files
  15. */
  16. var FileActions = function() {
  17. this.initialize();
  18. };
  19. FileActions.TYPE_DROPDOWN = 0;
  20. FileActions.TYPE_INLINE = 1;
  21. FileActions.prototype = {
  22. /** @lends FileActions.prototype */
  23. actions: {},
  24. defaults: {},
  25. icons: {},
  26. /**
  27. * @deprecated
  28. */
  29. currentFile: null,
  30. /**
  31. * Dummy jquery element, for events
  32. */
  33. $el: null,
  34. _fileActionTriggerTemplate: null,
  35. /**
  36. * @private
  37. */
  38. initialize: function() {
  39. this.clear();
  40. // abusing jquery for events until we get a real event lib
  41. this.$el = $('<div class="dummy-fileactions hidden"></div>');
  42. $('body').append(this.$el);
  43. this._showMenuClosure = _.bind(this._showMenu, this);
  44. },
  45. /**
  46. * Adds an event handler
  47. *
  48. * @param {String} eventName event name
  49. * @param {Function} callback
  50. */
  51. on: function(eventName, callback) {
  52. this.$el.on(eventName, callback);
  53. },
  54. /**
  55. * Removes an event handler
  56. *
  57. * @param {String} eventName event name
  58. * @param {Function} callback
  59. */
  60. off: function(eventName, callback) {
  61. this.$el.off(eventName, callback);
  62. },
  63. /**
  64. * Notifies the event handlers
  65. *
  66. * @param {String} eventName event name
  67. * @param {Object} data data
  68. */
  69. _notifyUpdateListeners: function(eventName, data) {
  70. this.$el.trigger(new $.Event(eventName, data));
  71. },
  72. /**
  73. * Merges the actions from the given fileActions into
  74. * this instance.
  75. *
  76. * @param {OCA.Files.FileActions} fileActions instance of OCA.Files.FileActions
  77. */
  78. merge: function(fileActions) {
  79. var self = this;
  80. // merge first level to avoid unintended overwriting
  81. _.each(fileActions.actions, function(sourceMimeData, mime) {
  82. var targetMimeData = self.actions[mime];
  83. if (!targetMimeData) {
  84. targetMimeData = {};
  85. }
  86. self.actions[mime] = _.extend(targetMimeData, sourceMimeData);
  87. });
  88. this.defaults = _.extend(this.defaults, fileActions.defaults);
  89. this.icons = _.extend(this.icons, fileActions.icons);
  90. },
  91. /**
  92. * @deprecated use #registerAction() instead
  93. */
  94. register: function(mime, name, permissions, icon, action, displayName) {
  95. return this.registerAction({
  96. name: name,
  97. mime: mime,
  98. permissions: permissions,
  99. icon: icon,
  100. actionHandler: action,
  101. displayName: displayName || name
  102. });
  103. },
  104. /**
  105. * Register action
  106. *
  107. * @param {OCA.Files.FileAction} action object
  108. */
  109. registerAction: function (action) {
  110. var mime = action.mime;
  111. var name = action.name;
  112. var actionSpec = {
  113. action: function(fileName, context) {
  114. // Actions registered in one FileAction may be executed on a
  115. // different one (for example, due to the "merge" function),
  116. // so the listeners have to be updated on the FileActions
  117. // from the context instead of on the one in which it was
  118. // originally registered.
  119. if (context && context.fileActions) {
  120. context.fileActions._notifyUpdateListeners('beforeTriggerAction', {action: actionSpec, fileName: fileName, context: context});
  121. }
  122. action.actionHandler(fileName, context);
  123. if (context && context.fileActions) {
  124. context.fileActions._notifyUpdateListeners('afterTriggerAction', {action: actionSpec, fileName: fileName, context: context});
  125. }
  126. },
  127. name: name,
  128. displayName: action.displayName,
  129. mime: mime,
  130. order: action.order || 0,
  131. icon: action.icon,
  132. iconClass: action.iconClass,
  133. permissions: action.permissions,
  134. type: action.type || FileActions.TYPE_DROPDOWN,
  135. altText: action.altText || ''
  136. };
  137. if (_.isUndefined(action.displayName)) {
  138. actionSpec.displayName = t('files', name);
  139. }
  140. if (_.isFunction(action.render)) {
  141. actionSpec.render = action.render;
  142. }
  143. if (!this.actions[mime]) {
  144. this.actions[mime] = {};
  145. }
  146. this.actions[mime][name] = actionSpec;
  147. this.icons[name] = action.icon;
  148. this._notifyUpdateListeners('registerAction', {action: action});
  149. },
  150. /**
  151. * Clears all registered file actions.
  152. */
  153. clear: function() {
  154. this.actions = {};
  155. this.defaults = {};
  156. this.icons = {};
  157. this.currentFile = null;
  158. },
  159. /**
  160. * Sets the default action for a given mime type.
  161. *
  162. * @param {String} mime mime type
  163. * @param {String} name action name
  164. */
  165. setDefault: function (mime, name) {
  166. this.defaults[mime] = name;
  167. this._notifyUpdateListeners('setDefault', {defaultAction: {mime: mime, name: name}});
  168. },
  169. /**
  170. * Returns a map of file actions handlers matching the given conditions
  171. *
  172. * @param {string} mime mime type
  173. * @param {string} type "dir" or "file"
  174. * @param {int} permissions permissions
  175. *
  176. * @return {Object.<string,OCA.Files.FileActions~actionHandler>} map of action name to action spec
  177. */
  178. get: function (mime, type, permissions) {
  179. var actions = this.getActions(mime, type, permissions);
  180. var filteredActions = {};
  181. $.each(actions, function (name, action) {
  182. filteredActions[name] = action.action;
  183. });
  184. return filteredActions;
  185. },
  186. /**
  187. * Returns an array of file actions matching the given conditions
  188. *
  189. * @param {string} mime mime type
  190. * @param {string} type "dir" or "file"
  191. * @param {int} permissions permissions
  192. *
  193. * @return {Array.<OCA.Files.FileAction>} array of action specs
  194. */
  195. getActions: function (mime, type, permissions) {
  196. var actions = {};
  197. if (this.actions.all) {
  198. actions = $.extend(actions, this.actions.all);
  199. }
  200. if (type) {//type is 'dir' or 'file'
  201. if (this.actions[type]) {
  202. actions = $.extend(actions, this.actions[type]);
  203. }
  204. }
  205. if (mime) {
  206. var mimePart = mime.substr(0, mime.indexOf('/'));
  207. if (this.actions[mimePart]) {
  208. actions = $.extend(actions, this.actions[mimePart]);
  209. }
  210. if (this.actions[mime]) {
  211. actions = $.extend(actions, this.actions[mime]);
  212. }
  213. }
  214. var filteredActions = {};
  215. $.each(actions, function (name, action) {
  216. if ((action.permissions === OC.PERMISSION_NONE) || (action.permissions & permissions)) {
  217. filteredActions[name] = action;
  218. }
  219. });
  220. return filteredActions;
  221. },
  222. /**
  223. * Returns the default file action handler for the given conditions
  224. *
  225. * @param {string} mime mime type
  226. * @param {string} type "dir" or "file"
  227. * @param {int} permissions permissions
  228. *
  229. * @return {OCA.Files.FileActions~actionHandler} action handler
  230. *
  231. * @deprecated use getDefaultFileAction instead
  232. */
  233. getDefault: function (mime, type, permissions) {
  234. var defaultActionSpec = this.getDefaultFileAction(mime, type, permissions);
  235. if (defaultActionSpec) {
  236. return defaultActionSpec.action;
  237. }
  238. return undefined;
  239. },
  240. /**
  241. * Returns the default file action handler for the current file
  242. *
  243. * @return {OCA.Files.FileActions~actionSpec} action spec
  244. * @since 8.2
  245. */
  246. getCurrentDefaultFileAction: function() {
  247. var mime = this.getCurrentMimeType();
  248. var type = this.getCurrentType();
  249. var permissions = this.getCurrentPermissions();
  250. return this.getDefaultFileAction(mime, type, permissions);
  251. },
  252. /**
  253. * Returns the default file action handler for the given conditions
  254. *
  255. * @param {string} mime mime type
  256. * @param {string} type "dir" or "file"
  257. * @param {int} permissions permissions
  258. *
  259. * @return {OCA.Files.FileActions~actionSpec} action spec
  260. * @since 8.2
  261. */
  262. getDefaultFileAction: function(mime, type, permissions) {
  263. var mimePart;
  264. if (mime) {
  265. mimePart = mime.substr(0, mime.indexOf('/'));
  266. }
  267. var name = false;
  268. if (mime && this.defaults[mime]) {
  269. name = this.defaults[mime];
  270. } else if (mime && this.defaults[mimePart]) {
  271. name = this.defaults[mimePart];
  272. } else if (type && this.defaults[type]) {
  273. name = this.defaults[type];
  274. } else {
  275. name = this.defaults.all;
  276. }
  277. var actions = this.getActions(mime, type, permissions);
  278. return actions[name];
  279. },
  280. /**
  281. * Default function to render actions
  282. *
  283. * @param {OCA.Files.FileAction} actionSpec file action spec
  284. * @param {boolean} isDefault true if the action is a default one,
  285. * false otherwise
  286. * @param {OCA.Files.FileActionContext} context action context
  287. */
  288. _defaultRenderAction: function(actionSpec, isDefault, context) {
  289. if (!isDefault) {
  290. var params = {
  291. name: actionSpec.name,
  292. nameLowerCase: actionSpec.name.toLowerCase(),
  293. displayName: actionSpec.displayName,
  294. icon: actionSpec.icon,
  295. iconClass: actionSpec.iconClass,
  296. altText: actionSpec.altText,
  297. hasDisplayName: !!actionSpec.displayName
  298. };
  299. if (_.isFunction(actionSpec.icon)) {
  300. params.icon = actionSpec.icon(context.$file.attr('data-file'), context);
  301. }
  302. if (_.isFunction(actionSpec.iconClass)) {
  303. params.iconClass = actionSpec.iconClass(context.$file.attr('data-file'), context);
  304. }
  305. var $actionLink = this._makeActionLink(params, context);
  306. context.$file.find('a.name>span.fileactions').append($actionLink);
  307. $actionLink.addClass('permanent');
  308. return $actionLink;
  309. }
  310. },
  311. /**
  312. * Renders the action link element
  313. *
  314. * @param {Object} params action params
  315. */
  316. _makeActionLink: function(params) {
  317. return $(OCA.Files.Templates['file_action_trigger'](params));
  318. },
  319. /**
  320. * Displays the file actions dropdown menu
  321. *
  322. * @param {string} fileName file name
  323. * @param {OCA.Files.FileActionContext} context rendering context
  324. */
  325. _showMenu: function(fileName, context) {
  326. var menu;
  327. var $trigger = context.$file.closest('tr').find('.fileactions .action-menu');
  328. $trigger.addClass('open');
  329. menu = new OCA.Files.FileActionsMenu();
  330. context.$file.find('td.filename').append(menu.$el);
  331. menu.$el.on('afterHide', function() {
  332. context.$file.removeClass('mouseOver');
  333. $trigger.removeClass('open');
  334. menu.remove();
  335. });
  336. context.$file.addClass('mouseOver');
  337. menu.show(context);
  338. },
  339. /**
  340. * Renders the menu trigger on the given file list row
  341. *
  342. * @param {Object} $tr file list row element
  343. * @param {OCA.Files.FileActionContext} context rendering context
  344. */
  345. _renderMenuTrigger: function($tr, context) {
  346. // remove previous
  347. $tr.find('.action-menu').remove();
  348. var $el = this._renderInlineAction({
  349. name: 'menu',
  350. displayName: '',
  351. iconClass: 'icon-more',
  352. altText: t('files', 'Actions'),
  353. action: this._showMenuClosure
  354. }, false, context);
  355. $el.addClass('permanent');
  356. },
  357. /**
  358. * Renders the action element by calling actionSpec.render() and
  359. * registers the click event to process the action.
  360. *
  361. * @param {OCA.Files.FileAction} actionSpec file action to render
  362. * @param {boolean} isDefault true if the action is a default action,
  363. * false otherwise
  364. * @param {OCA.Files.FileActionContext} context rendering context
  365. */
  366. _renderInlineAction: function(actionSpec, isDefault, context) {
  367. var renderFunc = actionSpec.render || _.bind(this._defaultRenderAction, this);
  368. var $actionEl = renderFunc(actionSpec, isDefault, context);
  369. if (!$actionEl || !$actionEl.length) {
  370. return;
  371. }
  372. $actionEl.on(
  373. 'click', {
  374. a: null
  375. },
  376. function(event) {
  377. event.stopPropagation();
  378. event.preventDefault();
  379. if ($actionEl.hasClass('open')) {
  380. return;
  381. }
  382. var $file = $(event.target).closest('tr');
  383. if ($file.hasClass('busy')) {
  384. return;
  385. }
  386. var currentFile = $file.find('td.filename');
  387. var fileName = $file.attr('data-file');
  388. context.fileActions.currentFile = currentFile;
  389. var callContext = _.extend({}, context);
  390. if (!context.dir && context.fileList) {
  391. callContext.dir = $file.attr('data-path') || context.fileList.getCurrentDirectory();
  392. }
  393. if (!context.fileInfoModel && context.fileList) {
  394. callContext.fileInfoModel = context.fileList.getModelForFile(fileName);
  395. if (!callContext.fileInfoModel) {
  396. console.warn('No file info model found for file "' + fileName + '"');
  397. }
  398. }
  399. actionSpec.action(
  400. fileName,
  401. callContext
  402. );
  403. }
  404. );
  405. $actionEl.tooltip({placement:'top'});
  406. return $actionEl;
  407. },
  408. /**
  409. * Trigger the given action on the given file.
  410. *
  411. * @param {string} actionName action name
  412. * @param {OCA.Files.FileInfoModel} fileInfoModel file info model
  413. * @param {OCA.Files.FileList} [fileList] file list, for compatibility with older action handlers [DEPRECATED]
  414. *
  415. * @return {boolean} true if the action handler was called, false otherwise
  416. *
  417. * @since 8.2
  418. */
  419. triggerAction: function(actionName, fileInfoModel, fileList) {
  420. var actionFunc;
  421. var actions = this.get(
  422. fileInfoModel.get('mimetype'),
  423. fileInfoModel.isDirectory() ? 'dir' : 'file',
  424. fileInfoModel.get('permissions')
  425. );
  426. if (actionName) {
  427. actionFunc = actions[actionName];
  428. } else {
  429. actionFunc = this.getDefault(
  430. fileInfoModel.get('mimetype'),
  431. fileInfoModel.isDirectory() ? 'dir' : 'file',
  432. fileInfoModel.get('permissions')
  433. );
  434. }
  435. if (!actionFunc) {
  436. actionFunc = actions['Download'];
  437. }
  438. if (!actionFunc) {
  439. return false;
  440. }
  441. var context = {
  442. fileActions: this,
  443. fileInfoModel: fileInfoModel,
  444. dir: fileInfoModel.get('path')
  445. };
  446. var fileName = fileInfoModel.get('name');
  447. this.currentFile = fileName;
  448. if (fileList) {
  449. // compatibility with action handlers that expect these
  450. context.fileList = fileList;
  451. context.$file = fileList.findFileEl(fileName);
  452. }
  453. actionFunc(fileName, context);
  454. },
  455. /**
  456. * Display file actions for the given element
  457. * @param parent "td" element of the file for which to display actions
  458. * @param triggerEvent if true, triggers the fileActionsReady on the file
  459. * list afterwards (false by default)
  460. * @param fileList OCA.Files.FileList instance on which the action is
  461. * done, defaults to OCA.Files.App.fileList
  462. */
  463. display: function (parent, triggerEvent, fileList) {
  464. if (!fileList) {
  465. console.warn('FileActions.display() MUST be called with a OCA.Files.FileList instance');
  466. return;
  467. }
  468. this.currentFile = parent;
  469. var self = this;
  470. var $tr = parent.closest('tr');
  471. var actions = this.getActions(
  472. this.getCurrentMimeType(),
  473. this.getCurrentType(),
  474. this.getCurrentPermissions()
  475. );
  476. var nameLinks;
  477. if ($tr.data('renaming')) {
  478. return;
  479. }
  480. // recreate fileactions container
  481. nameLinks = parent.children('a.name');
  482. nameLinks.find('.fileactions, .nametext .action').remove();
  483. nameLinks.append('<span class="fileactions" />');
  484. var defaultAction = this.getDefaultFileAction(
  485. this.getCurrentMimeType(),
  486. this.getCurrentType(),
  487. this.getCurrentPermissions()
  488. );
  489. var context = {
  490. $file: $tr,
  491. fileActions: this,
  492. fileList: fileList
  493. };
  494. $.each(actions, function (name, actionSpec) {
  495. if (actionSpec.type === FileActions.TYPE_INLINE) {
  496. self._renderInlineAction(
  497. actionSpec,
  498. defaultAction && actionSpec.name === defaultAction.name,
  499. context
  500. );
  501. }
  502. });
  503. function objectValues(obj) {
  504. var res = [];
  505. for (var i in obj) {
  506. if (obj.hasOwnProperty(i)) {
  507. res.push(obj[i]);
  508. }
  509. }
  510. return res;
  511. }
  512. // polyfill
  513. if (!Object.values) {
  514. Object.values = objectValues;
  515. }
  516. var menuActions = Object.values(this.actions.all).filter(function (action) {
  517. return action.type !== OCA.Files.FileActions.TYPE_INLINE;
  518. });
  519. // do not render the menu if nothing is in it
  520. if (menuActions.length > 0) {
  521. this._renderMenuTrigger($tr, context);
  522. }
  523. if (triggerEvent){
  524. fileList.$fileList.trigger(jQuery.Event("fileActionsReady", {fileList: fileList, $files: $tr}));
  525. }
  526. },
  527. getCurrentFile: function () {
  528. return this.currentFile.parent().attr('data-file');
  529. },
  530. getCurrentMimeType: function () {
  531. return this.currentFile.parent().attr('data-mime');
  532. },
  533. getCurrentType: function () {
  534. return this.currentFile.parent().attr('data-type');
  535. },
  536. getCurrentPermissions: function () {
  537. return this.currentFile.parent().data('permissions');
  538. },
  539. /**
  540. * Register the actions that are used by default for the files app.
  541. */
  542. registerDefaultActions: function() {
  543. this.registerAction({
  544. name: 'Download',
  545. displayName: t('files', 'Download'),
  546. order: -20,
  547. mime: 'all',
  548. permissions: OC.PERMISSION_READ,
  549. iconClass: 'icon-download',
  550. actionHandler: function (filename, context) {
  551. var dir = context.dir || context.fileList.getCurrentDirectory();
  552. var isDir = context.$file.attr('data-type') === 'dir';
  553. var url = context.fileList.getDownloadUrl(filename, dir, isDir);
  554. var downloadFileaction = $(context.$file).find('.fileactions .action-download');
  555. // don't allow a second click on the download action
  556. if(downloadFileaction.hasClass('disabled')) {
  557. return;
  558. }
  559. if (url) {
  560. var disableLoadingState = function() {
  561. context.fileList.showFileBusyState(filename, false);
  562. };
  563. context.fileList.showFileBusyState(filename, true);
  564. OCA.Files.Files.handleDownload(url, disableLoadingState);
  565. }
  566. }
  567. });
  568. this.registerAction({
  569. name: 'Rename',
  570. displayName: t('files', 'Rename'),
  571. mime: 'all',
  572. order: -30,
  573. permissions: OC.PERMISSION_UPDATE,
  574. iconClass: 'icon-rename',
  575. actionHandler: function (filename, context) {
  576. context.fileList.rename(filename);
  577. }
  578. });
  579. this.registerAction({
  580. name: 'MoveCopy',
  581. displayName: function(context) {
  582. var permissions = context.fileInfoModel.attributes.permissions;
  583. if (permissions & OC.PERMISSION_UPDATE) {
  584. return t('files', 'Move or copy');
  585. }
  586. return t('files', 'Copy');
  587. },
  588. mime: 'all',
  589. order: -25,
  590. permissions: $('#isPublic').val() ? OC.PERMISSION_UPDATE : OC.PERMISSION_READ,
  591. iconClass: 'icon-external',
  592. actionHandler: function (filename, context) {
  593. var permissions = context.fileInfoModel.attributes.permissions;
  594. var actions = OC.dialogs.FILEPICKER_TYPE_COPY;
  595. if (permissions & OC.PERMISSION_UPDATE) {
  596. actions = OC.dialogs.FILEPICKER_TYPE_COPY_MOVE;
  597. }
  598. var dialogDir = context.dir;
  599. if (typeof context.fileList.dirInfo.dirLastCopiedTo !== 'undefined') {
  600. dialogDir = context.fileList.dirInfo.dirLastCopiedTo;
  601. }
  602. OC.dialogs.filepicker(t('files', 'Choose target folder'), function(targetPath, type) {
  603. if (type === OC.dialogs.FILEPICKER_TYPE_COPY) {
  604. context.fileList.copy(filename, targetPath, false, context.dir);
  605. }
  606. if (type === OC.dialogs.FILEPICKER_TYPE_MOVE) {
  607. context.fileList.move(filename, targetPath, false, context.dir);
  608. }
  609. context.fileList.dirInfo.dirLastCopiedTo = targetPath;
  610. }, false, "httpd/unix-directory", true, actions, dialogDir);
  611. }
  612. });
  613. this.registerAction({
  614. name: 'Open',
  615. mime: 'dir',
  616. permissions: OC.PERMISSION_READ,
  617. icon: '',
  618. actionHandler: function (filename, context) {
  619. var dir = context.$file.attr('data-path') || context.fileList.getCurrentDirectory();
  620. if (OCA.Files.App && OCA.Files.App.getActiveView() !== 'files') {
  621. OCA.Files.App.setActiveView('files', {silent: true});
  622. OCA.Files.App.fileList.changeDirectory(OC.joinPaths(dir, filename), true, true);
  623. } else {
  624. context.fileList.changeDirectory(OC.joinPaths(dir, filename), true, false, parseInt(context.$file.attr('data-id'), 10));
  625. }
  626. },
  627. displayName: t('files', 'Open')
  628. });
  629. this.registerAction({
  630. name: 'Delete',
  631. displayName: function(context) {
  632. var mountType = context.$file.attr('data-mounttype');
  633. var type = context.$file.attr('data-type');
  634. var deleteTitle = (type && type === 'file')
  635. ? t('files', 'Delete file')
  636. : t('files', 'Delete folder')
  637. if (mountType === 'external-root') {
  638. deleteTitle = t('files', 'Disconnect storage');
  639. } else if (mountType === 'shared-root') {
  640. deleteTitle = t('files', 'Leave this share');
  641. }
  642. return deleteTitle;
  643. },
  644. mime: 'all',
  645. order: 1000,
  646. // permission is READ because we show a hint instead if there is no permission
  647. permissions: OC.PERMISSION_DELETE,
  648. iconClass: 'icon-delete',
  649. actionHandler: function(fileName, context) {
  650. // if there is no permission to delete do nothing
  651. if((context.$file.data('permissions') & OC.PERMISSION_DELETE) === 0) {
  652. return;
  653. }
  654. context.fileList.do_delete(fileName, context.dir);
  655. $('.tipsy').remove();
  656. // close sidebar on delete
  657. const path = context.dir + '/' + fileName
  658. if (OCA.Files.Sidebar && OCA.Files.Sidebar.file === path) {
  659. OCA.Files.Sidebar.close()
  660. }
  661. }
  662. });
  663. this.setDefault('dir', 'Open');
  664. }
  665. };
  666. OCA.Files.FileActions = FileActions;
  667. /**
  668. * Replaces the button icon with a loading spinner and vice versa
  669. * - also adds the class disabled to the passed in element
  670. *
  671. * @param {jQuery} $buttonElement The button element
  672. * @param {boolean} showIt whether to show the spinner(true) or to hide it(false)
  673. */
  674. OCA.Files.FileActions.updateFileActionSpinner = function($buttonElement, showIt) {
  675. var $icon = $buttonElement.find('.icon');
  676. if (showIt) {
  677. var $loadingIcon = $('<span class="icon icon-loading-small"></span>');
  678. $icon.after($loadingIcon);
  679. $icon.addClass('hidden');
  680. } else {
  681. $buttonElement.find('.icon-loading-small').remove();
  682. $buttonElement.find('.icon').removeClass('hidden');
  683. }
  684. };
  685. /**
  686. * File action attributes.
  687. *
  688. * @todo make this a real class in the future
  689. * @typedef {Object} OCA.Files.FileAction
  690. *
  691. * @property {String} name identifier of the action
  692. * @property {(String|OCA.Files.FileActions~displayNameFunction)} displayName
  693. * display name string for the action, or function that returns the display name.
  694. * Defaults to the name given in name property
  695. * @property {String} mime mime type
  696. * @property {int} permissions permissions
  697. * @property {(Function|String)} icon icon path to the icon or function that returns it (deprecated, use iconClass instead)
  698. * @property {(String|OCA.Files.FileActions~iconClassFunction)} iconClass class name of the icon (recommended for theming)
  699. * @property {OCA.Files.FileActions~renderActionFunction} [render] optional rendering function
  700. * @property {OCA.Files.FileActions~actionHandler} actionHandler action handler function
  701. */
  702. /**
  703. * File action context attributes.
  704. *
  705. * @typedef {Object} OCA.Files.FileActionContext
  706. *
  707. * @property {Object} $file jQuery file row element
  708. * @property {OCA.Files.FileActions} fileActions file actions object
  709. * @property {OCA.Files.FileList} fileList file list object
  710. */
  711. /**
  712. * Render function for actions.
  713. * The function must render a link element somewhere in the DOM
  714. * and return it. The function should NOT register the event handler
  715. * as this will be done after the link was returned.
  716. *
  717. * @callback OCA.Files.FileActions~renderActionFunction
  718. * @param {OCA.Files.FileAction} actionSpec action definition
  719. * @param {Object} $row row container
  720. * @param {boolean} isDefault true if the action is the default one,
  721. * false otherwise
  722. * @return {Object} jQuery link object
  723. */
  724. /**
  725. * Display name function for actions.
  726. * The function returns the display name of the action using
  727. * the given context information..
  728. *
  729. * @callback OCA.Files.FileActions~displayNameFunction
  730. * @param {OCA.Files.FileActionContext} context action context
  731. * @return {String} display name
  732. */
  733. /**
  734. * Icon class function for actions.
  735. * The function returns the icon class of the action using
  736. * the given context information.
  737. *
  738. * @callback OCA.Files.FileActions~iconClassFunction
  739. * @param {String} fileName name of the file on which the action must be performed
  740. * @param {OCA.Files.FileActionContext} context action context
  741. * @return {String} icon class
  742. */
  743. /**
  744. * Action handler function for file actions
  745. *
  746. * @callback OCA.Files.FileActions~actionHandler
  747. * @param {String} fileName name of the file on which the action must be performed
  748. * @param context context
  749. * @param {String} context.dir directory of the file
  750. * @param {OCA.Files.FileInfoModel} fileInfoModel file info model
  751. * @param {Object} [context.$file] jQuery element of the file [DEPRECATED]
  752. * @param {OCA.Files.FileList} [context.fileList] the FileList instance on which the action occurred [DEPRECATED]
  753. * @param {OCA.Files.FileActions} context.fileActions the FileActions instance on which the action occurred
  754. */
  755. // global file actions to be used by all lists
  756. OCA.Files.fileActions = new OCA.Files.FileActions();
  757. })();