aboutsummaryrefslogtreecommitdiff
path: root/src/components/attachment/attachment.vue
blob: 738a1e865a2e8eadae16e179c23d144cc857fd0f (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<template>
  <div class="attachment" :class="type">
    <a class="image-attachment" v-if="hidden" v-on:click.prevent="toggleHidden()">
      <img :key="nsfwImage" :src="nsfwImage"></img>
    </a>
    <div class="hider" v-if="nsfw && !hidden">
      <a href="#" @click.prevent="toggleHidden()">Hide</a>
    </div>

    <a class="image-attachment" v-if="type === 'image' && !hidden"
      :href="attachment.url" target="_blank">
      <img class="base05-border" referrerpolicy="no-referrer" :src="attachment.large_thumb_url || attachment.url"></img>
    </a>

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

    <audio v-if="type === 'audio'" :src="attachment.url" controls></audio>

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

    <div @click.prevent="linkClicked" 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">
  .attachments {
      display: flex;
      flex-wrap: wrap;
      .attachment {
          flex: 1 0 30%;
          display: flex;
          margin: 0.5em 0.8em 0.6em 0.1em;
          align-self: flex-start;

          &.html {
            flex-basis: 100%;
          }

          .hider {
              position: absolute;
              margin: 10px;
              padding: 5px;
              background: rgba(230,230,230,0.6);
              border-radius: 0.5em;
              font-weight: bold;
          }

          video {
              height: 100%;
              border: 1px solid;
              border-radius: 0.5em;
              width: 100%;
          }

          audio {
              width: 100%;
          }

          img.media-upload {
              width: 100%;
              height: 100%;
              flex: 1;
              border: 1px solid;
              border-radius: 0.5em;
          }


          .oembed {
              img {
                  width: 100%;
              }
              margin-right: 15px;
          }

          .oembed {
              border: 1px solid;
              width: 100%;

              display: flex;
              .image {
                  flex: 1;
                  img {
                      border: 0px;
                      border-radius: 0;
                      height: 100%;
                      object-fit: cover;
                  }
              }

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

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

              img {
                  width: 100%;
                  border-style: solid;
                  border-width: 1px;
                  border-radius: 0.5em;
                  width: 100%;
                  height: 100%; /* If this isn't here, chrome will stretch the images */
              }
          }
      }
 }
</style>