Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat(files): add rename action
Signed-off-by: John Molakvoæ <[email protected]>
  • Loading branch information
skjnldsv committed May 4, 2023
commit 3951c7b3c7cc3fc6de134261ae18ff23d120484a
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æ <[email protected]>
*
* @author John Molakvoæ <[email protected]>
*
* @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