You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.9 KiB
Vue
50 lines
1.9 KiB
Vue
<template>
|
|
<div class="inline-flex p-1 min-w-[25px]">
|
|
<div v-show="visible" class="bg-black rounded-full text-xs inline-flex" >
|
|
|
|
<NuxtLink v-if="type === 'document'" class="inline-flex p-1" :to="link">
|
|
<Icon name="ion:book-sharp" color="white" />
|
|
</NuxtLink>
|
|
|
|
<NuxtLink v-else-if="type === 'buy'" class="inline-flex p-1" :to="link">
|
|
<Icon name="bxs:purchase-tag" color="white" />
|
|
</NuxtLink>
|
|
|
|
<NuxtLink v-else-if="type === 'email'" class="inline-flex p-1" :to="link">
|
|
<Icon name="ic:baseline-email" color="white" />
|
|
</NuxtLink>
|
|
|
|
<NuxtLink v-else-if="type === 'discogs'" class="inline-flex p-1" :to="link">
|
|
<Icon name="simple-icons:discogs" color="white" />
|
|
</NuxtLink>
|
|
|
|
<button @click="audioPlayerStore.setSoundCloudTrackID(work.soundcloud_trackid)" v-else-if="type === 'audio'" class="inline-flex p-1">
|
|
<Icon name="wpf:speaker" color="white" />
|
|
</button>
|
|
|
|
<button @click="modalStore.setModalProps('video', 'aspect-video', true, '', '', work.vimeo_trackid)" v-else-if="type === 'video'" class="inline-flex p-1">
|
|
<Icon name="fluent:video-48-filled" color="white" />
|
|
</button>
|
|
|
|
<button @click="modalStore.setModalProps('image', 'aspect-auto', true, 'images', work.gallery, '')" v-else="type === 'image'" class="inline-flex p-1">
|
|
<Icon name="mdi:camera" color="white" />
|
|
</button>
|
|
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useAudioPlayerStore } from "@/stores/AudioPlayerStore"
|
|
import { useModalStore } from "@/stores/ModalStore"
|
|
|
|
const audioPlayerStore = useAudioPlayerStore()
|
|
const modalStore = useModalStore()
|
|
|
|
</script>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['type', 'work', 'visible', 'link']
|
|
}
|
|
</script> |