aboutsummaryrefslogtreecommitdiff
path: root/viewer/src
diff options
context:
space:
mode:
authorpacien2020-05-18 20:06:22 +0200
committerNotkea2020-05-22 01:02:18 +0200
commit226e0beb50061844470bd8a717a74307b975bd96 (patch)
tree0554345bd508fac69404678fc2a3ad987697871f /viewer/src
parent185b84fbed180e4d2da7d4cc2ee91a3481f47406 (diff)
downloadldgallery-226e0beb50061844470bd8a717a74307b975bd96.tar.gz
viewer: add pdf viewer
Based on native browser rendering. GitHub: closes #211
Diffstat (limited to 'viewer/src')
-rw-r--r--viewer/src/components/LdPdfViewer.vue50
-rw-r--r--viewer/src/views/GalleryNavigation.vue1
2 files changed, 51 insertions, 0 deletions
diff --git a/viewer/src/components/LdPdfViewer.vue b/viewer/src/components/LdPdfViewer.vue
new file mode 100644
index 0000000..78ff3d2
--- /dev/null
+++ b/viewer/src/components/LdPdfViewer.vue
@@ -0,0 +1,50 @@
1<!--
2-- ldgallery - A static generator which turns a collection of tagged
3-- pictures into a searchable web gallery.
4--
5-- Copyright (C) 2020 Pacien TRAN-GIRARD
6--
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
9-- published by the Free Software Foundation, either version 3 of the
10-- License, or (at your option) any later version.
11--
12-- This program is distributed in the hope that it will be useful,
13-- but WITHOUT ANY WARRANTY; without even the implied warranty of
14-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-- GNU Affero General Public License for more details.
16--
17-- You should have received a copy of the GNU Affero General Public License
18-- along with this program. If not, see <https://www.gnu.org/licenses/>.
19-->
20
21<template>
22 <!-- intermediate container necessary to eliminate the double scrollbar -->
23 <div :class="$style.container">
24 <!-- prefer native browser PDF viewer if available -->
25 <object :class="$style.content" :data="itemResourceUrl()" type="application/pdf">
26 <!-- TODO: fallback to PDF.js (https://github.com/pacien/ldgallery/issues/212) -->
27 <ld-download :item="pdfItem" />
28 </object>
29 </div>
30</template>
31
32<script lang="ts">
33import { Component, Prop, Vue } from "vue-property-decorator";
34
35@Component export default class LdPdfViewer extends Vue {
36 @Prop({ required: true }) readonly pdfItem!: Gallery.PDF;
37
38 itemResourceUrl(): string {
39 return this.$galleryStore.resourceRoot + this.pdfItem.properties.resource;
40 }
41}
42</script>
43
44<style lang="scss" module>
45.container, .content {
46 width: 100%;
47 height: 100%;
48 overflow: hidden;
49}
50</style>
diff --git a/viewer/src/views/GalleryNavigation.vue b/viewer/src/views/GalleryNavigation.vue
index b5f06a2..e1c860b 100644
--- a/viewer/src/views/GalleryNavigation.vue
+++ b/viewer/src/views/GalleryNavigation.vue
@@ -25,6 +25,7 @@
25 <gallery-directory v-else-if="checkType('directory')" :directory="$galleryStore.currentItem" /> 25 <gallery-directory v-else-if="checkType('directory')" :directory="$galleryStore.currentItem" />
26 <ld-picture v-else-if="checkType('picture')" :picture="$galleryStore.currentItem" /> 26 <ld-picture v-else-if="checkType('picture')" :picture="$galleryStore.currentItem" />
27 <ld-plain-text-viewer v-else-if="checkType('plaintext')" :plain-text-item="$galleryStore.currentItem" /> 27 <ld-plain-text-viewer v-else-if="checkType('plaintext')" :plain-text-item="$galleryStore.currentItem" />
28 <ld-pdf-viewer v-else-if="checkType('pdf')" :pdf-item="$galleryStore.currentItem" />
28 <ld-download v-else :item="$galleryStore.currentItem" /> 29 <ld-download v-else :item="$galleryStore.currentItem" />
29 </div> 30 </div>
30</template> 31</template>