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

104 lines
2.6 KiB
Vue
Raw Normal View History

2016-10-28 18:08:03 +02:00
<template>
<div class="attachment">
2016-11-07 15:23:10 +01:00
<a class="image-attachment" v-if="nsfw" v-on:click.prevent="showNsfw()">
2016-11-07 16:23:54 +01:00
<img :key="nsfwImage" :src="nsfwImage"></img>
2016-10-28 18:08:03 +02:00
</a>
2016-11-02 18:38:30 +01:00
<a class="image-attachment" v-if="type === 'image' && !nsfw" :href="attachment.url" target="_blank"><img :src="attachment.url"></img></a>
2016-10-28 18:08:03 +02:00
2016-11-06 17:43:31 +01:00
<video v-if="type === 'video' && !nsfw" :src="attachment.url" controls></video>
2016-10-28 18:08:03 +02:00
2016-10-29 01:38:41 +02:00
<span v-if="type === 'unknown'">Don't know how to display this...</span>
2016-10-28 18:08:03 +02:00
2016-10-29 01:38:41 +02:00
<div v-if="type === 'html' && attachment.oembed" class="oembed">
<div v-if="attachment.thumb_url" class="image">
<img :src="attachment.thumb_url"></img>
</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 18:08:03 +02:00
</div>
</template>
<script src="./attachment.js"></script>
2016-10-29 01:38:41 +02:00
<style lang="scss">
2016-11-04 12:55:09 +01:00
.attachments {
display: flex;
flex-wrap: wrap;
.attachment {
2016-11-02 18:38:30 +01:00
2016-11-04 12:55:09 +01:00
flex: 1 0 30%;
display: flex;
margin: 0.2em;
align-self: flex-start;
2016-11-03 16:58:50 +01:00
2016-11-04 12:55:09 +01:00
video {
height: 100%;
border: 1px solid;
border-radius: 0.5em;
width: 100%;
}
2016-11-03 16:58:50 +01:00
2016-11-07 15:04:02 +01:00
img.media-upload {
width: 100%;
height: 100%;
flex: 1;
border: 1px solid;
border-radius: 0.5em;
}
2016-11-04 12:55:09 +01:00
.oembed {
img {
width: 100%;
height: 100%;
}
}
2016-11-03 16:58:50 +01:00
2016-11-04 12:55:09 +01:00
.oembed {
border: 1px solid rgba(0, 0, 0, 0.14);
width: 100%;
2016-11-03 16:58:50 +01:00
2016-11-04 12:55:09 +01:00
display: flex;
.image {
flex: 1;
img {
border: 0px;
border-radius: 0;
}
}
2016-11-03 16:58:50 +01:00
2016-11-04 12:55:09 +01:00
.text {
flex: 2;
margin: 8px;
h1 {
font-size: 14px;
margin: 0px;
2016-11-02 18:38:30 +01:00
2016-11-04 12:55:09 +01:00
a {
color: black;
}
}
}
}
a.image-attachment {
display: flex;
flex: 1;
img {
width: 100%;
flex: 1;
border: 1px solid;
border-radius: 0.5em;
width: 100%;
height: 100%; /* If this isn't here, chrome will stretch the images */
2016-11-04 12:55:09 +01:00
}
}
}
2016-10-29 01:38:41 +02:00
}
</style>