mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
186 lines
3.9 KiB
Vue
186 lines
3.9 KiB
Vue
<template>
|
|
<article
|
|
:class="{ playing: song.playback_state === 'Playing' || song.playback_state === 'Paused' }"
|
|
data-testid="song-card"
|
|
draggable="true"
|
|
tabindex="0"
|
|
@dragstart="dragStart"
|
|
@contextmenu.prevent="requestContextMenu"
|
|
@dblclick.prevent="play"
|
|
>
|
|
<aside :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>
|
|
</aside>
|
|
<main>
|
|
<div class="details">
|
|
<h3>{{ song.title }}</h3>
|
|
<p class="by text-secondary">
|
|
<a :href="`#!/artist/${song.artist_id}`">{{ song.artist_name }}</a>
|
|
- {{ pluralize(song.play_count, 'play') }}
|
|
</p>
|
|
</div>
|
|
<LikeButton :song="song"/>
|
|
</main>
|
|
</article>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { faPause, faPlay } from '@fortawesome/free-solid-svg-icons'
|
|
import { toRefs } from 'vue'
|
|
import { defaultCover, eventBus, pluralize, startDragging } from '@/utils'
|
|
import { queueStore } from '@/stores'
|
|
import { playbackService } from '@/services'
|
|
|
|
import LikeButton from '@/components/song/SongLikeButton.vue'
|
|
|
|
const props = defineProps<{ song: Song }>()
|
|
const { song } = toRefs(props)
|
|
|
|
const requestContextMenu = (event: MouseEvent) => eventBus.emit('SONG_CONTEXT_MENU_REQUESTED', event, song.value)
|
|
const dragStart = (event: DragEvent) => startDragging(event, song.value, 'Song')
|
|
|
|
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>
|
|
article {
|
|
display: flex;
|
|
gap: 12px;
|
|
padding: 8px 12px 8px 8px;
|
|
background: var(--color-bg-secondary);
|
|
border: 1px solid var(--color-bg-secondary);
|
|
border-radius: 5px;
|
|
align-items: center;
|
|
|
|
&:focus, &:focus-within {
|
|
box-shadow: 0 0 1px 1px var(--color-highlight);
|
|
}
|
|
|
|
&.playing {
|
|
color: var(--color-highlight);
|
|
}
|
|
|
|
button {
|
|
opacity: 0;
|
|
}
|
|
|
|
&:hover {
|
|
button {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@media (hover: none) {
|
|
button {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
&:hover .cover, &:focus .cover {
|
|
.control {
|
|
display: flex;
|
|
}
|
|
|
|
&::before {
|
|
opacity: .7;
|
|
}
|
|
}
|
|
|
|
.cover {
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
|
|
.play-count {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
position: absolute;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.by {
|
|
font-size: .9rem;
|
|
opacity: .8;
|
|
|
|
a {
|
|
color: var(--color-text-primary);
|
|
|
|
&:hover {
|
|
color: var(--color-highlight);
|
|
}
|
|
}
|
|
}
|
|
|
|
.details {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|