mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
188 lines
3.8 KiB
Vue
188 lines
3.8 KiB
Vue
|
<template>
|
||
|
<article
|
||
|
:class="{ playing: song.playbackState === 'Playing' || song.playbackState === 'Paused' }"
|
||
|
@contextmenu.prevent="requestContextMenu"
|
||
|
@dblclick.prevent="play"
|
||
|
@dragstart="dragStart"
|
||
|
draggable="true"
|
||
|
data-test="song-card"
|
||
|
tabindex="0"
|
||
|
>
|
||
|
<span class="cover" :style="{ backgroundImage: `url(${song.album.cover})` }">
|
||
|
<a class="control" @click.prevent="changeSongState">
|
||
|
<i class="fa fa-play" v-if="song.playbackState !== 'Playing'"/>
|
||
|
<i class="fa fa-pause" v-else/>
|
||
|
</a>
|
||
|
</span>
|
||
|
<span class="main">
|
||
|
<span class="details">
|
||
|
<span v-if="showPlayCount" :style="{ width: `${song.playCount*100/topPlayCount}%` }" class="play-count"/>
|
||
|
{{ song.title }}
|
||
|
<span class="by text-secondary">
|
||
|
<a :href="`#!/artist/${song.artist.id}`">{{ song.artist.name }}</a>
|
||
|
<template v-if="showPlayCount">- {{ song.playCount | pluralize('play') }}</template>
|
||
|
</span>
|
||
|
</span>
|
||
|
<span class="favorite">
|
||
|
<like-button :song="song"/>
|
||
|
</span>
|
||
|
</span>
|
||
|
</article>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { eventBus, startDragging, pluralize } from '@/utils'
|
||
|
import { queueStore } from '@/stores'
|
||
|
import { playback } from '@/services'
|
||
|
import Vue, { PropOptions } from 'vue'
|
||
|
|
||
|
export default Vue.extend({
|
||
|
components: {
|
||
|
LikeButton: () => import('@/components/song/like-button.vue')
|
||
|
},
|
||
|
|
||
|
props: {
|
||
|
song: {
|
||
|
type: Object,
|
||
|
required: true
|
||
|
} as PropOptions<Song>,
|
||
|
|
||
|
topPlayCount: {
|
||
|
type: Number,
|
||
|
default: 0
|
||
|
}
|
||
|
},
|
||
|
|
||
|
filters: { pluralize },
|
||
|
|
||
|
computed: {
|
||
|
showPlayCount (): boolean {
|
||
|
return Boolean(this.topPlayCount && this.song.playCount)
|
||
|
}
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
requestContextMenu (e: MouseEvent): void {
|
||
|
eventBus.emit('SONG_CONTEXT_MENU_REQUESTED', e, this.song)
|
||
|
},
|
||
|
|
||
|
play (): void {
|
||
|
queueStore.contains(this.song) || queueStore.queueAfterCurrent(this.song)
|
||
|
playback.play(this.song)
|
||
|
},
|
||
|
|
||
|
changeSongState (): void {
|
||
|
if (this.song.playbackState === 'Stopped') {
|
||
|
this.play()
|
||
|
} else if (this.song.playbackState === 'Paused') {
|
||
|
playback.resume()
|
||
|
} else {
|
||
|
playback.pause()
|
||
|
}
|
||
|
},
|
||
|
|
||
|
dragStart (event: DragEvent): void {
|
||
|
startDragging(event, this.song, 'Song')
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
article {
|
||
|
display: flex;
|
||
|
|
||
|
&.playing {
|
||
|
color: var(--color-highlight);
|
||
|
}
|
||
|
|
||
|
&:hover .cover, &:focus .cover {
|
||
|
.control {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
&::before {
|
||
|
opacity: .7;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.cover {
|
||
|
flex: 0 0 48px;
|
||
|
height: 48px;
|
||
|
background-size: cover;
|
||
|
position: relative;
|
||
|
|
||
|
@include vertical-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, .7);
|
||
|
line-height: 2rem;
|
||
|
font-size: 1rem;
|
||
|
text-align: center;
|
||
|
z-index: 1;
|
||
|
display: none;
|
||
|
color: var(--color-text-primary);
|
||
|
transition: .3s;
|
||
|
|
||
|
@media (hover: none) {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.main {
|
||
|
flex: 1;
|
||
|
padding: 4px 8px;
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
|
||
|
.play-count {
|
||
|
background: rgba(255, 255, 255, 0.08);
|
||
|
position: absolute;
|
||
|
height: 100%;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
.by {
|
||
|
display: block;
|
||
|
font-size: .9rem;
|
||
|
margin-top: 2px;
|
||
|
opacity: .8;
|
||
|
|
||
|
a {
|
||
|
color: var(--color-text-primary);
|
||
|
|
||
|
&:hover {
|
||
|
color: var(--color-highlight);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.details {
|
||
|
flex: 1;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|