73 lines
2.2 KiB
Vue
73 lines
2.2 KiB
Vue
<script setup lang="ts">
|
|
import { Card, CardContent } from '@/lib/registry/default/ui/card'
|
|
import { Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from '@/lib/registry/default/ui/carousel'
|
|
import { watchOnce } from '@vueuse/core'
|
|
import { ref } from 'vue'
|
|
|
|
const emblaMainApi = ref<CarouselApi>()
|
|
const emblaThumbnailApi = ref<CarouselApi>()
|
|
const selectedIndex = ref(0)
|
|
|
|
function onSelect() {
|
|
if (!emblaMainApi.value || !emblaThumbnailApi.value)
|
|
return
|
|
selectedIndex.value = emblaMainApi.value.selectedScrollSnap()
|
|
emblaThumbnailApi.value.scrollTo(emblaMainApi.value.selectedScrollSnap())
|
|
}
|
|
|
|
function onThumbClick(index: number) {
|
|
if (!emblaMainApi.value || !emblaThumbnailApi.value)
|
|
return
|
|
emblaMainApi.value.scrollTo(index)
|
|
}
|
|
|
|
watchOnce(emblaMainApi, (emblaMainApi) => {
|
|
if (!emblaMainApi)
|
|
return
|
|
|
|
onSelect()
|
|
emblaMainApi.on('select', onSelect)
|
|
emblaMainApi.on('reInit', onSelect)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full sm:w-auto">
|
|
<Carousel
|
|
class="relative w-full max-w-xs"
|
|
@init-api="(val) => emblaMainApi = val"
|
|
>
|
|
<CarouselContent>
|
|
<CarouselItem v-for="(_, index) in 10" :key="index">
|
|
<div class="p-1">
|
|
<Card>
|
|
<CardContent class="flex aspect-square items-center justify-center p-6">
|
|
<span class="text-4xl font-semibold">{{ index + 1 }}</span>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</CarouselItem>
|
|
</CarouselContent>
|
|
<CarouselPrevious />
|
|
<CarouselNext />
|
|
</Carousel>
|
|
|
|
<Carousel
|
|
class="relative w-full max-w-xs"
|
|
@init-api="(val) => emblaThumbnailApi = val"
|
|
>
|
|
<CarouselContent class="flex gap-1 ml-0">
|
|
<CarouselItem v-for="(_, index) in 10" :key="index" class="pl-0 basis-1/4 cursor-pointer" @click="onThumbClick(index)">
|
|
<div class="p-1" :class="index === selectedIndex ? '' : 'opacity-50'">
|
|
<Card>
|
|
<CardContent class="flex aspect-square items-center justify-center p-6">
|
|
<span class="text-4xl font-semibold">{{ index + 1 }}</span>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</CarouselItem>
|
|
</CarouselContent>
|
|
</Carousel>
|
|
</div>
|
|
</template>
|