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