2018-07-10 11:57:11 +00:00
|
|
|
<template>
|
2019-11-25 19:37:51 +00:00
|
|
|
<div
|
|
|
|
v-if="link.shown"
|
|
|
|
v-show="link.sourceLoaded || link.type === 'link'"
|
|
|
|
ref="container"
|
|
|
|
class="preview"
|
|
|
|
dir="ltr"
|
|
|
|
>
|
2018-07-12 08:26:12 +00:00
|
|
|
<div
|
|
|
|
ref="content"
|
2019-07-17 09:33:59 +00:00
|
|
|
:class="['toggle-content', 'toggle-type-' + link.type, {opened: isContentShown}]"
|
2019-02-25 05:38:13 +00:00
|
|
|
>
|
2018-07-10 11:57:11 +00:00
|
|
|
<template v-if="link.type === 'link'">
|
2018-07-10 12:04:25 +00:00
|
|
|
<a
|
|
|
|
v-if="link.thumb"
|
2019-11-25 19:37:51 +00:00
|
|
|
v-show="link.sourceLoaded"
|
2018-07-10 12:04:25 +00:00
|
|
|
:href="link.link"
|
|
|
|
class="toggle-thumbnail"
|
|
|
|
target="_blank"
|
2019-02-25 05:38:13 +00:00
|
|
|
rel="noopener"
|
2019-09-20 18:10:48 +00:00
|
|
|
@click="onThumbnailClick"
|
2019-02-25 05:38:13 +00:00
|
|
|
>
|
2018-07-10 12:04:25 +00:00
|
|
|
<img
|
|
|
|
:src="link.thumb"
|
|
|
|
decoding="async"
|
|
|
|
alt=""
|
2018-07-10 14:44:50 +00:00
|
|
|
class="thumb"
|
2018-07-12 14:38:35 +00:00
|
|
|
@error="onThumbnailError"
|
|
|
|
@abort="onThumbnailError"
|
2019-02-25 05:38:13 +00:00
|
|
|
@load="onPreviewReady"
|
2019-07-17 09:33:59 +00:00
|
|
|
/>
|
2018-07-10 11:57:11 +00:00
|
|
|
</a>
|
2019-08-03 12:35:13 +00:00
|
|
|
<div class="toggle-text" dir="auto">
|
2018-07-10 11:57:11 +00:00
|
|
|
<div class="head">
|
|
|
|
<div class="overflowable">
|
2018-07-10 12:04:25 +00:00
|
|
|
<a
|
|
|
|
:href="link.link"
|
|
|
|
:title="link.head"
|
|
|
|
target="_blank"
|
2019-02-25 05:38:13 +00:00
|
|
|
rel="noopener"
|
2019-07-17 09:33:59 +00:00
|
|
|
>{{ link.head }}</a
|
|
|
|
>
|
2018-07-10 11:57:11 +00:00
|
|
|
</div>
|
|
|
|
|
2018-07-10 12:04:25 +00:00
|
|
|
<button
|
2018-07-12 08:26:12 +00:00
|
|
|
v-if="showMoreButton"
|
|
|
|
:aria-expanded="isContentShown"
|
|
|
|
:aria-label="moreButtonLabel"
|
2019-08-03 12:35:13 +00:00
|
|
|
dir="auto"
|
2018-07-10 12:04:25 +00:00
|
|
|
class="more"
|
2019-02-25 05:38:13 +00:00
|
|
|
@click="onMoreClick"
|
2019-07-17 09:33:59 +00:00
|
|
|
>
|
|
|
|
<span class="more-caret" />
|
|
|
|
</button>
|
2018-07-10 11:57:11 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="body overflowable">
|
2019-07-17 09:33:59 +00:00
|
|
|
<a :href="link.link" :title="link.body" target="_blank" rel="noopener">{{
|
|
|
|
link.body
|
|
|
|
}}</a>
|
2018-07-10 11:57:11 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="link.type === 'image'">
|
2019-09-20 18:10:48 +00:00
|
|
|
<a
|
|
|
|
:href="link.link"
|
|
|
|
class="toggle-thumbnail"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener"
|
|
|
|
@click="onThumbnailClick"
|
|
|
|
>
|
2019-11-25 19:37:51 +00:00
|
|
|
<img
|
|
|
|
v-show="link.sourceLoaded"
|
|
|
|
:src="link.thumb"
|
|
|
|
decoding="async"
|
|
|
|
alt=""
|
|
|
|
@load="onPreviewReady"
|
|
|
|
/>
|
2018-07-10 11:57:11 +00:00
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="link.type === 'video'">
|
2019-11-25 19:37:51 +00:00
|
|
|
<video
|
|
|
|
v-show="link.sourceLoaded"
|
|
|
|
preload="metadata"
|
|
|
|
controls
|
|
|
|
@canplay="onPreviewReady"
|
|
|
|
>
|
2019-07-17 09:33:59 +00:00
|
|
|
<source :src="link.media" :type="link.mediaType" />
|
2018-07-10 11:57:11 +00:00
|
|
|
</video>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="link.type === 'audio'">
|
2019-11-25 19:37:51 +00:00
|
|
|
<audio
|
|
|
|
v-show="link.sourceLoaded"
|
|
|
|
controls
|
|
|
|
preload="metadata"
|
|
|
|
@canplay="onPreviewReady"
|
|
|
|
>
|
2019-07-17 09:33:59 +00:00
|
|
|
<source :src="link.media" :type="link.mediaType" />
|
2018-07-10 11:57:11 +00:00
|
|
|
</audio>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="link.type === 'error'">
|
|
|
|
<em v-if="link.error === 'image-too-big'">
|
2019-11-05 10:36:44 +00:00
|
|
|
This image is larger than {{ imageMaxSize }} and cannot be previewed.
|
2019-07-17 09:33:59 +00:00
|
|
|
<a :href="link.link" target="_blank" rel="noopener">Click here</a>
|
2018-07-10 11:57:11 +00:00
|
|
|
to open it in a new window.
|
|
|
|
</em>
|
|
|
|
<template v-else-if="link.error === 'message'">
|
|
|
|
<div>
|
|
|
|
<em>
|
|
|
|
A preview could not be loaded.
|
2019-07-17 09:33:59 +00:00
|
|
|
<a :href="link.link" target="_blank" rel="noopener">Click here</a>
|
2018-07-10 11:57:11 +00:00
|
|
|
to open it in a new window.
|
|
|
|
</em>
|
2019-07-17 09:33:59 +00:00
|
|
|
<br />
|
2018-07-10 12:04:25 +00:00
|
|
|
<pre class="prefetch-error">{{ link.message }}</pre>
|
2018-07-10 11:57:11 +00:00
|
|
|
</div>
|
|
|
|
|
2018-07-10 12:04:25 +00:00
|
|
|
<button
|
2018-07-12 08:26:12 +00:00
|
|
|
:aria-expanded="isContentShown"
|
|
|
|
:aria-label="moreButtonLabel"
|
2018-07-10 12:04:25 +00:00
|
|
|
class="more"
|
2019-02-25 05:38:13 +00:00
|
|
|
@click="onMoreClick"
|
2019-07-17 09:33:59 +00:00
|
|
|
>
|
|
|
|
<span class="more-caret" />
|
|
|
|
</button>
|
2018-07-10 11:57:11 +00:00
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2019-11-16 17:24:03 +00:00
|
|
|
import friendlysize from "../js/helpers/friendlysize";
|
2019-11-05 10:36:44 +00:00
|
|
|
|
2018-07-10 11:57:11 +00:00
|
|
|
export default {
|
|
|
|
name: "LinkPreview",
|
|
|
|
props: {
|
|
|
|
link: Object,
|
2018-07-13 10:43:11 +00:00
|
|
|
keepScrollPosition: Function,
|
2020-03-09 16:39:05 +00:00
|
|
|
channel: Object,
|
2018-07-10 11:57:11 +00:00
|
|
|
},
|
2018-07-12 08:26:12 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
showMoreButton: false,
|
|
|
|
isContentShown: false,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
moreButtonLabel() {
|
|
|
|
return this.isContentShown ? "Less" : "More";
|
|
|
|
},
|
2019-11-05 10:36:44 +00:00
|
|
|
imageMaxSize() {
|
2019-11-25 19:37:51 +00:00
|
|
|
if (!this.link.maxSize) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-05 10:36:44 +00:00
|
|
|
return friendlysize(this.link.maxSize);
|
|
|
|
},
|
2018-07-12 08:26:12 +00:00
|
|
|
},
|
2018-07-13 10:43:11 +00:00
|
|
|
watch: {
|
|
|
|
"link.type"() {
|
2018-10-01 14:08:46 +00:00
|
|
|
this.updateShownState();
|
2018-07-13 10:43:11 +00:00
|
|
|
this.onPreviewUpdate();
|
|
|
|
},
|
|
|
|
},
|
2018-09-24 10:39:02 +00:00
|
|
|
created() {
|
2018-10-01 14:08:46 +00:00
|
|
|
this.updateShownState();
|
2018-09-24 10:39:02 +00:00
|
|
|
},
|
2018-07-10 14:44:50 +00:00
|
|
|
mounted() {
|
2018-08-31 18:37:39 +00:00
|
|
|
this.$root.$on("resize", this.handleResize);
|
2018-08-31 18:15:46 +00:00
|
|
|
|
2018-07-13 10:43:11 +00:00
|
|
|
this.onPreviewUpdate();
|
2018-07-10 14:44:50 +00:00
|
|
|
},
|
2018-08-31 18:37:39 +00:00
|
|
|
beforeDestroy() {
|
|
|
|
this.$root.$off("resize", this.handleResize);
|
|
|
|
},
|
2018-07-13 20:03:36 +00:00
|
|
|
destroyed() {
|
|
|
|
// Let this preview go through load/canplay events again,
|
|
|
|
// Otherwise the browser can cause a resize on video elements
|
2019-11-25 19:37:51 +00:00
|
|
|
this.link.sourceLoaded = false;
|
2018-07-13 20:03:36 +00:00
|
|
|
},
|
2018-07-10 14:44:50 +00:00
|
|
|
methods: {
|
2018-07-13 10:43:11 +00:00
|
|
|
onPreviewUpdate() {
|
2018-09-24 10:41:56 +00:00
|
|
|
// Don't display previews while they are loading on the server
|
|
|
|
if (this.link.type === "loading") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-25 19:37:51 +00:00
|
|
|
// Error does not have any media to render
|
2018-07-13 10:43:11 +00:00
|
|
|
if (this.link.type === "error") {
|
|
|
|
this.onPreviewReady();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If link doesn't have a thumbnail, render it
|
2019-11-25 19:37:51 +00:00
|
|
|
if (this.link.type === "link") {
|
|
|
|
this.handleResize();
|
|
|
|
this.keepScrollPosition();
|
2018-07-13 10:43:11 +00:00
|
|
|
}
|
|
|
|
},
|
2018-07-10 14:44:50 +00:00
|
|
|
onPreviewReady() {
|
2019-11-25 19:37:51 +00:00
|
|
|
this.$set(this.link, "sourceLoaded", true);
|
2018-07-12 14:38:35 +00:00
|
|
|
|
2018-07-13 10:43:11 +00:00
|
|
|
this.keepScrollPosition();
|
2018-07-12 14:38:35 +00:00
|
|
|
|
2019-11-25 19:37:51 +00:00
|
|
|
if (this.link.type === "link") {
|
|
|
|
this.handleResize();
|
2018-07-12 14:38:35 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
onThumbnailError() {
|
|
|
|
// If thumbnail fails to load, hide it and show the preview without it
|
|
|
|
this.link.thumb = "";
|
|
|
|
this.onPreviewReady();
|
2018-07-10 14:44:50 +00:00
|
|
|
},
|
2019-09-20 18:10:48 +00:00
|
|
|
onThumbnailClick(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
const imageViewer = this.$root.$refs.app.$refs.imageViewer;
|
2020-03-09 16:39:05 +00:00
|
|
|
imageViewer.channel = this.channel;
|
2019-09-20 18:10:48 +00:00
|
|
|
imageViewer.link = this.link;
|
|
|
|
},
|
2018-07-12 08:26:12 +00:00
|
|
|
onMoreClick() {
|
|
|
|
this.isContentShown = !this.isContentShown;
|
2018-07-25 11:04:10 +00:00
|
|
|
this.keepScrollPosition();
|
2018-07-12 08:26:12 +00:00
|
|
|
},
|
2018-08-31 18:15:46 +00:00
|
|
|
handleResize() {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
if (!this.$refs.content) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-07-17 09:33:59 +00:00
|
|
|
this.showMoreButton =
|
|
|
|
this.$refs.content.offsetWidth >= this.$refs.container.offsetWidth;
|
2018-08-31 18:15:46 +00:00
|
|
|
});
|
|
|
|
},
|
2018-10-01 14:08:46 +00:00
|
|
|
updateShownState() {
|
2019-12-23 10:26:57 +00:00
|
|
|
// User has manually toggled the preview, do not apply default
|
|
|
|
if (this.link.shown !== null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let defaultState = false;
|
2018-10-01 14:08:46 +00:00
|
|
|
|
|
|
|
switch (this.link.type) {
|
2019-07-17 09:33:59 +00:00
|
|
|
case "error":
|
2019-12-23 10:15:23 +00:00
|
|
|
// Collapse all errors by default unless its a message about image being too big
|
2019-12-23 10:26:57 +00:00
|
|
|
if (this.link.error === "image-too-big") {
|
|
|
|
defaultState = this.$store.state.settings.media;
|
|
|
|
}
|
2019-07-17 09:33:59 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "link":
|
2019-11-03 18:05:19 +00:00
|
|
|
defaultState = this.$store.state.settings.links;
|
2019-07-17 09:33:59 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2019-11-03 18:05:19 +00:00
|
|
|
defaultState = this.$store.state.settings.media;
|
2018-10-01 14:08:46 +00:00
|
|
|
}
|
|
|
|
|
2019-12-23 10:26:57 +00:00
|
|
|
this.link.shown = defaultState;
|
2018-10-01 14:08:46 +00:00
|
|
|
},
|
2018-07-10 14:44:50 +00:00
|
|
|
},
|
2018-07-10 11:57:11 +00:00
|
|
|
};
|
|
|
|
</script>
|