diff options
author | pacien | 2022-09-04 18:18:27 +0200 |
---|---|---|
committer | pacien | 2022-09-04 18:18:27 +0200 |
commit | 11bbbae2850b9c45da697a8ed9626495a50a38c0 (patch) | |
tree | ff2713118f8b45d36905bfea2933f08d8e70066d /viewer/src/views/GalleryTiles.vue | |
parent | e93f7b1eb84c083d67567115284c0002a3a7d5fc (diff) | |
parent | 8349be992b46b77dee921f484cfbff8b758ff756 (diff) | |
download | ldgallery-2.1.tar.gz |
Merge branch 'develop': release v2.1v2.1
GitHub: related to #315
Diffstat (limited to 'viewer/src/views/GalleryTiles.vue')
-rw-r--r-- | viewer/src/views/GalleryTiles.vue | 70 |
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"> | ||
41 | import { Item } from '@/@types/gallery'; | ||
42 | import LdLink from '@/components/LdLink.vue'; | ||
43 | import LdNotice from '@/components/LdNotice.vue'; | ||
44 | import { useUiStore } from '@/store/uiStore'; | ||
45 | import { faSearch } from '@fortawesome/free-solid-svg-icons'; | ||
46 | import { computed } from 'vue'; | ||
47 | import ItemThumbnail from './ItemThumbnail.vue'; | ||
48 | |||
49 | const props = defineProps({ | ||
50 | items: { type: Array<Item>, required: true }, | ||
51 | noresultMessage: { type: String, required: true }, | ||
52 | }); | ||
53 | |||
54 | const uiStore = useUiStore(); | ||
55 | const hasResults = computed(() => props.items.length); | ||
56 | const 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> | ||