-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathFilesListVirtual.vue
More file actions
591 lines (518 loc) · 13.9 KB
/
FilesListVirtual.vue
File metadata and controls
591 lines (518 loc) · 13.9 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<VirtualList ref="table"
:data-component="userConfigStore.grid_view ? FileEntryGrid : FileEntry"
:loading="loading"
:caption="caption">
<template #filters>
<FileListFilters />
</template>
<template v-if="!isNoneSelected" #header-overlay>
<span class="files-list__selected">
{{ n('libresign', '{count} selected', '{count} selected', selectedNodes.length, { count: selectedNodes.length }) }}
</span>
<FilesListTableHeaderActions />
</template>
<template #header>
<!-- Table header and sort buttons -->
<FilesListTableHeader ref="thead"
:nodes="nodes" />
</template>
<template #empty>
<slot name="empty" />
</template>
<template #footer>
<FilesListTableFooter />
</template>
</VirtualList>
</template>
<script>
import FileEntry from './FileEntry/FileEntry.vue'
import FileEntryGrid from './FileEntry/FileEntryGrid.vue'
import FileListFilters from './FileListFilters.vue'
import FilesListTableFooter from './FilesListTableFooter.vue'
import FilesListTableHeader from './FilesListTableHeader.vue'
import FilesListTableHeaderActions from './FilesListTableHeaderActions.vue'
import VirtualList from './VirtualList.vue'
import { useFilesStore } from '../../store/files.js'
import { useSelectionStore } from '../../store/selection.js'
import { useUserConfigStore } from '../../store/userconfig.js'
export default {
name: 'FilesListVirtual',
components: {
VirtualList,
FileListFilters,
FilesListTableHeader,
FilesListTableHeaderActions,
FilesListTableFooter,
// eslint-disable-next-line vue/no-unused-components
FileEntry,
// eslint-disable-next-line vue/no-unused-components
FileEntryGrid,
},
props: {
nodes: {
type: Array,
required: true,
},
loading: {
type: Boolean,
required: true,
},
},
setup() {
const filesStore = useFilesStore()
const selectionStore = useSelectionStore()
const userConfigStore = useUserConfigStore()
return {
filesStore,
selectionStore,
userConfigStore,
}
},
data() {
return {
FileEntry,
FileEntryGrid,
}
},
computed: {
selectedNodes() {
return this.selectionStore.selected
},
isNoneSelected() {
return this.selectedNodes.length === 0
},
caption() {
return t('libresign', 'List of files. Column headers with buttons are sortable.')
},
},
}
</script>
<style scoped lang="scss">
.files-list {
--row-height: 55px;
--cell-margin: 14px;
--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);
--checkbox-size: 24px;
--clickable-area: var(--default-clickable-area);
--icon-preview-size: 32px;
--fixed-block-start-position: var(--default-clickable-area);
overflow: auto;
height: 100%;
will-change: scroll-position;
&:has(.file-list-filters__active) {
--fixed-block-start-position: calc(var(--default-clickable-area) + var(--default-grid-baseline) + var(--clickable-area-small));
}
& :deep() {
// Table head, body and footer
tbody {
will-change: padding;
contain: layout paint style;
display: flex;
flex-direction: column;
width: 100%;
// Necessary for virtual scrolling absolute
position: relative;
/* Hover effect on tbody lines only */
tr {
contain: strict;
&:hover,
&:focus {
background-color: var(--color-background-dark);
}
}
}
.files-list__selected {
padding-inline-end: 12px;
white-space: nowrap;
}
.files-list__table {
display: block;
&.files-list__table--with-thead-overlay {
// Hide the table header below the overlay
margin-block-start: calc(-1 * var(--row-height));
}
}
.files-list__filters {
// Pinned on top when scrolling above table header
position: sticky;
top: 0;
// ensure there is a background to hide the file list on scroll
background-color: var(--color-main-background);
z-index: 10;
// fixed the size
padding-inline: var(--row-height) var(--default-grid-baseline, 4px);
height: var(--fixed-block-start-position);
width: 100%;
}
.files-list__thead-overlay {
// Pinned on top when scrolling
position: sticky;
top: var(--fixed-block-start-position);
// Save space for a row checkbox
margin-inline-start: var(--row-height);
// More than .files-list__thead
z-index: 20;
display: flex;
align-items: center;
// Reuse row styles
background-color: var(--color-main-background);
border-block-end: 1px solid var(--color-border);
height: var(--row-height);
}
.files-list__thead,
.files-list__tfoot {
display: flex;
flex-direction: column;
width: 100%;
background-color: var(--color-main-background);
}
// Table header
.files-list__thead {
// Pinned on top when scrolling
position: sticky;
z-index: 10;
top: var(--fixed-block-start-position);
}
tr {
position: relative;
display: flex;
align-items: center;
width: 100%;
user-select: none;
border-block-end: 1px solid var(--color-border);
box-sizing: border-box;
user-select: none;
height: var(--row-height);
}
td, th {
display: flex;
align-items: center;
flex: 0 0 auto;
justify-content: start;
width: var(--row-height);
height: var(--row-height);
margin: 0;
padding: 0;
color: var(--color-text-maxcontrast);
border: none;
// Columns should try to add any text
// node wrapped in a span. That should help
// with the ellipsis on overflow.
span {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
.files-list__row-checkbox {
justify-content: center;
.checkbox-radio-switch {
display: flex;
justify-content: center;
--icon-size: var(--checkbox-size);
label.checkbox-radio-switch__label {
width: var(--clickable-area);
height: var(--clickable-area);
margin: 0;
padding: calc((var(--clickable-area) - var(--checkbox-size)) / 2);
}
.checkbox-radio-switch__icon {
margin: 0 !important;
}
}
}
.files-list__row {
&:hover, &:focus, &:active, &--active, &--dragover {
// WCAG AA compliant
background-color: var(--color-background-hover);
// text-maxcontrast have been designed to pass WCAG AA over
// a white background, we need to adjust then.
--color-text-maxcontrast: var(--color-main-text);
> * {
--color-border: var(--color-border-dark);
}
// Hover state of the row should also change the favorite markers background
.favorite-marker-icon svg path {
stroke: var(--color-background-hover);
}
}
&--dragover * {
// Prevent dropping on row children
pointer-events: none;
}
}
// Entry preview or mime icon
.files-list__row-icon {
position: relative;
display: flex;
overflow: visible;
align-items: center;
// No shrinking or growing allowed
flex: 0 0 var(--icon-preview-size);
justify-content: center;
width: var(--icon-preview-size);
height: 100%;
// Show same padding as the checkbox right padding for visual balance
margin-inline-end: var(--checkbox-padding);
color: var(--color-primary-element);
// Icon is also clickable
* {
cursor: pointer;
}
& > span {
justify-content: flex-start;
&:not(.files-list__row-icon-favorite) svg {
width: var(--icon-preview-size);
height: var(--icon-preview-size);
}
// Slightly increase the size of the folder icon
&.folder-icon,
&.folder-open-icon {
margin: -3px;
svg {
width: calc(var(--icon-preview-size) + 6px);
height: calc(var(--icon-preview-size) + 6px);
}
}
}
&-preview-container {
position: relative; // Needed for the blurshash to be positioned correctly
overflow: hidden;
width: var(--icon-preview-size);
height: var(--icon-preview-size);
border-radius: var(--border-radius);
}
&-blurhash {
position: absolute;
inset-block-start: 0;
inset-inline-start: 0;
height: 100%;
width: 100%;
object-fit: cover;
}
&-preview {
// Center and contain the preview
object-fit: contain;
object-position: center;
height: 100%;
width: 100%;
/* Preview not loaded animation effect */
&:not(.files-list__row-icon-preview--loaded) {
background: var(--color-loading-dark);
// animation: preview-gradient-fade 1.2s ease-in-out infinite;
}
}
&-favorite {
position: absolute;
top: 0px;
inset-inline-end: -10px;
}
// File and folder overlay
&-overlay {
position: absolute;
max-height: calc(var(--icon-preview-size) * 0.5);
max-width: calc(var(--icon-preview-size) * 0.5);
color: var(--color-primary-element-text);
// better alignment with the folder icon
margin-block-start: 2px;
// Improve icon contrast with a background for files
&--file {
color: var(--color-main-text);
background: var(--color-main-background);
border-radius: 100%;
}
}
}
// Entry link
.files-list__row-name {
// Prevent link from overflowing
overflow: hidden;
// Take as much space as possible
flex: 1 1 auto;
button.files-list__row-name-link {
display: flex;
align-items: center;
text-align: start;
// Fill cell height and width
width: 100%;
height: 100%;
// Necessary for flex grow to work
min-width: 0;
margin: 0;
padding: 0;
// Already added to the inner text, see rule below
&:focus-visible {
outline: none !important;
}
// Keyboard indicator a11y
&:focus .files-list__row-name-text {
outline: var(--border-width-input-focused) solid var(--color-main-text) !important;
border-radius: var(--border-radius-element);
}
&:focus:not(:focus-visible) .files-list__row-name-text {
outline: none !important;
}
}
.files-list__row-name-text {
color: var(--color-main-text);
// Make some space for the outline
padding: var(--default-grid-baseline) calc(2 * var(--default-grid-baseline));
padding-inline-start: -10px;
// Align two name and ext
display: inline-flex;
}
.files-list__row-name-ext {
color: var(--color-text-maxcontrast);
// always show the extension
overflow: visible;
}
}
.files-list__row-actions {
// take as much space as necessary
width: auto;
// Add margin to all cells after the actions
& ~ td,
& ~ th {
margin: 0 var(--cell-margin);
}
button {
.button-vue__text {
// Remove bold from default button styling
font-weight: normal;
}
}
}
.files-list__row-mtime,
.files-list__row-status {
color: var(--color-text-maxcontrast);
}
.files-list__row-status {
width: calc(var(--row-height) * 2.5);
justify-content: center;
}
.files-list__row-mtime {
width: calc(var(--row-height) * 2);
} .files-list__row-column-custom {
width: calc(var(--row-height) * 2);
}
}
}
@media screen and (max-width: 512px) {
.files-list :deep(.files-list__filters) {
// Reduce padding on mobile
padding-inline: var(--default-grid-baseline, 4px);
}
}
@media screen and (max-width: 768px) {
.files-list__row-status {
width: calc(var(--row-height) * 0.8) !important;
}
:deep(.files-list__row-status) {
width: calc(var(--row-height) * 0.8) !important;
}
}
</style>
<style lang="scss">
// Grid mode
tbody.files-list__tbody.files-list__tbody--grid {
--half-clickable-area: calc(var(--clickable-area) / 2);
--item-padding: 16px;
--icon-preview-size: 166px;
--name-height: 32px;
--mtime-height: 16px;
--row-width: calc(var(--icon-preview-size) + var(--item-padding) * 2);
--row-height: calc(var(--icon-preview-size) + var(--name-height) + var(--mtime-height) + var(--item-padding) * 2);
--checkbox-padding: 0px;
display: grid;
grid-template-columns: repeat(auto-fill, var(--row-width));
align-content: center;
align-items: center;
justify-content: space-around;
justify-items: center;
tr {
position: relative;
display: flex;
flex-direction: column;
width: var(--row-width);
height: var(--row-height);
border: none;
border-radius: var(--border-radius-large);
padding: var(--item-padding);
}
// Checkbox in the top left
.files-list__row-checkbox {
position: absolute;
z-index: 9;
top: calc(var(--item-padding)/2);
inset-inline-start: calc(var(--item-padding)/2);
overflow: hidden;
--checkbox-container-size: 44px;
width: var(--checkbox-container-size);
height: var(--checkbox-container-size);
// Add a background to the checkbox so we do not see the image through it.
.checkbox-radio-switch__content::after {
content: '';
width: 16px;
height: 16px;
position: absolute;
inset-inline-start: 50%;
margin-inline-start: -8px;
z-index: -1;
background: var(--color-main-background);
}
}
// Star icon in the top right
.files-list__row-icon-favorite {
position: absolute;
top: 0;
inset-inline-end: 0;
display: flex;
align-items: center;
justify-content: center;
width: var(--clickable-area);
height: var(--clickable-area);
}
.files-list__row-name {
display: flex;
flex-direction: column;
width: var(--icon-preview-size);
height: calc(var(--icon-preview-size) + var(--name-height));
// Ensure that the name outline is visible.
overflow: visible;
span.files-list__row-icon {
width: var(--icon-preview-size);
height: var(--icon-preview-size);
}
.files-list__row-name-text {
margin: 0;
// Ensure that the outline is not too close to the text.
margin-inline-start: -4px;
padding: 0px 4px;
}
}
.files-list__row-status {
position: absolute;
top: var(--item-padding);
inset-inline-end: var(--item-padding);
width: var(--clickable-area);
height: var(--clickable-area);
}
.files-list__row-mtime {
width: var(--icon-preview-size);
height: var(--mtime-height);
font-size: calc(var(--default-font-size) - 4px);
}
.files-list__row-actions {
position: absolute;
inset-inline-end: calc(var(--half-clickable-area) / 2);
inset-block-end: calc(var(--mtime-height) / 2);
width: var(--clickable-area);
height: var(--clickable-area);
}
}
</style>