aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/GalleryTiles.vue
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/src/views/GalleryTiles.vue')
-rw-r--r--viewer/src/views/GalleryTiles.vue70
1 files changed, 70 insertions, 0 deletions
diff --git a/viewer/src/views/GalleryTiles.vue b/viewer/src/views/GalleryTiles.vue
new file mode 100644
index 0000000..96d69da
--- /dev/null
+++ b/viewer/src/views/GalleryTiles.vue
@@ -0,0 +1,70 @@
1<!-- ldgallery - A static generator which turns a collection of tagged
2-- pictures into a searchable web gallery.
3--
4-- Copyright (C) 2019-2022 Guillaume FOUET
5--
6-- This program is free software: you can redistribute it and/or modify
7-- it under the terms of the GNU Affero General Public License as
8-- published by the Free Software Foundation, either version 3 of the
9-- License, or (at your option) any later version.
10--
11-- This program is distributed in the hope that it will be useful,
12-- but WITHOUT ANY WARRANTY; without even the implied warranty of
13-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-- GNU Affero General Public License for more details.
15--
16-- You should have received a copy of the GNU Affero General Public License
17-- along with this program. If not, see <https://www.gnu.org/licenses/>.
18-->
19
20<template>
21 <div
22 v-if="hasResults"
23 :class="$style.thumbnailTiles"
24 >
25 <LdLink
26 v-for="item in orderedItems"
27 :key="item.path"
28 :to="item.path"
29 >
30 <ItemThumbnail :item="item" />
31 </LdLink>
32 </div>
33 <LdNotice
34 v-else
35 :icon="faSearch"
36 :message="noresultMessage"
37 />
38</template>
39
40<script setup lang="ts">
41import { Item } from '@/@types/gallery';
42import LdLink from '@/components/LdLink.vue';
43import LdNotice from '@/components/LdNotice.vue';
44import { useUiStore } from '@/store/uiStore';
45import { faSearch } from '@fortawesome/free-solid-svg-icons';
46import { computed } from 'vue';
47import ItemThumbnail from './ItemThumbnail.vue';
48
49const props = defineProps({
50 items: { type: Array<Item>, required: true },
51 noresultMessage: { type: String, required: true },
52});
53
54const uiStore = useUiStore();
55const hasResults = computed(() => props.items.length);
56const orderedItems = computed(() => [...props.items].sort(uiStore.sort.fn));
57</script>
58
59<style lang="scss" module>
60.thumbnailTiles {
61 display: flex;
62 flex-wrap: wrap;
63 align-items: center;
64 justify-content: space-evenly;
65
66 & > a {
67 margin: 2px;
68 }
69}
70</style>