koel/resources/assets/js/components/ui/ArtistAlbumThumbnail.vue
2024-07-06 17:44:46 +02:00

247 lines
6.6 KiB
Vue

<template>
<span
:class="{ droppable }"
:style="{ backgroundImage: `url(${defaultCover})` }"
class="cover"
data-testid="album-artist-thumbnail"
>
<img v-koel-hide-broken-icon :alt="entity.name" :src="image" class="pointer-events-none" loading="lazy">
<a
class="control control-play"
role="button"
@click.prevent="playOrQueue"
@dragenter.prevent="onDragEnter"
@dragleave.prevent="onDragLeave"
@drop.prevent="onDrop"
@dragover.prevent
>
<span class="hidden">{{ buttonLabel }}</span>
<span class="icon" />
</a>
</span>
</template>
<script lang="ts" setup>
import { orderBy } from 'lodash'
import { computed, ref, toRef, toRefs } from 'vue'
import { albumStore, artistStore, queueStore, songStore, userStore } from '@/stores'
import { playbackService } from '@/services'
import { defaultCover, fileReader, logger } from '@/utils'
import { useAuthorization, useMessageToaster, useRouter, useKoelPlus } from '@/composables'
import { acceptedImageTypes } from '@/config'
const { toastSuccess } = useMessageToaster()
const { go } = useRouter()
const props = defineProps<{ entity: Album | Artist }>()
const { entity } = toRefs(props)
const droppable = ref(false)
const user = toRef(userStore.state, 'current')
const { isAdmin } = useAuthorization()
const { isPlus } = useKoelPlus()
const { toastError } = useMessageToaster()
const forAlbum = computed(() => entity.value.type === 'albums')
const sortFields = computed(() => forAlbum.value ? ['disc', 'track'] : ['album_id', 'disc', 'track'])
const image = computed(() => {
return forAlbum.value
? (entity.value as Album).cover || defaultCover
: (entity.value as Artist).image || defaultCover
})
const buttonLabel = computed(() => forAlbum.value
? `Play all songs in the album ${entity.value.name}`
: `Play all songs by ${entity.value.name}`
)
const allowsUpload = computed(() => isAdmin.value || isPlus.value) // for Plus, the logic is handled in the backend
const playOrQueue = async (event: MouseEvent) => {
const songs = forAlbum.value
? await songStore.fetchForAlbum(entity.value as Album)
: await songStore.fetchForArtist(entity.value as Artist)
if (event.altKey) {
queueStore.queue(orderBy(songs, sortFields.value))
toastSuccess('Songs added to queue.')
return
}
playbackService.queueAndPlay(songs)
go('queue')
}
const onDragEnter = () => (droppable.value = allowsUpload.value)
const onDragLeave = () => (droppable.value = false)
const validImageDropEvent = (event: DragEvent) => {
if (!event.dataTransfer || !event.dataTransfer.items) {
return false
}
if (event.dataTransfer.items.length !== 1) {
return false
}
if (event.dataTransfer.items[0].kind !== 'file') {
return false
}
return acceptedImageTypes.includes(event.dataTransfer.items[0].getAsFile()!.type)
}
const onDrop = async (event: DragEvent) => {
droppable.value = false
if (!allowsUpload.value) {
return
}
if (!validImageDropEvent(event)) {
return
}
const backupImage = forAlbum.value ? (entity.value as Album).cover : (entity.value as Artist).image
try {
const fileData = await fileReader.readAsDataUrl(event.dataTransfer!.files[0])
if (forAlbum.value) {
// Replace the image right away to create an "instant" effect
(entity.value as Album).cover = fileData
await albumStore.uploadCover(entity.value as Album, fileData)
} else {
(entity.value as Artist).image = fileData
await artistStore.uploadImage(entity.value as Artist, fileData)
}
} catch (e) {
const message = e?.response?.data?.message ?? 'Unknown error.'
toastError(`Failed to upload: ${message}`)
// restore the backup image
if (forAlbum.value) {
(entity.value as Album).cover = backupImage!
} else {
(entity.value as Artist).image = backupImage!
}
logger.error(e)
}
}
</script>
<style lang="scss" scoped>
.cover {
position: relative;
width: 100%;
aspect-ratio: 1/1;
display: block;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
border-radius: 5px;
overflow: hidden;
img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
}
&::after {
content: "";
display: block;
padding-top: 100%;
}
.control {
height: 100%;
width: 100%;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
&::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0;
background: rgba(0, 0, 0, .3);
opacity: 0;
z-index: 1;
}
.icon {
background-color: var(--color-bg-primary);
color: var(--color-highlight);
opacity: 0;
border-radius: 50%;
width: 50%;
height: 50%;
display: flex;
justify-content: center;
align-items: center;
padding-left: 4%; // to balance the play icon
pointer-events: none;
@media (hover: none) {
opacity: 1;
}
&::after {
content: '';
width: 100%;
height: 100%;
background: var(--color-highlight);
mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="currentColor" d="M361 215C375.3 223.8 384 239.3 384 256C384 272.7 375.3 288.2 361 296.1L73.03 472.1C58.21 482 39.66 482.4 24.52 473.9C9.377 465.4 0 449.4 0 432V80C0 62.64 9.377 46.63 24.52 38.13C39.66 29.64 58.21 29.99 73.03 39.04L361 215z"/></svg>');
-webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="currentColor" d="M361 215C375.3 223.8 384 239.3 384 256C384 272.7 375.3 288.2 361 296.1L73.03 472.1C58.21 482 39.66 482.4 24.52 473.9C9.377 465.4 0 449.4 0 432V80C0 62.64 9.377 46.63 24.52 38.13C39.66 29.64 58.21 29.99 73.03 39.04L361 215z"/></svg>');
mask-repeat: no-repeat;
-webkit-mask-repeat: no-repeat;
mask-position: center;
-webkit-mask-position: center;
mask-size: 40%;
-webkit-mask-size: 40%;
}
}
&:hover, &:focus {
&::before, .icon {
transition: .3s opacity;
opacity: 1;
}
}
&:active {
&::before {
background: rgba(0, 0, 0, .5);
}
.icon {
transform: scale(.9);
}
}
}
&.droppable {
border: 2px dotted rgba(255, 255, 255, 1);
filter: brightness(0.4);
.control {
opacity: 0;
}
}
}
.compact .icon {
font-size: .3rem; // to control the size of the icon
}
</style>