2016-10-29 03:08:03 +11:00
|
|
|
<template>
|
|
|
|
<div class="attachment">
|
|
|
|
<a v-if="nsfw" v-on:click.prevent="showNsfw()">
|
|
|
|
<img :src="nsfwImage"></img>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<a v-if="type === 'image' && !nsfw" :href="attachment.url" target="_blank"><img :src="attachment.url"></img></a>
|
|
|
|
|
2016-10-29 10:38:41 +11:00
|
|
|
<video v-if="type === 'webm' && !nsfw" :src="attachment.url" controls></video>
|
2016-10-29 03:08:03 +11:00
|
|
|
|
2016-10-29 10:38:41 +11:00
|
|
|
<span v-if="type === 'unknown'">Don't know how to display this...</span>
|
2016-10-29 03:08:03 +11:00
|
|
|
|
2016-10-29 10:38:41 +11: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-29 03:08:03 +11:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./attachment.js"></script>
|
2016-10-29 10:38:41 +11:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.attachment {
|
|
|
|
video {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|