marc-leopold/components/GalleryPage.vue

128 lines
2.2 KiB
Vue

<template>
<div class="gallery-page">
<GalleryImageViewer class="image-viewer"
:is-visible="imageViewerIsVisible"
@close="imageViewerIsVisible = false" />
<div class="gallery">
<GalleryFeatured class="gallery__featured"
:featured-height="featuredImageHeight"
:galleries="galleries" />
<GalleryThumbs class="gallery__thumbs"
:featured-height="featuredImageHeight"
:galleries="galleries" />
</div>
</div>
</template>
<script>
import GalleryFeatured from '@/components/GalleryFeatured'
import GalleryThumbs from '@/components/GalleryThumbs'
import GalleryImageViewer from '@/components/GalleryImageViewer'
export default {
components: {
GalleryFeatured,
GalleryThumbs,
GalleryImageViewer
},
props: {
galleries: {
type: Array,
required: true
}
},
data () {
return {
featuredImageHeight: '16rem',
imageViewerIsVisible: false
}
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.gallery-page {
position: relative;
height: 100%;
width: 100%;
}
.image-viewer {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
@media (max-width: $bp__layout) {
.gallery-page {
padding-top: $site-menu__header-height;
}
.gallery {
position: relative;
height: 100%;
width: 100%;
overflow-x: hidden;
overflow-y: auto;
}
.gallery__thumbs {
position: absolute;
top: 0;
left: 0;
}
.close-viewer {
font-size: 10em;
cursor: pointer;
}
}
@media (min-width: $bp__layout) {
.mobile-only {
display: none;
}
.gallery-page {
padding-left: $site-menu__header-width;
}
.gallery {
display: flex;
flex-direction: row;
justify-content: space-between;
position: relative;
height: 100%;
width: 100%;
overflow: hidden;
}
.gallery__featured {
order: 2;
flex: 0 0 20rem;
overflow-y: auto;
}
.gallery__thumbs {
order: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
overflow: hidden;
}
.close-viewer {
display: none;
}
}
</style>