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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import moment from '@nextcloud/moment'
import { Column, Node } from '@nextcloud/files'
import { getCurrentUser } from '@nextcloud/auth'
import { dirname } from '@nextcloud/paths'
import { translate as t } from '@nextcloud/l10n'
import Vue from 'vue'
import NcUserBubble from '@nextcloud/vue/dist/Components/NcUserBubble.js'
const parseOriginalLocation = (node: Node): string => {
const path = node.attributes?.['trashbin-original-location'] !== undefined ? String(node.attributes?.['trashbin-original-location']) : null
if (!path) {
return t('files_trashbin', 'Unknown')
}
const dir = dirname(path)
if (dir === path) { // Node is in root folder
return t('files_trashbin', 'All files')
}
return dir.replace(/^\//, '')
}
interface DeletedBy {
userId: null | string
displayName: null | string
label: null | string
}
const generateLabel = (userId: null | string, displayName: null | string) => {
const currentUserId = getCurrentUser()?.uid
if (userId === currentUserId) {
return t('files_trashbin', 'You')
}
if (!userId && !displayName) {
return t('files_trashbin', 'Unknown')
}
return null
}
const parseDeletedBy = (node: Node): DeletedBy => {
const userId = node.attributes?.['trashbin-deleted-by-id'] !== undefined ? String(node.attributes?.['trashbin-deleted-by-id']) : null
const displayName = node.attributes?.['trashbin-deleted-by-display-name'] !== undefined ? String(node.attributes?.['trashbin-deleted-by-display-name']) : null
const label = generateLabel(userId, displayName)
return {
userId,
displayName,
label,
}
}
const originalLocation = new Column({
id: 'original-location',
title: t('files_trashbin', 'Original location'),
render(node) {
const originalLocation = parseOriginalLocation(node)
const span = document.createElement('span')
span.title = originalLocation
span.textContent = originalLocation
return span
},
sort(nodeA, nodeB) {
const locationA = parseOriginalLocation(nodeA)
const locationB = parseOriginalLocation(nodeB)
return locationA.localeCompare(locationB)
},
})
const deletedBy = new Column({
id: 'deleted-by',
title: t('files_trashbin', 'Deleted by'),
render(node) {
const { userId, displayName, label } = parseDeletedBy(node)
if (label) {
const span = document.createElement('span')
span.textContent = label
return span
}
const UserBubble = Vue.extend(NcUserBubble)
const propsData = {
size: 32,
user: userId ?? undefined,
displayName: displayName ?? t('files_trashbin', 'Unknown'),
}
const userBubble = new UserBubble({ propsData }).$mount().$el
return userBubble as HTMLElement
},
sort(nodeA, nodeB) {
const deletedByA = parseDeletedBy(nodeA).label ?? parseDeletedBy(nodeA).displayName ?? t('files_trashbin', 'Unknown')
const deletedByB = parseDeletedBy(nodeB).label ?? parseDeletedBy(nodeB).displayName ?? t('files_trashbin', 'Unknown')
return deletedByA.localeCompare(deletedByB)
},
})
const deleted = new Column({
id: 'deleted',
title: t('files_trashbin', 'Deleted'),
render(node) {
const deletionTime = node.attributes?.['trashbin-deletion-time']
const span = document.createElement('span')
if (deletionTime) {
span.title = moment.unix(deletionTime).format('LLL')
span.textContent = moment.unix(deletionTime).fromNow()
return span
}
// Unknown deletion time
span.textContent = t('files_trashbin', 'A long time ago')
return span
},
sort(nodeA, nodeB) {
const deletionTimeA = nodeA.attributes?.['trashbin-deletion-time'] || nodeA?.mtime || 0
const deletionTimeB = nodeB.attributes?.['trashbin-deletion-time'] || nodeB?.mtime || 0
return deletionTimeB - deletionTimeA
},
})
export const columns = [
originalLocation,
deletedBy,
deleted,
]
|