-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathFilesListTableHeader.vue
More file actions
177 lines (162 loc) · 4.3 KB
/
FilesListTableHeader.vue
File metadata and controls
177 lines (162 loc) · 4.3 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<tr v-if="filesStore.ordered.length > 0"
class="files-list__row-head">
<th class="files-list__column files-list__row-checkbox"
scope="col"
@keyup.esc.exact="resetSelection">
<NcCheckboxRadioSwitch v-bind="selectAllBind" @update:modelValue="onToggleAll" />
</th>
<!-- Columns display -->
<!-- Link to file -->
<th class="files-list__column files-list__row-name files-list__column--sortable"
scope="col"
:aria-sort="ariaSortForMode('name')">
<!-- Icon or preview -->
<span class="files-list__row-icon" />
<!-- Name -->
<FilesListTableHeaderButton :name="t('libresign', 'Name')" mode="name" />
</th>
<!-- Actions -->
<th class="files-list__row-actions" scope="col" />
<!-- Custom views columns -->
<th v-for="column in columns"
:key="column.id"
scope="col"
:class="classForColumn(column)"
:aria-sort="ariaSortForMode(column.id, !!column.sort)">
<FilesListTableHeaderButton v-if="!!column.sort" :name="column.title" :mode="column.id" />
<span v-else>
{{ column.title }}
</span>
</th>
</tr>
</template>
<script>
import { t } from '@nextcloud/l10n'
import NcCheckboxRadioSwitch from '@nextcloud/vue/components/NcCheckboxRadioSwitch'
import FilesListTableHeaderButton from './FilesListTableHeaderButton.vue'
import logger from '../../logger.js'
import { useFilesStore } from '../../store/files.js'
import { useFilesSortingStore } from '../../store/filesSorting.js'
import { useSelectionStore } from '../../store/selection.js'
export default {
name: 'FilesListTableHeader',
components: {
NcCheckboxRadioSwitch,
FilesListTableHeaderButton,
},
props: {
nodes: {
type: Array,
required: true,
},
},
setup() {
const filesStore = useFilesStore()
const filesSortingStore = useFilesSortingStore()
const selectionStore = useSelectionStore()
return {
t,
filesStore,
filesSortingStore,
selectionStore,
}
},
data() {
return {
columns: [
{
title: t('libresign', 'Status'),
id: 'status',
sort: true,
},
{
title: t('libresign', 'Signers'),
id: 'signers',
sort: true,
},
{
title: t('libresign', 'Created at'),
id: 'created_at',
sort: true,
},
],
}
},
computed: {
selectAllBind() {
const label = t('libresign', 'Toggle selection for all files')
return {
'aria-label': label,
'model-value': this.isAllSelected,
indeterminate: this.isSomeSelected,
title: label,
}
},
selectedNodes() {
return this.selectionStore.selected
},
isAllSelected() {
return this.selectedNodes.length === this.filesStore.ordered.length
&& this.filesStore.ordered.length > 0
},
isNoneSelected() {
return this.selectedNodes.length === 0
},
isSomeSelected() {
return !this.isAllSelected && !this.isNoneSelected
},
},
methods: {
// Returns the aria-sort value for a given column mode.
// Sortable columns that are not currently active must declare aria-sort="none"
// so screen readers announce that the column can be sorted.
// Non-sortable columns should have no aria-sort attribute at all (return null).
ariaSortForMode(mode, isSortable = true) {
if (!isSortable) {
return null
}
if (this.filesSortingStore.sortingMode === mode) {
return this.filesSortingStore.sortingDirection === 'asc' ? 'ascending' : 'descending'
}
return 'none'
},
classForColumn(column) {
return {
'files-list__column': true,
'files-list__column--sortable': !!column.sort,
'files-list__row-column-custom': true,
[`files-list__row-${column.id}`]: true,
}
},
onToggleAll(selected) {
if (selected) {
const selection = this.filesStore.ordered.map(id => Number(id))
logger.debug('Added all nodes to selection', { selection })
this.selectionStore.setLastIndex(null)
this.selectionStore.set(selection)
} else {
logger.debug('Cleared selection')
this.selectionStore.reset()
}
},
resetSelection() {
this.selectionStore.reset()
},
},
}
</script>
<style scoped lang="scss">
.files-list__column {
user-select: none;
// Make sure the cell colors don't apply to column headers
color: var(--color-text-maxcontrast) !important;
&--sortable {
cursor: pointer;
}
}
</style>