basic carousel for gallery viewer
This commit is contained in:
parent
8ac3ed16ff
commit
e2c0ed1b06
2 changed files with 74 additions and 4 deletions
|
@ -1,6 +1,9 @@
|
||||||
@import './mixins.scss'
|
@import './mixins.scss'
|
||||||
@import './tag.sass'
|
@import './tag.sass'
|
||||||
|
|
||||||
|
button
|
||||||
|
cursor: pointer
|
||||||
|
|
||||||
.modal-outlet
|
.modal-outlet
|
||||||
.embed
|
.embed
|
||||||
img
|
img
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, onMounted, ref } from 'vue'
|
import { computed, onMounted, ref, watchEffect } from 'vue'
|
||||||
import { marked } from 'marked'
|
import { marked } from 'marked'
|
||||||
import type {
|
import type {
|
||||||
GalleryEntry,
|
GalleryEntry,
|
||||||
|
@ -42,6 +42,33 @@ const fields = computed(() => {
|
||||||
}
|
}
|
||||||
return toReturn
|
return toReturn
|
||||||
})
|
})
|
||||||
|
const variants = computed(() => (resolved.value as GalleryEntryWithVariants).variants)
|
||||||
|
const variantsCount = computed(() => Object.keys((resolved.value as GalleryEntryWithVariants).variants).length)
|
||||||
|
const currentSelection = defineModel('currentSelection', { type: String, default: '' })
|
||||||
|
const currentUrl = computed(() => hasVariants ? (resolved.value as GalleryEntryWithVariants).variants[currentSelection.value].url : url)
|
||||||
|
const carousel = ref(null! as HTMLElement)
|
||||||
|
|
||||||
|
const onVariantSelected = (event: Event, id: string) => {
|
||||||
|
currentSelection.value = id
|
||||||
|
}
|
||||||
|
|
||||||
|
const onButtonClicked = (event: Event | null, direction: number, override?: number) => {
|
||||||
|
let val = Number(carousel.value.dataset.index!)
|
||||||
|
if (!!override) {
|
||||||
|
val = override
|
||||||
|
} else {
|
||||||
|
val += direction
|
||||||
|
}
|
||||||
|
if (val >= variantsCount.value) {
|
||||||
|
val = 0
|
||||||
|
} else if (val < 0) {
|
||||||
|
val = variantsCount.value - 1
|
||||||
|
}
|
||||||
|
const offset = (carousel.value.children[0] as HTMLImageElement).offsetWidth
|
||||||
|
|
||||||
|
carousel.value.style.transform = `translateX(-${offset * val}px)`
|
||||||
|
carousel.value.dataset.index = `${val}`
|
||||||
|
}
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
let config = await fetchAndParseYaml<ListWithEntries<GalleryEntry>>(routeConfig.config)
|
let config = await fetchAndParseYaml<ListWithEntries<GalleryEntry>>(routeConfig.config)
|
||||||
|
@ -52,6 +79,10 @@ onMounted(async () => {
|
||||||
window.routeSubConfig = {...routeSubConfig}
|
window.routeSubConfig = {...routeSubConfig}
|
||||||
window.routeContentConfig = {...resolved.value}
|
window.routeContentConfig = {...resolved.value}
|
||||||
|
|
||||||
|
if (hasVariants) {
|
||||||
|
currentSelection.value = (resolved.value as GalleryEntryWithVariants).defaultVariant || Object.keys((resolved.value as GalleryEntryWithVariants).variants)[0]
|
||||||
|
}
|
||||||
|
|
||||||
ready.value = true
|
ready.value = true
|
||||||
emits('loaded')
|
emits('loaded')
|
||||||
})
|
})
|
||||||
|
@ -65,10 +96,32 @@ onMounted(async () => {
|
||||||
)
|
)
|
||||||
.view-outlet
|
.view-outlet
|
||||||
img(
|
img(
|
||||||
:src='url'
|
:src='currentUrl'
|
||||||
)
|
)
|
||||||
|
.view-carousel(
|
||||||
|
v-if='hasVariants'
|
||||||
|
)
|
||||||
|
button.left(
|
||||||
|
@click='onButtonClicked($event, -1)'
|
||||||
|
)
|
||||||
|
span <
|
||||||
|
.carousel(
|
||||||
|
ref='carousel'
|
||||||
|
data-index=0
|
||||||
|
)
|
||||||
|
img(
|
||||||
|
v-for='(variant, id) in variants'
|
||||||
|
:class='{ active: id === currentSelection }'
|
||||||
|
:src='variant.url'
|
||||||
|
:title='variant.title || id'
|
||||||
|
@click='onVariantSelected($event, id)'
|
||||||
|
)
|
||||||
|
button.right(
|
||||||
|
@click='onButtonClicked($event, 1)'
|
||||||
|
)
|
||||||
|
span >
|
||||||
.view-content
|
.view-content
|
||||||
p(
|
p.title(
|
||||||
v-html='title'
|
v-html='title'
|
||||||
)
|
)
|
||||||
dl.info
|
dl.info
|
||||||
|
@ -84,5 +137,19 @@ onMounted(async () => {
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="sass">
|
<style scoped lang="sass">
|
||||||
|
.view-carousel
|
||||||
|
position: relative
|
||||||
|
button
|
||||||
|
bottom: 0
|
||||||
|
position: absolute
|
||||||
|
top: 0
|
||||||
|
z-index: 1
|
||||||
|
&.left
|
||||||
|
left: 0
|
||||||
|
&.right
|
||||||
|
right: 0
|
||||||
|
.carousel
|
||||||
|
display: flex
|
||||||
|
img
|
||||||
|
cursor: pointer
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Add table
Reference in a new issue