1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import './trashbin.scss'
import { translate as t } from '@nextcloud/l10n'
import DeleteSvg from '@mdi/svg/svg/delete.svg?raw'
import { getContents } from './services/trashbin'
import { columns } from './columns.ts'
// Register restore action
import './actions/restoreAction'
import { View, getNavigation } from '@nextcloud/files'
const Navigation = getNavigation()
Navigation.register(new View({
id: 'trashbin',
name: t('files_trashbin', 'Deleted files'),
caption: t('files_trashbin', 'List of files that have been deleted.'),
emptyTitle: t('files_trashbin', 'No deleted files'),
emptyCaption: t('files_trashbin', 'Files and folders you have deleted will show up here'),
icon: DeleteSvg,
order: 50,
sticky: true,
defaultSortKey: 'deleted',
columns,
getContents,
}))
|