Capital/components/attachment/Carousel.vue

32 lines
957 B
Vue
Raw Normal View History

<template>
<v-carousel
hide-delimiter-background
hide-delimiters
:progress="attachments.length > 1"
:show-arrows="attachments.length > 1 ? 'hover' : false"
height="auto"
>
<v-carousel-item v-for="item in metadata" class="fill-height">
2024-08-11 15:49:15 +00:00
<attachment-renderer :item="item" />
</v-carousel-item>
</v-carousel>
</template>
<script setup lang="ts">
const props = defineProps<{ attachments: number[] }>()
2024-08-11 06:53:58 +00:00
const emits = defineEmits(["update:metadata"])
const config = useRuntimeConfig()
const { data } = await useFetch<any>(`${config.public.solarNetworkApi}/cgi/files/attachments?take=${props.attachments.length}&id=${props.attachments.join(",")}`)
const metadata = computed(() => data.value.data)
2024-08-11 06:53:58 +00:00
watch(metadata, (value) => {
emits("update:metadata", value)
}, { deep: true, immediate: true })
function getAttachmentUrl(id: number) {
return `${config.public.solarNetworkApi}/cgi/files/attachments/${id}`
}
</script>