aboutsummaryrefslogtreecommitdiff
path: root/src/components/attachment/attachment.vue
blob: 2cc1ee577d4f0b7c8de10b400cc6380199bc0148 (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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<template>
  <div v-if="size==='hide'">
    <a class="placeholder" v-if="type !== 'html'" :href="attachment.url">[{{nsfw ? "NSFW/" : ""}}{{type.toUpperCase()}}]</a>
  </div>
  <div v-else class="attachment base03-border" :class="{[type]: true, loading, 'small-attachment': isSmall}" v-show="!isEmpty">
    <a class="image-attachment" v-if="hidden" @click.prevent="toggleHidden()">
      <img :key="nsfwImage" :src="nsfwImage"/>
    </a>
    <div class="hider" v-if="nsfw && hideNsfwLocal && !hidden">
      <a href="#" @click.prevent="toggleHidden()">Hide</a>
    </div>

    <a v-if="type === 'image' && !hidden" class="image-attachment" :href="attachment.url" target="_blank">
      <StillImage :class="{'small': isSmall}" class="base03-border" referrerpolicy="no-referrer" :mimetype="attachment.mimetype" :src="attachment.large_thumb_url || attachment.url"/>
    </a>

    <video :class="{'small': isSmall}" class="base03" v-if="type === 'video' && !hidden" :src="attachment.url" controls loop></video>

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

    <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"/>
      </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;
      margin-right: -0.7em;

      .attachment.media-upload-container {
        flex: 0 0 auto;
        max-height: 300px;
        max-width: 100%;
      }

      .placeholder {
        margin-right: 0.5em;
      }

      .small-attachment {
        &.image, &.video {
          max-width: 35%;
        }
        max-height: 100px;
      }

      .attachment {
        flex: 1 0 30%;
        margin: 0.5em 0.7em 0.6em 0.0em;
        align-self: flex-start;

        border-style: solid;
        border-width: 1px;
        border-radius: 5px;
        overflow: hidden;
      }
      // fixes small gap below video
      &.video {
        line-height: 0;
      }

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

      &.loading {
        cursor: progress;
      }

      .hider {
          position: absolute;
          margin: 10px;
          padding: 5px;
          background: rgba(230,230,230,0.6);
          font-weight: bold;
          z-index: 4;
      }

      .small {
        max-height: 100px;
      }
      video {
          max-height: 500px;
          height: 100%;
          width: 100%;
          z-index: 0;
      }

      audio {
          width: 100%;
      }

      img.media-upload {
          margin-bottom: -2px;
          max-height: 300px;
          max-width: 100%;
      }

      .oembed {
          width: 100%;
          margin-right: 15px;
          display: flex;

          img {
              width: 100%;
          }

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

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

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

          .still-image {
              width: 100%;
              height: 100%;
          }

          .small {
            img {
              max-height: 100px;
            }
          }

          img {
              object-fit: contain;
              width: 100%;
              height: 100%; /* If this isn't here, chrome will stretch the images */
              max-height: 500px;
              image-orientation: from-image;
          }
      }
 }
</style>