2016-10-29 03:08:03 +11:00
|
|
|
<template>
|
2019-07-05 17:17:44 +10:00
|
|
|
<div
|
2020-06-29 21:48:22 +10:00
|
|
|
v-if="usePlaceholder"
|
2019-07-05 17:17:44 +10:00
|
|
|
@click="openModal"
|
|
|
|
>
|
|
|
|
<a
|
2019-01-27 02:45:03 +11:00
|
|
|
v-if="type !== 'html'"
|
2019-07-05 17:17:44 +10:00
|
|
|
class="placeholder"
|
|
|
|
target="_blank"
|
|
|
|
:href="attachment.url"
|
2020-06-29 21:48:22 +10:00
|
|
|
:alt="attachment.description"
|
|
|
|
:title="attachment.description"
|
2019-01-27 02:45:03 +11:00
|
|
|
>
|
2020-06-29 21:48:22 +10:00
|
|
|
<span :class="placeholderIconClass" />
|
|
|
|
<b>{{ nsfw ? "NSFW / " : "" }}</b>{{ placeholderName }}
|
2019-01-27 02:45:03 +11:00
|
|
|
</a>
|
2018-04-10 02:43:31 +10:00
|
|
|
</div>
|
2019-01-15 04:23:13 +11:00
|
|
|
<div
|
2019-07-05 17:17:44 +10:00
|
|
|
v-else
|
2019-01-15 04:23:13 +11:00
|
|
|
v-show="!isEmpty"
|
2019-07-05 17:17:44 +10:00
|
|
|
class="attachment"
|
|
|
|
:class="{[type]: true, loading, 'fullwidth': fullwidth, 'nsfw-placeholder': hidden}"
|
2019-01-15 04:23:13 +11:00
|
|
|
>
|
2019-07-05 17:17:44 +10:00
|
|
|
<a
|
|
|
|
v-if="hidden"
|
|
|
|
class="image-attachment"
|
|
|
|
:href="attachment.url"
|
2020-06-29 21:48:22 +10:00
|
|
|
:alt="attachment.description"
|
|
|
|
:title="attachment.description"
|
2019-07-05 17:17:44 +10:00
|
|
|
@click.prevent="toggleHidden"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
:key="nsfwImage"
|
|
|
|
class="nsfw"
|
|
|
|
:src="nsfwImage"
|
|
|
|
:class="{'small': isSmall}"
|
|
|
|
>
|
|
|
|
<i
|
|
|
|
v-if="type === 'video'"
|
|
|
|
class="play-icon icon-play-circled"
|
|
|
|
/>
|
2016-10-29 03:08:03 +11:00
|
|
|
</a>
|
2019-07-05 17:17:44 +10:00
|
|
|
<div
|
|
|
|
v-if="nsfw && hideNsfwLocal && !hidden"
|
|
|
|
class="hider"
|
|
|
|
>
|
|
|
|
<a
|
|
|
|
href="#"
|
|
|
|
@click.prevent="toggleHidden"
|
|
|
|
>Hide</a>
|
2019-01-27 02:45:03 +11:00
|
|
|
</div>
|
2019-01-20 21:46:11 +11:00
|
|
|
|
2019-07-05 17:17:44 +10:00
|
|
|
<a
|
|
|
|
v-if="type === 'image' && (!hidden || preloadImage)"
|
2019-01-15 04:23:13 +11:00
|
|
|
class="image-attachment"
|
2019-01-27 02:45:03 +11:00
|
|
|
:class="{'hidden': hidden && preloadImage }"
|
2019-07-05 17:17:44 +10:00
|
|
|
:href="attachment.url"
|
|
|
|
target="_blank"
|
|
|
|
@click="openModal"
|
2019-01-15 04:23:13 +11:00
|
|
|
>
|
2019-07-05 17:17:44 +10:00
|
|
|
<StillImage
|
|
|
|
:referrerpolicy="referrerpolicy"
|
|
|
|
:mimetype="attachment.mimetype"
|
|
|
|
:src="attachment.large_thumb_url || attachment.url"
|
2019-10-19 07:04:17 +11:00
|
|
|
:image-load-handler="onImageLoad"
|
2019-02-18 16:03:26 +11:00
|
|
|
:alt="attachment.description"
|
2019-07-05 17:17:44 +10:00
|
|
|
/>
|
2016-11-26 11:19:25 +11:00
|
|
|
</a>
|
2016-10-29 03:08:03 +11:00
|
|
|
|
2019-07-05 17:17:44 +10:00
|
|
|
<a
|
2019-01-20 21:46:11 +11:00
|
|
|
v-if="type === 'video' && !hidden"
|
2019-07-05 17:17:44 +10:00
|
|
|
class="video-container"
|
2019-01-20 21:46:11 +11:00
|
|
|
:class="{'small': isSmall}"
|
2019-01-27 02:59:59 +11:00
|
|
|
:href="allowPlay ? undefined : attachment.url"
|
2019-07-05 17:17:44 +10:00
|
|
|
@click="openModal"
|
2019-01-20 21:46:11 +11:00
|
|
|
>
|
2019-07-05 17:17:44 +10:00
|
|
|
<VideoAttachment
|
|
|
|
class="video"
|
|
|
|
:attachment="attachment"
|
|
|
|
:controls="allowPlay"
|
|
|
|
/>
|
|
|
|
<i
|
|
|
|
v-if="!allowPlay"
|
|
|
|
class="play-icon icon-play-circled"
|
|
|
|
/>
|
2019-01-20 21:46:11 +11:00
|
|
|
</a>
|
2016-10-29 03:08:03 +11:00
|
|
|
|
2019-07-05 17:17:44 +10:00
|
|
|
<audio
|
|
|
|
v-if="type === 'audio'"
|
|
|
|
:src="attachment.url"
|
2020-06-29 21:48:22 +10:00
|
|
|
:alt="attachment.description"
|
|
|
|
:title="attachment.description"
|
2019-07-05 17:17:44 +10:00
|
|
|
controls
|
|
|
|
/>
|
2016-11-23 05:45:18 +11:00
|
|
|
|
2019-07-05 17:17:44 +10:00
|
|
|
<div
|
|
|
|
v-if="type === 'html' && attachment.oembed"
|
|
|
|
class="oembed"
|
|
|
|
@click.prevent="linkClicked"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
v-if="attachment.thumb_url"
|
|
|
|
class="image"
|
|
|
|
>
|
|
|
|
<img :src="attachment.thumb_url">
|
2016-10-29 10:38:41 +11:00
|
|
|
</div>
|
|
|
|
<div class="text">
|
2019-07-07 07:54:17 +10:00
|
|
|
<!-- eslint-disable vue/no-v-html -->
|
2019-07-05 17:17:44 +10:00
|
|
|
<h1><a :href="attachment.url">{{ attachment.oembed.title }}</a></h1>
|
|
|
|
<div v-html="attachment.oembed.oembedHTML" />
|
2019-07-13 05:11:54 +10:00
|
|
|
<!-- eslint-enable vue/no-v-html -->
|
2016-10-29 10:38:41 +11:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-10-29 03:08:03 +11:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./attachment.js"></script>
|
2016-10-29 10:38:41 +11:00
|
|
|
|
|
|
|
<style lang="scss">
|
2018-04-01 12:28:20 +10:00
|
|
|
@import '../../_variables.scss';
|
|
|
|
|
2018-04-01 04:14:36 +10:00
|
|
|
.attachments {
|
2018-04-08 02:30:27 +10:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
2020-06-29 21:48:22 +10:00
|
|
|
.non-gallery {
|
2018-04-08 02:30:27 +10:00
|
|
|
max-width: 100%;
|
2018-04-10 07:28:24 +10:00
|
|
|
}
|
2018-04-08 04:58:29 +10:00
|
|
|
|
2018-04-10 07:28:24 +10:00
|
|
|
.placeholder {
|
2020-06-29 21:48:22 +10:00
|
|
|
display: inline-block;
|
|
|
|
padding: 0.3em 1em 0.3em 0;
|
2020-02-12 10:26:01 +11:00
|
|
|
color: $fallback--link;
|
|
|
|
color: var(--postLink, $fallback--link);
|
2020-06-29 21:48:22 +10:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: 100%;
|
2018-04-10 07:28:24 +10:00
|
|
|
}
|
|
|
|
|
2018-08-15 18:20:40 +10:00
|
|
|
.nsfw-placeholder {
|
|
|
|
cursor: pointer;
|
2018-08-30 23:11:31 +10:00
|
|
|
|
|
|
|
&.loading {
|
|
|
|
cursor: progress;
|
|
|
|
}
|
2018-08-15 18:20:40 +10:00
|
|
|
}
|
|
|
|
|
2018-04-08 02:30:27 +10:00
|
|
|
.attachment {
|
2018-08-30 23:21:10 +10:00
|
|
|
position: relative;
|
2019-03-03 03:35:38 +11:00
|
|
|
margin-top: 0.5em;
|
2018-04-08 02:30:27 +10:00
|
|
|
align-self: flex-start;
|
2018-04-11 05:12:59 +10:00
|
|
|
line-height: 0;
|
2018-04-08 02:30:27 +10:00
|
|
|
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
border-radius: $fallback--attachmentRadius;
|
|
|
|
border-radius: var(--attachmentRadius, $fallback--attachmentRadius);
|
2018-04-10 07:28:24 +10:00
|
|
|
border-color: $fallback--border;
|
|
|
|
border-color: var(--border, $fallback--border);
|
2018-04-08 02:30:27 +10:00
|
|
|
overflow: hidden;
|
2018-04-10 07:28:24 +10:00
|
|
|
}
|
2019-01-27 02:45:03 +11:00
|
|
|
|
|
|
|
.non-gallery.attachment {
|
|
|
|
&.video {
|
|
|
|
flex: 1 0 40%;
|
|
|
|
}
|
|
|
|
.nsfw {
|
|
|
|
height: 260px;
|
|
|
|
}
|
|
|
|
.small {
|
|
|
|
height: 120px;
|
|
|
|
flex-grow: 0;
|
|
|
|
}
|
|
|
|
.video {
|
|
|
|
height: 260px;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
video {
|
|
|
|
max-height: 100%;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-14 22:45:38 +10:00
|
|
|
.fullwidth {
|
|
|
|
flex-basis: 100%;
|
|
|
|
}
|
2018-04-10 07:28:24 +10:00
|
|
|
// fixes small gap below video
|
|
|
|
&.video {
|
|
|
|
line-height: 0;
|
|
|
|
}
|
2018-04-08 02:30:27 +10:00
|
|
|
|
2019-01-20 21:46:11 +11:00
|
|
|
.video-container {
|
2019-01-27 02:45:03 +11:00
|
|
|
display: flex;
|
|
|
|
max-height: 100%;
|
2019-01-20 21:46:11 +11:00
|
|
|
}
|
|
|
|
|
2019-01-15 04:23:13 +11:00
|
|
|
.video {
|
2019-01-27 02:45:03 +11:00
|
|
|
width: 100%;
|
2019-08-26 21:08:30 +10:00
|
|
|
height: 100%;
|
2019-01-15 04:23:13 +11:00
|
|
|
}
|
|
|
|
|
2019-01-20 21:46:11 +11:00
|
|
|
.play-icon {
|
|
|
|
position: absolute;
|
|
|
|
font-size: 64px;
|
|
|
|
top: calc(50% - 32px);
|
|
|
|
left: calc(50% - 32px);
|
|
|
|
color: rgba(255, 255, 255, 0.75);
|
|
|
|
text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
.play-icon::before {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2018-04-10 07:28:24 +10:00
|
|
|
&.html {
|
|
|
|
flex-basis: 90%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
}
|
2018-04-01 04:14:36 +10:00
|
|
|
|
2018-04-10 07:28:24 +10:00
|
|
|
.hider {
|
|
|
|
position: absolute;
|
2019-02-15 04:21:10 +11:00
|
|
|
right: 0;
|
2019-01-27 02:45:03 +11:00
|
|
|
white-space: nowrap;
|
2018-04-10 07:28:24 +10:00
|
|
|
margin: 10px;
|
|
|
|
padding: 5px;
|
|
|
|
background: rgba(230,230,230,0.6);
|
|
|
|
font-weight: bold;
|
|
|
|
z-index: 4;
|
2018-04-15 23:45:05 +10:00
|
|
|
line-height: 1;
|
|
|
|
border-radius: $fallback--tooltipRadius;
|
|
|
|
border-radius: var(--tooltipRadius, $fallback--tooltipRadius);
|
2018-04-10 07:28:24 +10:00
|
|
|
}
|
2017-02-17 20:16:29 +11:00
|
|
|
|
2018-04-10 07:28:24 +10:00
|
|
|
video {
|
|
|
|
z-index: 0;
|
|
|
|
}
|
2018-04-01 04:14:36 +10:00
|
|
|
|
2018-04-10 07:28:24 +10:00
|
|
|
audio {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2018-04-01 04:14:36 +10:00
|
|
|
|
2018-04-10 07:28:24 +10:00
|
|
|
img.media-upload {
|
2018-04-11 05:12:59 +10:00
|
|
|
line-height: 0;
|
2019-01-27 02:45:03 +11:00
|
|
|
max-height: 200px;
|
2018-04-10 07:28:24 +10:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2018-04-01 04:14:36 +10:00
|
|
|
|
2018-04-10 07:28:24 +10:00
|
|
|
.oembed {
|
2018-04-12 02:47:03 +10:00
|
|
|
line-height: 1.2em;
|
2018-04-14 22:45:38 +10:00
|
|
|
flex: 1 0 100%;
|
2018-04-10 07:28:24 +10:00
|
|
|
width: 100%;
|
|
|
|
margin-right: 15px;
|
|
|
|
display: flex;
|
2018-04-01 04:14:36 +10:00
|
|
|
|
2018-04-10 07:28:24 +10:00
|
|
|
img {
|
2018-04-08 02:30:27 +10:00
|
|
|
width: 100%;
|
2018-04-10 07:28:24 +10:00
|
|
|
}
|
2018-04-08 02:30:27 +10:00
|
|
|
|
2018-04-10 07:28:24 +10:00
|
|
|
.image {
|
|
|
|
flex: 1;
|
2018-04-08 02:30:27 +10:00
|
|
|
img {
|
2018-04-10 07:28:24 +10:00
|
|
|
border: 0px;
|
2018-04-10 02:43:31 +10:00
|
|
|
border-radius: 5px;
|
2018-04-10 07:28:24 +10:00
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
2018-04-10 02:43:31 +10:00
|
|
|
}
|
2018-04-10 07:28:24 +10:00
|
|
|
}
|
2018-04-08 02:30:27 +10:00
|
|
|
|
2018-04-10 07:28:24 +10:00
|
|
|
.text {
|
|
|
|
flex: 2;
|
|
|
|
margin: 8px;
|
|
|
|
word-break: break-all;
|
|
|
|
h1 {
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 0px;
|
2018-04-10 02:43:31 +10:00
|
|
|
}
|
2018-04-08 02:30:27 +10:00
|
|
|
}
|
2018-04-10 07:28:24 +10:00
|
|
|
}
|
2017-11-13 08:50:18 +11:00
|
|
|
|
2018-04-10 07:28:24 +10:00
|
|
|
.image-attachment {
|
2019-01-27 02:45:03 +11:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2017-02-17 20:16:29 +11:00
|
|
|
|
2018-12-12 07:58:36 +11:00
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-01-27 02:45:03 +11:00
|
|
|
.nsfw {
|
|
|
|
object-fit: cover;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-04-01 04:14:36 +10:00
|
|
|
}
|
2018-04-10 07:28:24 +10:00
|
|
|
|
|
|
|
img {
|
2019-08-26 21:08:30 +10:00
|
|
|
image-orientation: from-image; // NOTE: only FF supports this
|
2018-04-10 07:28:24 +10:00
|
|
|
}
|
2018-04-08 02:30:27 +10:00
|
|
|
}
|
|
|
|
}
|
2016-10-29 10:38:41 +11:00
|
|
|
</style>
|