diff options
Diffstat (limited to 'viewer/src/views/layout/top/LayoutCommand.vue')
-rw-r--r-- | viewer/src/views/layout/top/LayoutCommand.vue | 37 |
1 files changed, 33 insertions, 4 deletions
diff --git a/viewer/src/views/layout/top/LayoutCommand.vue b/viewer/src/views/layout/top/LayoutCommand.vue index 8919da3..85d47b6 100644 --- a/viewer/src/views/layout/top/LayoutCommand.vue +++ b/viewer/src/views/layout/top/LayoutCommand.vue | |||
@@ -2,7 +2,7 @@ | |||
2 | -- pictures into a searchable web gallery. | 2 | -- pictures into a searchable web gallery. |
3 | -- | 3 | -- |
4 | -- Copyright (C) 2019-2022 Guillaume FOUET | 4 | -- Copyright (C) 2019-2022 Guillaume FOUET |
5 | -- 2020 Pacien TRAN-GIRARD | 5 | -- 2020-2022 Pacien TRAN-GIRARD |
6 | -- | 6 | -- |
7 | -- This program is free software: you can redistribute it and/or modify | 7 | -- This program is free software: you can redistribute it and/or modify |
8 | -- it under the terms of the GNU Affero General Public License as | 8 | -- it under the terms of the GNU Affero General Public License as |
@@ -33,7 +33,24 @@ | |||
33 | size="lg" | 33 | size="lg" |
34 | /> | 34 | /> |
35 | </LdLink> | 35 | </LdLink> |
36 | <LayoutCommandSort :tabindex="20" /> | 36 | |
37 | <LdLink | ||
38 | v-if="itemResourceUrl" | ||
39 | :title="t('command.download')" | ||
40 | :download="navigation.getFileName(props.item)" | ||
41 | :href="itemResourceUrl" | ||
42 | :tabindex="20" | ||
43 | > | ||
44 | <fa-icon | ||
45 | :icon="faFileDownload" | ||
46 | size="lg" | ||
47 | /> | ||
48 | </LdLink> | ||
49 | <LayoutCommandSort | ||
50 | v-else | ||
51 | :tabindex="20" | ||
52 | /> | ||
53 | |||
37 | <LdLink | 54 | <LdLink |
38 | :class="{ disabled: isEntryPoint(), [$style.commandSecondary]: true }" | 55 | :class="{ disabled: isEntryPoint(), [$style.commandSecondary]: true }" |
39 | :title="t('command.back')" | 56 | :title="t('command.back')" |
@@ -66,22 +83,34 @@ | |||
66 | <script setup lang="ts"> | 83 | <script setup lang="ts"> |
67 | import { Item } from '@/@types/gallery'; | 84 | import { Item } from '@/@types/gallery'; |
68 | import LdLink from '@/components/LdLink.vue'; | 85 | import LdLink from '@/components/LdLink.vue'; |
86 | import { useNavigation } from '@/services/navigation'; | ||
87 | import { useItemResource } from '@/services/ui/ldItemResourceUrl'; | ||
69 | import { useUiStore } from '@/store/uiStore'; | 88 | import { useUiStore } from '@/store/uiStore'; |
70 | import { faAngleDoubleLeft, faArrowLeft, faFolder, faLevelUpAlt, faSearch } from '@fortawesome/free-solid-svg-icons'; | 89 | import { |
90 | faAngleDoubleLeft, | ||
91 | faArrowLeft, | ||
92 | faFileDownload, | ||
93 | faFolder, | ||
94 | faLevelUpAlt, | ||
95 | faSearch, | ||
96 | } from '@fortawesome/free-solid-svg-icons'; | ||
71 | import { computedEager } from '@vueuse/shared'; | 97 | import { computedEager } from '@vueuse/shared'; |
72 | import { computed } from 'vue'; | 98 | import { computed, PropType, toRef } from 'vue'; |
73 | import { useI18n } from 'vue-i18n'; | 99 | import { useI18n } from 'vue-i18n'; |
74 | import { useRoute, useRouter } from 'vue-router'; | 100 | import { useRoute, useRouter } from 'vue-router'; |
75 | import LayoutCommandSort from './LayoutCommandSort.vue'; | 101 | import LayoutCommandSort from './LayoutCommandSort.vue'; |
76 | 102 | ||
77 | const props = defineProps({ | 103 | const props = defineProps({ |
78 | currentItemPath: { type: Array<Item>, required: true }, | 104 | currentItemPath: { type: Array<Item>, required: true }, |
105 | item: { type: Object as PropType<Item>, required: true }, | ||
79 | }); | 106 | }); |
80 | 107 | ||
81 | const { t } = useI18n(); | 108 | const { t } = useI18n(); |
82 | const route = useRoute(); | 109 | const route = useRoute(); |
83 | const router = useRouter(); | 110 | const router = useRouter(); |
84 | const uiStore = useUiStore(); | 111 | const uiStore = useUiStore(); |
112 | const navigation = useNavigation(); | ||
113 | const { itemResourceUrl } = useItemResource(toRef(props, 'item')); | ||
85 | 114 | ||
86 | const commandToggleSearchPanelIcon = computed(() => uiStore.fullWidth ? faSearch : faAngleDoubleLeft); | 115 | const commandToggleSearchPanelIcon = computed(() => uiStore.fullWidth ? faSearch : faAngleDoubleLeft); |
87 | const isRoot = computedEager(() => props.currentItemPath.length <= 1 && !uiStore.searchMode); | 116 | const isRoot = computedEager(() => props.currentItemPath.length <= 1 && !uiStore.searchMode); |