|
|
|
<script lang="ts" setup>
|
|
|
|
import { onKeyDown } from '@vueuse/core'
|
|
|
|
import { useAttachmentCell } from './utils'
|
|
|
|
|
|
|
|
const { selectedImage, visibleItems, downloadFile } = useAttachmentCell()!
|
|
|
|
|
|
|
|
const carouselRef = ref()
|
|
|
|
|
|
|
|
const container = ref()
|
|
|
|
|
|
|
|
const imageItems = computed(() => visibleItems.value.filter((item) => isImage(item.title, item.mimetype)))
|
|
|
|
|
|
|
|
const { getPossibleAttachmentSrc } = useAttachment()
|
|
|
|
|
|
|
|
/** navigate to previous image on button click */
|
|
|
|
onKeyDown(
|
|
|
|
(e) => ['Left', 'ArrowLeft', 'A'].includes(e.key),
|
|
|
|
() => {
|
|
|
|
if (carouselRef.value) carouselRef.value.prev()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
/** navigate to next image on button click */
|
|
|
|
onKeyDown(
|
|
|
|
(e) => ['Right', 'ArrowRight', 'D'].includes(e.key),
|
|
|
|
() => {
|
|
|
|
if (carouselRef.value) carouselRef.value.next()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
/** set our selected image when slide changes */
|
|
|
|
function onSlideChange(index: number) {
|
|
|
|
selectedImage.value = imageItems.value[index]
|
|
|
|
}
|
|
|
|
|
|
|
|
/** set our carousel ref and move to initial slide */
|
|
|
|
const setCarouselRef = (el: Element) => {
|
|
|
|
carouselRef.value = el
|
|
|
|
|
|
|
|
carouselRef.value?.goTo(
|
|
|
|
imageItems.value.findIndex((item) => item === selectedImage.value),
|
|
|
|
true,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
/** close overlay view when clicking outside of image */
|
|
|
|
useEventListener(container, 'click', (e) => {
|
|
|
|
if (!(e.target as HTMLElement)?.closest('.keep-open') && !(e.target as HTMLElement)?.closest('img')) {
|
|
|
|
selectedImage.value = false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<GeneralOverlay v-model="selectedImage" :z-index="1001" class="bg-gray-500 bg-opacity-50">
|
|
|
|
<template v-if="selectedImage">
|
|
|
|
<div ref="container" class="overflow-hidden p-12 text-center relative xs:h-screen">
|
|
|
|
<div class="text-white group absolute top-5 right-5">
|
|
|
|
<component
|
|
|
|
:is="iconMap.closeCircle"
|
|
|
|
class="group-hover:text-red-500 cursor-pointer text-4xl"
|
|
|
|
@click.stop="selectedImage = false"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div
|
|
|
|
class="keep-open select-none group hover:(ring-1 ring-accent) ring-opacity-100 cursor-pointer leading-8 inline-block px-3 py-1 bg-gray-300 text-white mb-4 text-center rounded shadow"
|
|
|
|
@click.stop="downloadFile(selectedImage)"
|
|
|
|
>
|
|
|
|
<h3 class="group-hover:text-primary">{{ selectedImage && selectedImage.title }}</h3>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<a-carousel
|
|
|
|
v-if="!!selectedImage"
|
|
|
|
:ref="setCarouselRef"
|
|
|
|
dots-class="slick-dots slick-thumb"
|
|
|
|
:after-change="onSlideChange"
|
|
|
|
arrows
|
|
|
|
>
|
|
|
|
<template #prevArrow>
|
|
|
|
<div class="custom-slick-arrow left-2 z-1 keep-open">
|
|
|
|
<MaterialSymbolsArrowCircleLeftRounded class="rounded-full" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template #nextArrow>
|
|
|
|
<div class="custom-slick-arrow !right-2 z-1 keep-open">
|
|
|
|
<MaterialSymbolsArrowCircleRightRounded class="rounded-full" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template #customPaging="props">
|
|
|
|
<div class="cursor-pointer h-full nc-attachment-img-wrapper">
|
|
|
|
<LazyCellAttachmentImage
|
|
|
|
class="!block m-auto h-full w-full"
|
|
|
|
:alt="imageItems[props.i].title || `#${props.i}`"
|
|
|
|
:srcs="getPossibleAttachmentSrc(imageItems[props.i])"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<div v-for="(item, idx) of imageItems" :key="idx">
|
|
|
|
<LazyCellAttachmentImage :srcs="getPossibleAttachmentSrc(item)" class="max-w-70vw max-h-70vh" />
|
|
|
|
</div>
|
|
|
|
</a-carousel>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</GeneralOverlay>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.ant-carousel :deep(.custom-slick-arrow .nc-icon):hover {
|
|
|
|
@apply !bg-white;
|
|
|
|
}
|
|
|
|
.ant-carousel :deep(.slick-dots) {
|
|
|
|
@apply relative mt-4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ant-carousel :deep(.slick-slide) {
|
|
|
|
@apply w-full;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ant-carousel :deep(.slick-slide img) {
|
|
|
|
@apply border-1 m-auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ant-carousel :deep(.slick-thumb) {
|
|
|
|
@apply bottom-2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ant-carousel :deep(.slick-thumb li) {
|
|
|
|
@apply w-[60px] h-[45px];
|
|
|
|
}
|
|
|
|
|
|
|
|
.ant-carousel :deep(.slick-thumb li img) {
|
|
|
|
@apply w-full h-full block;
|
|
|
|
filter: grayscale(100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ant-carousel :deep(.slick-thumb li.slick-active img) {
|
|
|
|
filter: grayscale(0%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ant-carousel :deep(.slick-arrow.custom-slick-arrow) {
|
|
|
|
@apply text-4xl text-white hover:text-primary active:text-accent opacity-100 cursor-pointer z-1;
|
|
|
|
}
|
|
|
|
.ant-carousel :deep(.custom-slick-arrow:before) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.ant-carousel :deep(.custom-slick-arrow:hover) {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nc-attachment-img-wrapper {
|
|
|
|
width: fit-content !important;
|
|
|
|
}
|
|
|
|
</style>
|