Minor fix for previews
This commit is contained in:
parent
2ab3518c52
commit
0654a4373f
@ -1,6 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="preview">
|
<div
|
||||||
<div :class="['toggle-content', 'toggle-type-' + link.type, {show: link.shown}]">
|
v-if="link.shown && link.canDisplay"
|
||||||
|
class="preview">
|
||||||
|
<div :class="['toggle-content', 'toggle-type-' + link.type]">
|
||||||
<template v-if="link.type === 'link'">
|
<template v-if="link.type === 'link'">
|
||||||
<a
|
<a
|
||||||
v-if="link.thumb"
|
v-if="link.thumb"
|
||||||
@ -12,7 +14,8 @@
|
|||||||
:src="link.thumb"
|
:src="link.thumb"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
alt=""
|
alt=""
|
||||||
class="thumb">
|
class="thumb"
|
||||||
|
@load="onPreviewReady">
|
||||||
</a>
|
</a>
|
||||||
<div class="toggle-text">
|
<div class="toggle-text">
|
||||||
<div class="head">
|
<div class="head">
|
||||||
@ -53,13 +56,15 @@
|
|||||||
<img
|
<img
|
||||||
:src="link.thumb"
|
:src="link.thumb"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
alt="">
|
alt=""
|
||||||
|
@load="onPreviewReady">
|
||||||
</a>
|
</a>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="link.type === 'video'">
|
<template v-else-if="link.type === 'video'">
|
||||||
<video
|
<video
|
||||||
preload="metadata"
|
preload="metadata"
|
||||||
controls>
|
controls
|
||||||
|
@canplay="onPreviewReady">
|
||||||
<source
|
<source
|
||||||
:src="link.media"
|
:src="link.media"
|
||||||
:type="link.mediaType">
|
:type="link.mediaType">
|
||||||
@ -68,7 +73,8 @@
|
|||||||
<template v-else-if="link.type === 'audio'">
|
<template v-else-if="link.type === 'audio'">
|
||||||
<audio
|
<audio
|
||||||
controls
|
controls
|
||||||
preload="metadata">
|
preload="metadata"
|
||||||
|
@canplay="onPreviewReady">
|
||||||
<source
|
<source
|
||||||
:src="link.media"
|
:src="link.media"
|
||||||
:type="link.mediaType">
|
:type="link.mediaType">
|
||||||
@ -117,5 +123,16 @@ export default {
|
|||||||
props: {
|
props: {
|
||||||
link: Object,
|
link: Object,
|
||||||
},
|
},
|
||||||
|
mounted() {
|
||||||
|
if (this.link.shown) {
|
||||||
|
const options = require("../js/options");
|
||||||
|
this.$set(this.link, "canDisplay", options.shouldOpenMessagePreview(this.link.type));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
onPreviewReady() {
|
||||||
|
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -1382,12 +1382,13 @@ background on hover (unless active) */
|
|||||||
#chat .toggle-content {
|
#chat .toggle-content {
|
||||||
background: #f6f6f6;
|
background: #f6f6f6;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
display: none;
|
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-top: 6px;
|
margin-top: 6px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
|
||||||
|
display: inline-flex !important;
|
||||||
|
align-items: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This applies to images of preview-type-image and thumbnails of preview-type-link */
|
/* This applies to images of preview-type-image and thumbnails of preview-type-link */
|
||||||
@ -1478,11 +1479,6 @@ background on hover (unless active) */
|
|||||||
content: "\f0da"; /* https://fontawesome.com/icons/caret-right?style=solid */
|
content: "\f0da"; /* https://fontawesome.com/icons/caret-right?style=solid */
|
||||||
}
|
}
|
||||||
|
|
||||||
#chat .toggle-content.show {
|
|
||||||
display: inline-flex !important;
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
|
|
||||||
#chat audio {
|
#chat audio {
|
||||||
width: 600px;
|
width: 600px;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
Loading…
Reference in New Issue
Block a user