2019-01-26 15:45:03 +00:00
|
|
|
<template>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
|
|
|
ref="galleryContainer"
|
|
|
|
style="width: 100%;"
|
|
|
|
>
|
|
|
|
<div
|
2019-07-06 21:54:17 +00:00
|
|
|
v-for="(row, index) in rows"
|
|
|
|
:key="index"
|
2019-07-05 07:17:44 +00:00
|
|
|
class="gallery-row"
|
|
|
|
:style="rowHeight(row.length)"
|
|
|
|
:class="{ 'contain-fit': useContainFit, 'cover-fit': !useContainFit }"
|
|
|
|
>
|
2019-01-26 15:45:03 +00:00
|
|
|
<attachment
|
|
|
|
v-for="attachment in row"
|
2019-07-05 07:17:44 +00:00
|
|
|
:key="attachment.id"
|
|
|
|
:set-media="setMedia"
|
2019-01-26 15:45:03 +00:00
|
|
|
:nsfw="nsfw"
|
|
|
|
:attachment="attachment"
|
2019-07-05 07:17:44 +00:00
|
|
|
:allow-play="false"
|
2019-01-26 15:45:03 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src='./gallery.js'></script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
@import '../../_variables.scss';
|
|
|
|
|
|
|
|
.gallery-row {
|
|
|
|
height: 200px;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-content: stretch;
|
|
|
|
flex-grow: 1;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
|
2019-06-25 16:30:21 +00:00
|
|
|
// FIXME: specificity problem with this and .attachments.attachment
|
|
|
|
// we shouldn't have the need for .image here
|
|
|
|
.attachment.image {
|
2019-01-26 15:45:03 +00:00
|
|
|
margin: 0 0.5em 0 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
2019-01-30 19:41:07 +00:00
|
|
|
// to make failed images a bit more noticeable on chromium
|
|
|
|
min-width: 2em;
|
2019-03-02 16:35:38 +00:00
|
|
|
&:last-child {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2019-01-26 15:45:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.image-attachment {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-container {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.contain-fit {
|
|
|
|
img, video {
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.cover-fit {
|
|
|
|
img, video {
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|