aboutsummaryrefslogtreecommitdiff
path: root/src/components/attachment/attachment.vue
blob: 09ca5fa9fb00b4596703fb7abbf98e97dfb54959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<template>
  <div class="attachment">
    <a v-if="nsfw" v-on:click.prevent="showNsfw()">
      <img :src="nsfwImage"></img>
    </a>

    <a class="image-attachment" v-if="type === 'image' && !nsfw" :href="attachment.url" target="_blank"><img :src="attachment.url"></img></a>

    <video v-if="type === 'video' && !nsfw" :src="attachment.url" controls></video>

    <span v-if="type === 'unknown'">Don't know how to display this...</span>

    <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>
  </div>
</template>

<script src="./attachment.js"></script>

<style lang="scss">
 .attachment {
     video {
         height: 100%;
     }

     .oembed {
         img {
             width: 100%;
             height: 100%;
         }
     }

    .oembed {
        border: 1px solid rgba(0, 0, 0, 0.14);
        width: 100%;

        display: flex;
        .image {
            flex: 1;
            img {
                border: 0px;
                border-radius: 0;
            }
        }

        .text {
            flex: 2;
            margin: 8px;
            h1 {
                font-size: 14px;
                margin: 0px;

                a {
                    color: black;
                }
            }
        }
    }

     a.image-attachment {
         display: flex;
         flex: 1;

         img {
             width: 100%;
             height: 100%;
             flex: 1;
         }
     }
 }
</style>