diff options
-rw-r--r-- | readme.md | 1 | ||||
-rw-r--r-- | viewer/package-lock.json | 5 | ||||
-rw-r--r-- | viewer/package.json | 1 | ||||
-rw-r--r-- | viewer/src/components/LdPicture.vue | 61 | ||||
-rw-r--r-- | viewer/src/services/ldzoom.ts | 92 |
5 files changed, 130 insertions, 30 deletions
@@ -54,6 +54,7 @@ Builds of this software embed and make use of the following libraries: | |||
54 | * fortawesome/vue-fontawesome, licensed under the MIT License | 54 | * fortawesome/vue-fontawesome, licensed under the MIT License |
55 | * buefy, licensed under the MIT License | 55 | * buefy, licensed under the MIT License |
56 | * core-js, licensed under the MIT License | 56 | * core-js, licensed under the MIT License |
57 | * resize-observer-polyfill, licensed under the MIT License | ||
57 | * v-lazy-image, licensed under the MIT License | 58 | * v-lazy-image, licensed under the MIT License |
58 | * vue, licensed under the MIT License | 59 | * vue, licensed under the MIT License |
59 | * vue-class-component, licensed under the MIT License | 60 | * vue-class-component, licensed under the MIT License |
diff --git a/viewer/package-lock.json b/viewer/package-lock.json index 228788d..1e1fdda 100644 --- a/viewer/package-lock.json +++ b/viewer/package-lock.json | |||
@@ -10464,6 +10464,11 @@ | |||
10464 | "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", | 10464 | "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", |
10465 | "dev": true | 10465 | "dev": true |
10466 | }, | 10466 | }, |
10467 | "resize-observer-polyfill": { | ||
10468 | "version": "1.5.1", | ||
10469 | "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", | ||
10470 | "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" | ||
10471 | }, | ||
10467 | "resolve": { | 10472 | "resolve": { |
10468 | "version": "1.14.1", | 10473 | "version": "1.14.1", |
10469 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.14.1.tgz", | 10474 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.14.1.tgz", |
diff --git a/viewer/package.json b/viewer/package.json index 40a91ba..8f7de83 100644 --- a/viewer/package.json +++ b/viewer/package.json | |||
@@ -15,6 +15,7 @@ | |||
15 | "@fortawesome/vue-fontawesome": "^0.1.9", | 15 | "@fortawesome/vue-fontawesome": "^0.1.9", |
16 | "buefy": "^0.8.15", | 16 | "buefy": "^0.8.15", |
17 | "core-js": "^3.6.4", | 17 | "core-js": "^3.6.4", |
18 | "resize-observer-polyfill": "^1.5.1", | ||
18 | "v-lazy-image": "^1.4.0", | 19 | "v-lazy-image": "^1.4.0", |
19 | "vue": "^2.6.11", | 20 | "vue": "^2.6.11", |
20 | "vue-class-component": "^7.2.3", | 21 | "vue-class-component": "^7.2.3", |
diff --git a/viewer/src/components/LdPicture.vue b/viewer/src/components/LdPicture.vue index 3170c81..622165d 100644 --- a/viewer/src/components/LdPicture.vue +++ b/viewer/src/components/LdPicture.vue | |||
@@ -19,31 +19,37 @@ | |||
19 | 19 | ||
20 | <template> | 20 | <template> |
21 | <div | 21 | <div |
22 | ref="containerElement" | ||
22 | v-dragscroll | 23 | v-dragscroll |
23 | class="scrollbar" | 24 | class="scrollbar ld-picture-container" |
24 | :class="{'fit-to-screen': !$uiStore.fullscreen, 'original-size': $uiStore.fullscreen}" | ||
25 | @click.capture="e => dragScrollClickFix.onClickCapture(e)" | 25 | @click.capture="e => dragScrollClickFix.onClickCapture(e)" |
26 | @click="$uiStore.toggleFullscreen()" | 26 | @dblclick="$uiStore.toggleFullscreen()" |
27 | @dragstart.prevent | ||
27 | @dragscrollstart="dragScrollClickFix.onDragScrollStart()" | 28 | @dragscrollstart="dragScrollClickFix.onDragScrollStart()" |
28 | @dragscrollend="dragScrollClickFix.onDragScrollEnd()" | 29 | @dragscrollend="dragScrollClickFix.onDragScrollEnd()" |
29 | > | 30 | > |
30 | <v-lazy-image | 31 | <v-lazy-image |
32 | ref="imageElement" | ||
31 | :src="pictureSrc(picture.properties.resource)" | 33 | :src="pictureSrc(picture.properties.resource)" |
34 | class="ld-picture-element" | ||
32 | :class="{'slow-loading': Boolean(slowLoadingStyle)}" | 35 | :class="{'slow-loading': Boolean(slowLoadingStyle)}" |
33 | :style="slowLoadingStyle" | 36 | :style="slowLoadingStyle" |
34 | @load="clearSlowLoading" | 37 | @load="lazyImageLoaded" |
35 | /> | 38 | /> |
36 | <b-loading :active="loader" :is-full-page="false" class="ld-picture-loader" /> | 39 | <b-loading :active="loader" :is-full-page="false" class="ld-picture-loader" /> |
37 | </div> | 40 | </div> |
38 | </template> | 41 | </template> |
39 | 42 | ||
40 | <script lang="ts"> | 43 | <script lang="ts"> |
41 | import { Component, Vue, Prop } from "vue-property-decorator"; | 44 | import { Component, Vue, Prop, Ref } from "vue-property-decorator"; |
45 | import LdZoom from "@/services/ldzoom"; | ||
42 | import DragScrollClickFix from "@/services/dragscrollclickfix"; | 46 | import DragScrollClickFix from "@/services/dragscrollclickfix"; |
43 | 47 | ||
44 | @Component | 48 | @Component |
45 | export default class LdPicture extends Vue { | 49 | export default class LdPicture extends Vue { |
46 | @Prop({ required: true }) readonly picture!: Gallery.Picture; | 50 | @Prop({ required: true }) readonly picture!: Gallery.Picture; |
51 | @Ref() readonly containerElement!: HTMLDivElement; | ||
52 | @Ref() readonly imageElement!: any; // FIXME: no typedef for v-lazy-image | ||
47 | 53 | ||
48 | readonly SLOW_LOADING_TIMEOUT_MS: number = 1500; | 54 | readonly SLOW_LOADING_TIMEOUT_MS: number = 1500; |
49 | readonly dragScrollClickFix = new DragScrollClickFix(); | 55 | readonly dragScrollClickFix = new DragScrollClickFix(); |
@@ -60,6 +66,11 @@ export default class LdPicture extends Vue { | |||
60 | this.clearSlowLoading(); | 66 | this.clearSlowLoading(); |
61 | } | 67 | } |
62 | 68 | ||
69 | lazyImageLoaded() { | ||
70 | this.clearSlowLoading(); | ||
71 | new LdZoom(this.containerElement, this.imageElement.$el, 10, 1 / 5).install(); | ||
72 | } | ||
73 | |||
63 | clearSlowLoading() { | 74 | clearSlowLoading() { |
64 | if (this.timer) clearTimeout(this.timer); | 75 | if (this.timer) clearTimeout(this.timer); |
65 | this.timer = null; | 76 | this.timer = null; |
@@ -85,13 +96,17 @@ export default class LdPicture extends Vue { | |||
85 | <style lang="scss"> | 96 | <style lang="scss"> |
86 | @import "~@/assets/scss/theme.scss"; | 97 | @import "~@/assets/scss/theme.scss"; |
87 | 98 | ||
88 | .ld-picture-loader { | 99 | .ld-picture-container { |
89 | position: relative; | 100 | height: 100%; |
90 | & .loading-background { | 101 | } |
91 | background: none !important; | 102 | |
92 | } | 103 | .ld-picture-element { |
104 | max-width: unset; | ||
105 | max-height: unset; | ||
106 | cursor: grab; | ||
93 | } | 107 | } |
94 | img.slow-loading { | 108 | |
109 | .slow-loading { | ||
95 | background-repeat: no-repeat; | 110 | background-repeat: no-repeat; |
96 | background-position: center; | 111 | background-position: center; |
97 | background-size: contain; | 112 | background-size: contain; |
@@ -99,25 +114,11 @@ img.slow-loading { | |||
99 | background-blend-mode: soft-light; | 114 | background-blend-mode: soft-light; |
100 | opacity: 1 !important; | 115 | opacity: 1 !important; |
101 | } | 116 | } |
102 | .fit-to-screen { | 117 | |
103 | display: flex; | 118 | .ld-picture-loader { |
104 | justify-content: space-around; | 119 | position: relative; |
105 | height: 100%; | 120 | & .loading-background { |
106 | & > img { | 121 | background: none !important; |
107 | object-fit: contain; | ||
108 | cursor: zoom-in; | ||
109 | } | ||
110 | } | ||
111 | .original-size { | ||
112 | display: block; | ||
113 | text-align: center; | ||
114 | cursor: grab; | ||
115 | height: 100%; | ||
116 | & > img { | ||
117 | max-width: unset; | ||
118 | max-height: unset; | ||
119 | object-fit: none; | ||
120 | cursor: zoom-out; | ||
121 | } | 122 | } |
122 | } | 123 | } |
123 | </style> | 124 | </style> |
diff --git a/viewer/src/services/ldzoom.ts b/viewer/src/services/ldzoom.ts new file mode 100644 index 0000000..f001805 --- /dev/null +++ b/viewer/src/services/ldzoom.ts | |||
@@ -0,0 +1,92 @@ | |||
1 | /* ldgallery - A static generator which turns a collection of tagged | ||
2 | -- pictures into a searchable web gallery. | ||
3 | -- | ||
4 | -- Copyright (C) 2020 Pacien TRAN-GIRARD | ||
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 | // polyfill still required for IE and Safari, see https://caniuse.com/#feat=resizeobserver | ||
21 | import ResizeObserver from 'resize-observer-polyfill'; | ||
22 | |||
23 | /** | ||
24 | * Mousewheel picture zoom helper. | ||
25 | */ | ||
26 | export default class LdZoom { | ||
27 | readonly containerElement: HTMLDivElement; | ||
28 | readonly imageElement: HTMLImageElement; | ||
29 | readonly maxScaleFactor: number; | ||
30 | readonly zoomSpeed: number; | ||
31 | scaleFactor: number; | ||
32 | |||
33 | constructor( | ||
34 | containerElement: HTMLDivElement, imageElement: HTMLImageElement, | ||
35 | maxScaleFactor: number, zoomSpeed: number | ||
36 | ) { | ||
37 | this.containerElement = containerElement; | ||
38 | this.imageElement = imageElement; | ||
39 | this.maxScaleFactor = maxScaleFactor; | ||
40 | this.zoomSpeed = zoomSpeed; | ||
41 | this.scaleFactor = imageElement.clientWidth / imageElement.naturalWidth; | ||
42 | } | ||
43 | |||
44 | public install() { | ||
45 | new ResizeObserver(() => { | ||
46 | this.setImageScale(this.scaleFactor); | ||
47 | this.recenterImageElement(); | ||
48 | }).observe(this.containerElement); | ||
49 | |||
50 | this.containerElement.addEventListener('wheel', wheelEvent => { | ||
51 | wheelEvent.preventDefault(); | ||
52 | this.zoom(wheelEvent); | ||
53 | }); | ||
54 | |||
55 | // TODO: handle pinch-to-zoom. | ||
56 | |||
57 | this.recenterImageElement(); | ||
58 | } | ||
59 | |||
60 | /** | ||
61 | * Centers the image element inside its container if it fits, or stick to the top and left borders otherwise. | ||
62 | * It's depressingly hard to do in pure CSS… | ||
63 | */ | ||
64 | private recenterImageElement() { | ||
65 | const marginLeft = Math.max((this.containerElement.clientWidth - this.imageElement.clientWidth) / 2, 0); | ||