mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
122 lines
2.3 KiB
Vue
122 lines
2.3 KiB
Vue
<template>
|
|
<div
|
|
:class="{ playing: song?.playback_state === 'Playing' }"
|
|
:draggable="draggable"
|
|
class="song-info"
|
|
@dragstart="onDragStart"
|
|
>
|
|
<span :style="{ backgroundImage: `url('${cover}')` }" class="album-thumb" />
|
|
<div v-if="song" class="meta">
|
|
<h3 class="title">{{ song.title }}</h3>
|
|
<a :href="`/#/artist/${song.artist_id}`" class="artist">{{ song.artist_name }}</a>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, ref } from 'vue'
|
|
import { defaultCover, requireInjection } from '@/utils'
|
|
import { CurrentSongKey } from '@/symbols'
|
|
import { useDraggable } from '@/composables'
|
|
|
|
const { startDragging } = useDraggable('songs')
|
|
|
|
const song = requireInjection(CurrentSongKey, ref())
|
|
|
|
const cover = computed(() => song.value?.album_cover || defaultCover)
|
|
const draggable = computed(() => Boolean(song.value))
|
|
|
|
const onDragStart = (event: DragEvent) => {
|
|
if (song.value) {
|
|
startDragging(event, [song.value])
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.song-info {
|
|
padding: 0 1.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
width: 320px;
|
|
gap: 1rem;
|
|
|
|
:fullscreen & {
|
|
padding-left: 0;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
width: 84px;
|
|
}
|
|
|
|
.album-thumb {
|
|
display: block;
|
|
height: 75%;
|
|
aspect-ratio: 1;
|
|
border-radius: 50%;
|
|
background-size: cover;
|
|
|
|
@media screen and (max-width: 768px) {
|
|
height: 55%;
|
|
}
|
|
|
|
:fullscreen & {
|
|
height: 5rem;
|
|
}
|
|
}
|
|
|
|
.meta {
|
|
overflow: hidden;
|
|
|
|
> * {
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
display: none;
|
|
}
|
|
|
|
:fullscreen & {
|
|
margin-top: -18rem;
|
|
transform-origin: left bottom;
|
|
position: absolute;
|
|
overflow: hidden;
|
|
|
|
.title {
|
|
font-size: 3rem;
|
|
margin-bottom: .4rem;
|
|
line-height: 1.2;
|
|
font-weight: var(--font-weight-bold);
|
|
}
|
|
|
|
.artist {
|
|
font-size: 1.6rem;
|
|
width: fit-content;
|
|
line-height: 1.2;
|
|
}
|
|
}
|
|
}
|
|
|
|
.artist {
|
|
display: block;
|
|
font-size: .9rem;
|
|
}
|
|
|
|
&.playing .album-thumb {
|
|
animation: spin 30s linear infinite;
|
|
|
|
@media (prefers-reduced-motion) {
|
|
animation: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
@keyframes spin {
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|