aboutsummaryrefslogtreecommitdiff
path: root/src/components/attachment
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/attachment')
-rw-r--r--src/components/attachment/attachment.js21
-rw-r--r--src/components/attachment/attachment.vue25
2 files changed, 46 insertions, 0 deletions
diff --git a/src/components/attachment/attachment.js b/src/components/attachment/attachment.js
new file mode 100644
index 00000000..c21cd656
--- /dev/null
+++ b/src/components/attachment/attachment.js
@@ -0,0 +1,21 @@
+import nsfwImage from '../../assets/nsfw.jpg'
+
+const Attachment = {
+ props: [
+ 'attachment',
+ 'nsfw'
+ ],
+ data: () => ({ nsfwImage }),
+ computed: {
+ type () {
+ return 'image'
+ }
+ },
+ methods: {
+ showNsfw () {
+ this.nsfw = false
+ }
+ }
+}
+
+export default Attachment
diff --git a/src/components/attachment/attachment.vue b/src/components/attachment/attachment.vue
new file mode 100644
index 00000000..67c6ac18
--- /dev/null
+++ b/src/components/attachment/attachment.vue
@@ -0,0 +1,25 @@
+<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>
+ <!-- <span ng-if="type === 'unknown'">Don't know how to display this...</span>
+
+
+ <div ng-if="type === 'html' && attachment.oembed" class="oembed">
+ <div ng-if="attachment.thumb_url" class="image">
+ <img ng-src="{{::attachment.thumb_url}}"></img>
+ </div>
+ <div class="text">
+ <h1><a href="{{::attachment.url}}">{{::attachment.oembed.title}}</a></h1>
+ <div ng-bind-html="attachment.oembed.oembedHTML"></div>
+ </div>
+ </div>
+
+ <video ng-if="type ==='webm'" ng-src="{{::videoUrl}}" controls></video> -->
+ </div>
+</template>
+
+<script src="./attachment.js"></script>