Implement navigation in image viewer.
This commit is contained in:
parent
e5596d9d81
commit
ef473b0f53
@ -9,6 +9,20 @@
|
|||||||
>
|
>
|
||||||
<template v-if="link !== null">
|
<template v-if="link !== null">
|
||||||
<button class="close-btn" aria-label="Close"></button>
|
<button class="close-btn" aria-label="Close"></button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
v-if="previousImage"
|
||||||
|
class="previous-image-btn"
|
||||||
|
aria-label="Previous image"
|
||||||
|
@click.stop="previous"
|
||||||
|
></button>
|
||||||
|
<button
|
||||||
|
v-if="nextImage"
|
||||||
|
class="next-image-btn"
|
||||||
|
aria-label="Next image"
|
||||||
|
@click.stop="next"
|
||||||
|
></button>
|
||||||
|
|
||||||
<a class="open-btn" :href="link.link" target="_blank" rel="noopener"></a>
|
<a class="open-btn" :href="link.link" target="_blank" rel="noopener"></a>
|
||||||
|
|
||||||
<img
|
<img
|
||||||
@ -25,11 +39,17 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import Mousetrap from "mousetrap";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "ImageViewer",
|
name: "ImageViewer",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
link: null,
|
link: null,
|
||||||
|
previousImage: null,
|
||||||
|
nextImage: null,
|
||||||
|
channel: null,
|
||||||
|
|
||||||
position: {
|
position: {
|
||||||
x: 0,
|
x: 0,
|
||||||
y: 0,
|
y: 0,
|
||||||
@ -62,14 +82,20 @@ export default {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.setPrevNextImages();
|
||||||
|
|
||||||
this.$root.$on("resize", this.correctPosition);
|
this.$root.$on("resize", this.correctPosition);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$root.$on("escapekey", this.closeViewer);
|
this.$root.$on("escapekey", this.closeViewer);
|
||||||
|
Mousetrap.bind("left", this.previous);
|
||||||
|
Mousetrap.bind("right", this.next);
|
||||||
},
|
},
|
||||||
destroyed() {
|
destroyed() {
|
||||||
this.$root.$off("escapekey", this.closeViewer);
|
this.$root.$off("escapekey", this.closeViewer);
|
||||||
|
Mousetrap.unbind("left", this.previous);
|
||||||
|
Mousetrap.unbind("right", this.next);
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
closeViewer() {
|
closeViewer() {
|
||||||
@ -78,8 +104,36 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.$root.$off("resize", this.correctPosition);
|
this.$root.$off("resize", this.correctPosition);
|
||||||
|
this.channel = null;
|
||||||
|
this.previousImage = null;
|
||||||
|
this.nextImage = null;
|
||||||
this.link = null;
|
this.link = null;
|
||||||
},
|
},
|
||||||
|
setPrevNextImages() {
|
||||||
|
if (!this.channel) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const links = this.channel.messages
|
||||||
|
.map((msg) => msg.previews)
|
||||||
|
.flat()
|
||||||
|
.filter((preview) => preview.thumb);
|
||||||
|
|
||||||
|
const currentIndex = links.indexOf(this.link);
|
||||||
|
|
||||||
|
this.previousImage = links[currentIndex - 1] || null;
|
||||||
|
this.nextImage = links[currentIndex + 1] || null;
|
||||||
|
},
|
||||||
|
previous() {
|
||||||
|
if (this.previousImage) {
|
||||||
|
this.link = this.previousImage;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
next() {
|
||||||
|
if (this.nextImage) {
|
||||||
|
this.link = this.nextImage;
|
||||||
|
}
|
||||||
|
},
|
||||||
onImageLoad() {
|
onImageLoad() {
|
||||||
this.prepareImage();
|
this.prepareImage();
|
||||||
},
|
},
|
||||||
|
@ -137,6 +137,7 @@ export default {
|
|||||||
props: {
|
props: {
|
||||||
link: Object,
|
link: Object,
|
||||||
keepScrollPosition: Function,
|
keepScrollPosition: Function,
|
||||||
|
channel: Object,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -214,6 +215,7 @@ export default {
|
|||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
const imageViewer = this.$root.$refs.app.$refs.imageViewer;
|
const imageViewer = this.$root.$refs.app.$refs.imageViewer;
|
||||||
|
imageViewer.channel = this.channel;
|
||||||
imageViewer.link = this.link;
|
imageViewer.link = this.link;
|
||||||
},
|
},
|
||||||
onMoreClick() {
|
onMoreClick() {
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
:key="preview.link"
|
:key="preview.link"
|
||||||
:keep-scroll-position="keepScrollPosition"
|
:keep-scroll-position="keepScrollPosition"
|
||||||
:link="preview"
|
:link="preview"
|
||||||
|
:channel="channel"
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
@ -70,6 +71,7 @@
|
|||||||
:key="preview.link"
|
:key="preview.link"
|
||||||
:keep-scroll-position="keepScrollPosition"
|
:keep-scroll-position="keepScrollPosition"
|
||||||
:link="preview"
|
:link="preview"
|
||||||
|
:channel="channel"
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
Loading…
Reference in New Issue
Block a user