koel/resources/assets/js/components/song/SongThumbnail.vue

83 lines
1.8 KiB
Vue
Raw Normal View History

<template>
<div :style="{ backgroundImage: `url(${song.album_cover ?? ''}), url(${defaultCover})` }" class="cover">
<a class="control" @click.prevent="changeSongState" data-testid="play-control">
<icon :icon="song.playback_state === 'Playing' ? faPause : faPlay" class="text-highlight"/>
</a>
</div>
</template>
<script lang="ts" setup>
import { toRefs } from 'vue'
import { faPause, faPlay } from '@fortawesome/free-solid-svg-icons'
import { defaultCover } from '@/utils'
import { playbackService } from '@/services'
import { queueStore } from '@/stores'
const props = defineProps<{ song: Song }>()
const { song } = toRefs(props)
const play = () => {
queueStore.queueIfNotQueued(song.value)
playbackService.play(song.value)
}
const changeSongState = () => {
if (song.value.playback_state === 'Stopped') {
play()
} else if (song.value.playback_state === 'Paused') {
playbackService.resume()
} else {
playbackService.pause()
}
}
</script>
<style lang="scss" scoped>
.cover {
width: 48px;
min-width: 48px;
aspect-ratio: 1/1;
background-size: cover;
position: relative;
border-radius: 4px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
&::before {
content: " ";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
background: #000;
opacity: 0;
@media (hover: none) {
opacity: .7;
}
}
.control {
border-radius: 50%;
width: 28px;
height: 28px;
background: rgba(0, 0, 0, .5);
font-size: 1rem;
z-index: 1;
display: none;
color: var(--color-text-primary);
transition: .3s;
justify-content: center;
align-items: center;
@media (hover: none) {
display: flex;
}
}
}
</style>