2016-10-28 16:08:03 +00:00
|
|
|
<template>
|
2018-04-09 16:43:31 +00:00
|
|
|
<div v-if="size==='hide'">
|
2018-04-10 16:44:57 +00:00
|
|
|
<a class="placeholder" v-if="type !== 'html'" target="_blank" :href="attachment.url">[{{nsfw ? "NSFW/" : ""}}{{type.toUpperCase()}}]</a>
|
2018-04-09 16:43:31 +00:00
|
|
|
</div>
|
2018-04-14 12:45:38 +00:00
|
|
|
<div v-else class="attachment" :class="{[type]: true, loading, 'small-attachment': isSmall, 'fullwidth': fullwidth}" v-show="!isEmpty">
|
2017-03-09 03:23:10 +00:00
|
|
|
<a class="image-attachment" v-if="hidden" @click.prevent="toggleHidden()">
|
|
|
|
<img :key="nsfwImage" :src="nsfwImage"/>
|
2016-10-28 16:08:03 +00:00
|
|
|
</a>
|
2017-02-22 23:59:48 +00:00
|
|
|
<div class="hider" v-if="nsfw && hideNsfwLocal && !hidden">
|
2016-12-02 13:22:42 +00:00
|
|
|
<a href="#" @click.prevent="toggleHidden()">Hide</a>
|
|
|
|
</div>
|
2016-10-28 16:08:03 +00:00
|
|
|
|
2017-03-09 03:23:10 +00:00
|
|
|
<a v-if="type === 'image' && !hidden" class="image-attachment" :href="attachment.url" target="_blank">
|
2018-04-10 19:12:59 +00:00
|
|
|
<StillImage :class="{'small': isSmall}" referrerpolicy="no-referrer" :mimetype="attachment.mimetype" :src="attachment.large_thumb_url || attachment.url"/>
|
2016-11-26 00:19:25 +00:00
|
|
|
</a>
|
2016-10-28 16:08:03 +00:00
|
|
|
|
2018-04-10 19:12:59 +00:00
|
|
|
<video :class="{'small': isSmall}" v-if="type === 'video' && !hidden" :src="attachment.url" controls loop></video>
|
2016-10-28 16:08:03 +00:00
|
|
|
|
2016-11-22 18:45:18 +00:00
|
|
|
<audio v-if="type === 'audio'" :src="attachment.url" controls></audio>
|
|
|
|
|
2017-02-19 11:58:25 +00:00
|
|
|
<div @click.prevent="linkClicked" v-if="type === 'html' && attachment.oembed" class="oembed">
|
2016-10-28 23:38:41 +00:00
|
|
|
<div v-if="attachment.thumb_url" class="image">
|
2017-03-09 03:23:10 +00:00
|
|
|
<img :src="attachment.thumb_url"/>
|
2016-10-28 23:38:41 +00:00
|
|
|
</div>
|
|
|
|
<div class="text">
|
|
|
|
<h1><a :href="attachment.url">{{attachment.oembed.title}}</a></h1>
|
|
|
|
<div v-html="attachment.oembed.oembedHTML"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-10-28 16:08:03 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./attachment.js"></script>
|
2016-10-28 23:38:41 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
2018-04-01 02:28:20 +00:00
|
|
|
@import '../../_variables.scss';
|
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
.attachments {
|
2018-04-07 16:30:27 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-right: -0.7em;
|
|
|
|
|
|
|
|
.attachment.media-upload-container {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
max-height: 300px;
|
|
|
|
max-width: 100%;
|
2018-04-09 21:28:24 +00:00
|
|
|
}
|
2018-04-07 18:58:29 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
.placeholder {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.small-attachment {
|
|
|
|
&.image, &.video {
|
|
|
|
max-width: 35%;
|
2018-04-07 18:58:29 +00:00
|
|
|
}
|
2018-04-09 21:28:24 +00:00
|
|
|
max-height: 100px;
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.attachment {
|
|
|
|
flex: 1 0 30%;
|
|
|
|
margin: 0.5em 0.7em 0.6em 0.0em;
|
|
|
|
align-self: flex-start;
|
2018-04-10 19:12:59 +00:00
|
|
|
line-height: 0;
|
2018-04-07 16:30:27 +00:00
|
|
|
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
border-radius: $fallback--attachmentRadius;
|
|
|
|
border-radius: var(--attachmentRadius, $fallback--attachmentRadius);
|
2018-04-09 21:28:24 +00:00
|
|
|
border-color: $fallback--border;
|
|
|
|
border-color: var(--border, $fallback--border);
|
2018-04-07 16:30:27 +00:00
|
|
|
overflow: hidden;
|
2018-04-09 21:28:24 +00:00
|
|
|
}
|
2018-04-14 12:45:38 +00:00
|
|
|
.fullwidth {
|
|
|
|
flex-basis: 100%;
|
|
|
|
}
|
2018-04-09 21:28:24 +00:00
|
|
|
// fixes small gap below video
|
|
|
|
&.video {
|
|
|
|
line-height: 0;
|
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
&.html {
|
|
|
|
flex-basis: 90%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
&.loading {
|
|
|
|
cursor: progress;
|
|
|
|
}
|
2017-11-12 21:50:18 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
.hider {
|
|
|
|
position: absolute;
|
|
|
|
margin: 10px;
|
|
|
|
padding: 5px;
|
|
|
|
background: rgba(230,230,230,0.6);
|
|
|
|
font-weight: bold;
|
|
|
|
z-index: 4;
|
|
|
|
}
|
2017-02-17 09:16:29 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
.small {
|
|
|
|
max-height: 100px;
|
|
|
|
}
|
|
|
|
video {
|
|
|
|
max-height: 500px;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
audio {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
img.media-upload {
|
2018-04-10 19:12:59 +00:00
|
|
|
line-height: 0;
|
2018-04-09 21:28:24 +00:00
|
|
|
max-height: 300px;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
.oembed {
|
2018-04-11 16:47:03 +00:00
|
|
|
line-height: 1.2em;
|
2018-04-14 12:45:38 +00:00
|
|
|
flex: 1 0 100%;
|
2018-04-09 21:28:24 +00:00
|
|
|
width: 100%;
|
|
|
|
margin-right: 15px;
|
|
|
|
display: flex;
|
2018-03-31 18:14:36 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
img {
|
2018-04-07 16:30:27 +00:00
|
|
|
width: 100%;
|
2018-04-09 21:28:24 +00:00
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
.image {
|
|
|
|
flex: 1;
|
2018-04-07 16:30:27 +00:00
|
|
|
img {
|
2018-04-09 21:28:24 +00:00
|
|
|
border: 0px;
|
2018-04-09 16:43:31 +00:00
|
|
|
border-radius: 5px;
|
2018-04-09 21:28:24 +00:00
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2018-04-09 21:28:24 +00:00
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
.text {
|
|
|
|
flex: 2;
|
|
|
|
margin: 8px;
|
|
|
|
word-break: break-all;
|
|
|
|
h1 {
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 0px;
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2018-04-09 21:28:24 +00:00
|
|
|
}
|
2017-11-12 21:50:18 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
.image-attachment {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
2017-02-17 09:16:29 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
.still-image {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2017-03-09 03:23:10 +00:00
|
|
|
|
2018-04-09 21:28:24 +00:00
|
|
|
.small {
|
2018-04-07 16:30:27 +00:00
|
|
|
img {
|
2018-04-09 16:43:31 +00:00
|
|
|
max-height: 100px;
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2018-04-09 21:28:24 +00:00
|
|
|
|
|
|
|
img {
|
|
|
|
object-fit: contain;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%; /* If this isn't here, chrome will stretch the images */
|
|
|
|
max-height: 500px;
|
|
|
|
image-orientation: from-image;
|
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-28 23:38:41 +00:00
|
|
|
</style>
|