Skip to content

Commit

Permalink
feat(files): add rename action
Browse files Browse the repository at this point in the history
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
  • Loading branch information
skjnldsv committed Apr 26, 2023
1 parent ea6601d commit aea80ff
Show file tree
Hide file tree
Showing 11 changed files with 570 additions and 76 deletions.
2 changes: 1 addition & 1 deletion apps/files/src/actions/downloadAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,5 @@ registerFileAction(new FileAction({
return new Array(nodes.length).fill(null)
},

order: 20,
order: 30,
}))
2 changes: 1 addition & 1 deletion apps/files/src/actions/favoriteAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ registerFileAction(new FileAction({
return Promise.all(nodes.map(node => this.exec(node, view)))
},

order: 0,
order: -50,
}))
49 changes: 49 additions & 0 deletions apps/files/src/actions/renameAction.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/**
* @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>
*
* @author John Molakvoæ <skjnldsv@protonmail.com>
*
* @license AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
import { Permission, type Node } from '@nextcloud/files'
import { translate as t } from '@nextcloud/l10n'
import PencilSvg from '@mdi/svg/svg/pencil.svg?raw'

import { emit } from '@nextcloud/event-bus'
import { registerFileAction, FileAction } from '../services/FileAction'

export const ACTION_DETAILS = 'details'

registerFileAction(new FileAction({
id: 'rename',
displayName: () => t('files', 'Rename'),
iconSvgInline: () => PencilSvg,

enabled: (nodes: Node[]) => {
return nodes.length > 0 && nodes
.map(node => node.permissions)
.every(permission => (permission & Permission.UPDATE) !== 0)
},

async exec(node: Node) {
// Renaming is a built-in feature of the files app
emit('files:node:rename', node)
return null
},

order: 10,
}))
2 changes: 1 addition & 1 deletion apps/files/src/actions/sidebarAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ registerFileAction(new FileAction({
},

default: true,
order: -50,
order: 0,
}))
Loading

0 comments on commit aea80ff

Please sign in to comment.