Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FilesListViewer.vue « components « src - github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b3b12a2372e970489c095fdc9f43107c049760e3 (plain)
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
<!--
 - @copyright Copyright (c) 2022 Louis Chemineau <louis@chmn.me>
 -
 - @author Louis Chemineau <louis@chmn.me>
 -
 - @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/>.
 -
 -->
<template>
	<div class="files-list-viewer">
		<NcEmptyContent v-if="emptyMessage !== '' && items.length === 0 && !loading"
			key="Ncemptycontent">
			<template #icon>
				<!-- eslint-disable-next-line vue/no-v-html -->
				<span class="empty-content-illustration" v-html="EmptyBox" />
			</template>
			{{ emptyMessage }}
		</NcEmptyContent>

		<TiledLayout :base-height="baseHeight" :items="items">
			<VirtualScrolling slot-scope="{rows}"
				:use-window="useWindow"
				:rows="rows"
				:scroll-to-key="scrollToSection"
				@need-content="needContent">
				<ul slot-scope="{renderedRows}">
					<div v-for="row of renderedRows"
						:key="row.key"
						class="tiled-row"
						:class="{'files-list-viewer__section-header': row.items[0].sectionHeader}"
						:style="{height: `${row.height}px`}">
						<li v-for="item of row.items"
							:key="item.id"
							:style="{ width: item.ratio ? `${row.height * item.ratio}px` : '100%', height: `${row.height}px`}">
							<slot :file="item" :visibility="row.visibility" />
						</li>
					</div>
				</ul>
				<template v-if="loading" #loader>
					<NcLoadingIcon class="files-list-viewer__loader" />
				</template>
			</VirtualScrolling>
		</TiledLayout>
	</div>
</template>
<script>
import { mapGetters } from 'vuex'

import { NcEmptyContent, NcLoadingIcon } from '@nextcloud/vue'

import TiledLayout from '../components/TiledLayout.vue'
import VirtualScrolling from '../components/VirtualScrolling.vue'
import EmptyBox from '../assets/Illustrations/empty.svg'

export default {
	name: 'FilesListViewer',

	components: {
		NcEmptyContent,
		NcLoadingIcon,
		TiledLayout,
		VirtualScrolling,
	},

	props: {
		// Array of file ids that should be rendered.
		fileIds: {
			type: Array,
			default: undefined,
		},
		// An object mapping a list of section to a list of fileIds.
		fileIdsBySection: {
			type: Object,
			default: undefined,
		},
		// The list of sorted sections.
		sections: {
			type: Array,
			default: undefined,
		},
		// Whether we should display a loading indicator.
		loading: {
			type: Boolean,
			default: false,
		},
		// Message to display when there is no files.
		emptyMessage: {
			type: String,
			default: '',
		},
		// The base height to forward to TileLayout.
		baseHeight: {
			type: Number,
			default: 200,
		},
		// The height to use for section headers.
		sectionHeaderHeight: {
			type: Number,
			default: 75,
		},
		// Instruct VirtualScrolling to scroll to the given section id.
		scrollToSection: {
			type: String,
			default: '',
		},
		// The containerElement props to forward to TileLayout.
		containerElement: {
			type: HTMLElement,
			default: null,
		},
		// The useWindow props to forward to TileLayout.
		useWindow: {
			type: Boolean,
			default: false,
		},
	},

	data() {
		return {
			EmptyBox,
		}
	},

	computed: {
		...mapGetters([
			'files',
		]),

		/**
		 * @return {object[]} The list of items to pass to TiledLayout.
		 */
		fileIdsToItems() {
			if (this.fileIds === undefined) {
				return []
			}

			return this.fileIds.map(this.mapFileToItem)
		},

		/**
		 * @return {object[]} The list of items separated by sections to pass to TiledLayout.
		 */
		sectionsToItems() {
			if (this.sections === undefined) {
				return []
			}

			return this.sections.flatMap((sectionId) => {
				return [
					{
						id: sectionId,
						sectionHeader: true,
						height: this.sectionHeaderHeight,
					},
					...this.fileIdsBySection[sectionId].map(this.mapFileToItem),
				]
			})
		},

		/**
		 * @return {object[]} The list of items to pass to TiledLayout.
		 */
		items() {
			if (this.fileIds !== undefined) {
				return this.fileIdsToItems
			}

			if (this.sections !== undefined) {
				return this.sectionsToItems
			}

			return []
		},
	},

	methods: {
		// Ask the parent for more content.
		needContent() {
			this.$emit('need-content')
		},

		mapFileToItem(fileId) {
			const file = this.files[fileId]
			return {
				id: file.fileid,
				width: file.fileMetadataSizeParsed.width,
				height: file.fileMetadataSizeParsed.height,
				ratio: file.fileMetadataSizeParsed.width / file.fileMetadataSizeParsed.height,
			}
		},
	},
}
</script>
<style lang="scss" scoped>
.files-list-viewer {
	height: 100%;
	position: relative;

	::v-deep .empty-content__icon {
		width: 200px;
		height: 200px;

		.empty-content-illustration svg {
			width: 200px;
			height: 200px;
		}
	}

	.tiled-row {
		display: flex;
	}

	&__section-header {
		position: sticky;
		top: 0;
		z-index: 3;
		background: var(--color-main-background);
	}

	&__loader {
		margin: 50px 0;
	}
}
</style>