aboutsummaryrefslogtreecommitdiff
path: root/src/components/gallery/gallery.vue
blob: 1ffa7b3cfaa259b7e23a43c7b6319e9822809e3b (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
<template>
  <div
    ref="galleryContainer"
    style="width: 100%;"
  >
    <div
      v-for="(row, index) in rows"
      :key="index"
      class="gallery-row"
      :style="rowStyle(row.length)"
      :class="{ 'contain-fit': useContainFit, 'cover-fit': !useContainFit }"
    >
      <div class="gallery-row-inner">
        <attachment
          v-for="attachment in row"
          :key="attachment.id"
          :set-media="setMedia"
          :nsfw="nsfw"
          :attachment="attachment"
          :allow-play="false"
          :natural-size-load="onNaturalSizeLoad.bind(null, attachment.id)"
          :style="itemStyle(attachment.id, row)"
        />
      </div>
    </div>
  </div>
</template>

<script src='./gallery.js'></script>

<style lang="scss">
@import '../../_variables.scss';

.gallery-row {
  position: relative;
  height: 0;
  width: 100%;
  flex-grow: 1;
  margin-top: 0.5em;

  .gallery-row-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: stretch;
  }

  // FIXME: specificity problem with this and .attachments.attachment
  // we shouldn't have the need for .image here
  .attachment.image {
    margin: 0 0.5em 0 0;
    flex-grow: 1;
    height: 100%;
    box-sizing: border-box;
    // to make failed images a bit more noticeable on chromium
    min-width: 2em;
    &:last-child {
      margin: 0;
    }
  }

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

  .video-container {
    height: 100%;
  }

  &.contain-fit {
    img,
    video,
    canvas {
      object-fit: contain;
      height: 100%;
    }
  }

  &.cover-fit {
    img,
    video,
    canvas {
      object-fit: cover;
    }
  }
}

</style>