diff options
Diffstat (limited to 'viewer/src/views/GalleryNavigation.vue')
-rw-r--r-- | viewer/src/views/GalleryNavigation.vue | 106 |
1 files changed, 52 insertions, 54 deletions
diff --git a/viewer/src/views/GalleryNavigation.vue b/viewer/src/views/GalleryNavigation.vue index 200637e..0869aaf 100644 --- a/viewer/src/views/GalleryNavigation.vue +++ b/viewer/src/views/GalleryNavigation.vue | |||
@@ -1,7 +1,7 @@ | |||
1 | <!-- ldgallery - A static generator which turns a collection of tagged | 1 | <!-- ldgallery - A static generator which turns a collection of tagged |
2 | -- pictures into a searchable web gallery. | 2 | -- pictures into a searchable web gallery. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2019-2020 Guillaume FOUET | 4 | -- Copyright (C) 2019-2022 Guillaume FOUET |
5 | -- | 5 | -- |
6 | -- This program is free software: you can redistribute it and/or modify | 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 | 7 | -- it under the terms of the GNU Affero General Public License as |
@@ -19,65 +19,63 @@ | |||
19 | 19 | ||
20 | <template> | 20 | <template> |
21 | <div> | 21 | <div> |
22 | <ld-error v-if="isError" icon="folder-open" :message="$t('gallery.unknown-resource')" /> | 22 | <LdNotice |
23 | <gallery-search v-else-if="isSearch" :path="path" /> | 23 | v-if="isError" |
24 | <component :is="componentName" v-else :key="componentKey" :item="$galleryStore.currentItem" /> | 24 | :icon="faFolderOpen" |
25 | :message="t('gallery.unknown-resource')" | ||
26 | /> | ||
27 | <GallerySearch v-else-if="isSearch" /> | ||
28 | <component | ||
29 | :is="componentName" | ||
30 | v-else | ||
31 | :key="componentKey" | ||
32 | :item="galleryStore.currentItem" | ||
33 | /> | ||
25 | </div> | 34 | </div> |
26 | </template> | 35 | </template> |
27 | 36 | ||
28 | <script lang="ts"> | 37 | <script setup lang="ts"> |
29 | import { ItemType } from "@/@types/ItemType"; | 38 | import { ItemType } from '@/@types/itemType'; |
30 | import Navigation from "@/services/navigation"; | 39 | import LdNotice from '@/components/LdNotice.vue'; |
31 | import GallerySearch from "@/views/GallerySearch.vue"; | 40 | import { isDirectory } from '@/services/itemGuards'; |
32 | import { Component, Prop, Vue, Watch } from "vue-property-decorator"; | 41 | import { useGalleryStore } from '@/store/galleryStore'; |
42 | import { faFolderOpen } from '@fortawesome/free-solid-svg-icons'; | ||
43 | import { computedEager } from '@vueuse/shared'; | ||
44 | import { computed, watchEffect } from 'vue'; | ||
45 | import { useI18n } from 'vue-i18n'; | ||
46 | import GallerySearch from './GallerySearch.vue'; | ||
47 | import AudioViewer from './item_handlers/AudioViewer.vue'; | ||
48 | import DirectoryViewer from './item_handlers/DirectoryViewer.vue'; | ||
49 | import DownloadViewer from './item_handlers/DownloadViewer.vue'; | ||
50 | import MarkdownViewer from './item_handlers/MarkdownViewer.vue'; | ||
51 | import PdfViewer from './item_handlers/PdfViewer.vue'; | ||
52 | import PictureViewer from './item_handlers/PictureViewer.vue'; | ||
53 | import PlainTextViewer from './item_handlers/PlainTextViewer.vue'; | ||
54 | import VideoViewer from './item_handlers/VideoViewer.vue'; | ||
33 | 55 | ||
34 | @Component({ | 56 | const props = defineProps({ |
35 | components: { | 57 | path: { type: String, required: true }, |
36 | GallerySearch, | 58 | query: { type: Array<string>, required: true }, |
37 | }, | 59 | }); |
38 | }) | ||
39 | export default class GalleryNavigation extends Vue { | ||
40 | @Prop(String) readonly path!: string; | ||
41 | @Prop(Array) readonly query!: string[]; | ||
42 | 60 | ||
43 | readonly COMPONENT_BY_TYPE: Record<ItemType, string> = { | 61 | const { t } = useI18n(); |
44 | directory: "ld-directory-viewer", | 62 | const galleryStore = useGalleryStore(); |
45 | picture: "ld-picture-viewer", | ||
46 | plaintext: "ld-plain-text-viewer", | ||
47 | markdown: "ld-markdown-viewer", | ||
48 | pdf: "ld-pdf-viewer", | ||
49 | video: "ld-video-viewer", | ||
50 | audio: "ld-audio-viewer", | ||
51 | other: "ld-download-viewer", | ||
52 | }; | ||
53 | 63 | ||
54 | mounted() { | 64 | const COMPONENT_BY_TYPE: Record<ItemType, unknown> = { |
55 | this.pathChanged(); | 65 | directory: DirectoryViewer, |
56 | } | 66 | picture: PictureViewer, |
67 | plaintext: PlainTextViewer, | ||
68 | markdown: MarkdownViewer, | ||
69 | pdf: PdfViewer, | ||
70 | video: VideoViewer, | ||
71 | audio: AudioViewer, | ||
72 | other: DownloadViewer, | ||
73 | }; | ||
57 | 74 | ||
58 | get isError() { | 75 | const isError = computedEager(() => !galleryStore.currentItem?.properties.type); |
59 | return this.checkType(null); | 76 | const isSearch = computedEager(() => isDirectory(galleryStore.currentItem) && props.query.length > 0); |
60 | } | 77 | const componentName = computed(() => COMPONENT_BY_TYPE[galleryStore.currentItem?.properties.type ?? ItemType.OTHER]); |
78 | const componentKey = computed(() => galleryStore.currentItem?.path ?? ''); | ||
61 | 79 | ||
62 | get isSearch() { | 80 | watchEffect(() => (galleryStore.currentPath = props.path)); |
63 | return this.checkType(ItemType.DIRECTORY) && this.query.length > 0; | ||
64 | } | ||
65 | |||
66 | get componentName() { | ||
67 | return this.COMPONENT_BY_TYPE[this.$galleryStore.currentItem?.properties.type ?? ItemType.OTHER]; | ||
68 | } | ||
69 | |||
70 | get componentKey() { | ||
71 | return this.$galleryStore.currentItem?.path ?? ""; | ||
72 | } | ||
73 | |||
74 | @Watch("path") | ||
75 | pathChanged() { | ||
76 | this.$galleryStore.setCurrentPath(this.path); | ||
77 | } | ||
78 | |||
79 | checkType(type: ItemType | null): boolean { | ||
80 | return Navigation.checkType(this.$galleryStore.currentItem, type); | ||
81 | } | ||
82 | } | ||
83 | </script> | 81 | </script> |