akkoma-fe/src/components/attachment/attachment.vue

128 lines
3.4 KiB
Vue
Raw Normal View History

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