mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 00:19:59 +00:00
71 lines
2.5 KiB
Vue
71 lines
2.5 KiB
Vue
<script setup lang="ts">
|
|
import { SwipeDirection } from '@vueuse/core'
|
|
import { useReducedMotion } from '@vueuse/motion'
|
|
import type { Attachment } from 'masto'
|
|
|
|
const props = withDefaults(defineProps<{ media: Attachment[]; threshold?: number; modelValue: number }>(), {
|
|
media: [] as any,
|
|
threshold: 20,
|
|
modelValue: 0,
|
|
})
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'update:modelValue', v: boolean): void
|
|
(event: 'close'): void
|
|
}>()
|
|
|
|
const target = ref()
|
|
const index = useVModel(props, 'modelValue', emit)
|
|
|
|
const animateTimeout = useTimeout(10)
|
|
const reduceMotion = useReducedMotion()
|
|
|
|
const canAnimate = computed(() => !reduceMotion.value && animateTimeout.value)
|
|
|
|
const { width, height } = useElementSize(target)
|
|
const { isSwiping, lengthX, lengthY, direction } = useSwipe(target, {
|
|
threshold: 5,
|
|
passive: false,
|
|
onSwipeEnd(e, direction) {
|
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
if (direction === SwipeDirection.RIGHT && Math.abs(distanceX.value) > props.threshold)
|
|
index.value = Math.max(0, index.value - 1)
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
if (direction === SwipeDirection.LEFT && Math.abs(distanceX.value) > props.threshold)
|
|
index.value = Math.min(props.media.length - 1, index.value + 1)
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
if (direction === SwipeDirection.UP && Math.abs(distanceY.value) > props.threshold)
|
|
emit('close')
|
|
},
|
|
})
|
|
|
|
const distanceX = computed(() => {
|
|
if (width.value === 0)
|
|
return 0
|
|
|
|
if (!isSwiping.value || (direction.value !== SwipeDirection.LEFT && direction.value !== SwipeDirection.RIGHT))
|
|
return index.value * 100 * -1
|
|
|
|
return (lengthX.value / width.value) * 100 * -1 + (index.value * 100) * -1
|
|
})
|
|
|
|
const distanceY = computed(() => {
|
|
if (height.value === 0 || !isSwiping.value || direction.value !== SwipeDirection.UP)
|
|
return 0
|
|
|
|
return (lengthY.value / height.value) * 100 * -1
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div ref="target" flex flex-row max-h-full max-w-full overflow-hidden>
|
|
<div flex :style="{ transform: `translateX(${distanceX}%) translateY(${distanceY}%)`, transition: isSwiping ? 'none' : canAnimate ? 'all 0.5s ease' : 'none' }">
|
|
<div v-for="item in media" :key="item.id" p4 select-none w-full flex-shrink-0 flex flex-col place-items-center>
|
|
<img max-h-full max-w-full :draggable="false" select-none :src="item.url || item.previewUrl" :alt="item.description || ''">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|