2016-10-29 03:08:03 +11:00
|
|
|
<template>
|
2017-03-11 08:28:55 +11:00
|
|
|
<div class="attachment base03-border" :class="{[type]: true, loading}" :style="autoHeight">
|
2017-03-09 14:23:10 +11:00
|
|
|
<a class="image-attachment" v-if="hidden" @click.prevent="toggleHidden()">
|
|
|
|
<img :key="nsfwImage" :src="nsfwImage"/>
|
2016-10-29 03:08:03 +11:00
|
|
|
</a>
|
2017-02-23 10:59:48 +11:00
|
|
|
<div class="hider" v-if="nsfw && hideNsfwLocal && !hidden">
|
2016-12-03 00:22:42 +11:00
|
|
|
<a href="#" @click.prevent="toggleHidden()">Hide</a>
|
|
|
|
</div>
|
2016-10-29 03:08:03 +11:00
|
|
|
|
2017-03-09 14:23:10 +11:00
|
|
|
<a v-if="type === 'image' && !hidden" class="image-attachment" :href="attachment.url" target="_blank">
|
2017-03-11 08:28:55 +11:00
|
|
|
<img class="base03-border" referrerpolicy="no-referrer" :src="attachment.large_thumb_url || attachment.url"/>
|
2016-11-26 11:19:25 +11:00
|
|
|
</a>
|
2016-10-29 03:08:03 +11:00
|
|
|
|
2017-06-19 03:17:14 +10:00
|
|
|
<video v-if="type === 'video' && !hidden" :src="attachment.url" controls loop></video>
|
2016-10-29 03:08:03 +11:00
|
|
|
|
2016-11-23 05:45:18 +11:00
|
|
|
<audio v-if="type === 'audio'" :src="attachment.url" controls></audio>
|
|
|
|
|
2017-02-19 22:58:25 +11:00
|
|
|
<div @click.prevent="linkClicked" v-if="type === 'html' && attachment.oembed" class="oembed">
|
2016-10-29 10:38:41 +11:00
|
|
|
<div v-if="attachment.thumb_url" class="image">
|
2017-03-09 14:23:10 +11:00
|
|
|
<img :src="attachment.thumb_url"/>
|
2016-10-29 10:38:41 +11: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-29 03:08:03 +11:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./attachment.js"></script>
|
2016-10-29 10:38:41 +11:00
|
|
|
|
|
|
|
<style lang="scss">
|
2016-11-04 22:55:09 +11:00
|
|
|
.attachments {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2017-04-14 20:43:53 +10:00
|
|
|
margin-right: -0.7em;
|
2016-11-04 22:55:09 +11:00
|
|
|
.attachment {
|
|
|
|
flex: 1 0 30%;
|
2017-04-14 20:43:53 +10:00
|
|
|
margin: 0.5em 0.7em 0.6em 0.0em;
|
2016-11-04 22:55:09 +11:00
|
|
|
align-self: flex-start;
|
2016-11-04 02:58:50 +11:00
|
|
|
|
2017-02-17 20:16:29 +11:00
|
|
|
&.html {
|
|
|
|
flex-basis: 100%;
|
2017-02-22 01:24:05 +11:00
|
|
|
display: flex;
|
2017-02-17 20:16:29 +11:00
|
|
|
}
|
|
|
|
|
2017-03-09 14:23:10 +11:00
|
|
|
&.loading {
|
|
|
|
cursor: progress;
|
|
|
|
}
|
|
|
|
|
2016-12-03 00:22:42 +11:00
|
|
|
.hider {
|
|
|
|
position: absolute;
|
|
|
|
margin: 10px;
|
|
|
|
padding: 5px;
|
|
|
|
background: rgba(230,230,230,0.6);
|
2017-02-25 02:32:41 +11:00
|
|
|
border-radius: 5px;
|
2016-12-03 00:22:42 +11:00
|
|
|
font-weight: bold;
|
2017-09-10 20:33:02 +10:00
|
|
|
z-index: 4;
|
2016-12-03 00:22:42 +11:00
|
|
|
}
|
|
|
|
|
2016-11-04 22:55:09 +11:00
|
|
|
video {
|
|
|
|
height: 100%;
|
|
|
|
border: 1px solid;
|
2017-02-25 02:32:41 +11:00
|
|
|
border-radius: 5px;
|
2016-11-04 22:55:09 +11:00
|
|
|
width: 100%;
|
2017-09-10 20:33:02 +10:00
|
|
|
z-index: 0;
|
2016-11-04 22:55:09 +11:00
|
|
|
}
|
2016-11-04 02:58:50 +11:00
|
|
|
|
2016-11-23 05:45:18 +11:00
|
|
|
audio {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2016-11-08 01:04:02 +11:00
|
|
|
img.media-upload {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
flex: 1;
|
|
|
|
border: 1px solid;
|
2017-02-25 02:32:41 +11:00
|
|
|
border-radius: 5px;
|
2016-11-08 01:04:02 +11:00
|
|
|
}
|
|
|
|
|
2016-11-04 22:55:09 +11:00
|
|
|
.oembed {
|
2017-03-11 08:28:55 +11:00
|
|
|
border: 1px solid;
|
|
|
|
border-radius: 5px;
|
|
|
|
border-color: inherit;
|
|
|
|
width: 100%;
|
|
|
|
margin-right: 15px;
|
|
|
|
display: flex;
|
|
|
|
|
2016-11-04 22:55:09 +11:00
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2016-11-04 02:58:50 +11:00
|
|
|
|
2016-11-04 22:55:09 +11:00
|
|
|
.image {
|
|
|
|
flex: 1;
|
|
|
|
img {
|
|
|
|
border: 0px;
|
2017-02-25 02:32:41 +11:00
|
|
|
border-radius: 5px;
|
2017-02-18 19:58:44 +11:00
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
2016-11-04 22:55:09 +11:00
|
|
|
}
|
|
|
|
}
|
2016-11-04 02:58:50 +11:00
|
|
|
|
2016-11-04 22:55:09 +11:00
|
|
|
.text {
|
|
|
|
flex: 2;
|
|
|
|
margin: 8px;
|
|
|
|
h1 {
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.image-attachment {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
img {
|
2017-01-16 01:44:56 +11:00
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
2017-02-25 02:32:41 +11:00
|
|
|
border-radius: 5px;
|
2017-04-09 21:28:21 +10:00
|
|
|
object-fit: contain;
|
2016-11-04 22:55:09 +11:00
|
|
|
width: 100%;
|
2017-04-09 22:26:30 +10:00
|
|
|
height: 100%; /* If this isn't here, chrome will stretch the images */
|
2017-04-09 21:28:21 +10:00
|
|
|
max-height: 500px;
|
2016-11-04 22:55:09 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-29 10:38:41 +11:00
|
|
|
}
|
|
|
|
</style>
|