2022-04-15 14:24:30 +00:00
|
|
|
<template>
|
2022-05-10 12:09:31 +00:00
|
|
|
<div
|
2024-01-04 10:24:40 +00:00
|
|
|
:class="{ playing, external, selected: item.selected }"
|
2022-05-10 12:09:31 +00:00
|
|
|
class="song-item"
|
|
|
|
data-testid="song-item"
|
2022-07-15 15:23:12 +00:00
|
|
|
tabindex="0"
|
2022-11-12 21:38:31 +00:00
|
|
|
@dblclick.prevent.stop="play"
|
2022-05-10 12:09:31 +00:00
|
|
|
>
|
2022-11-12 21:38:31 +00:00
|
|
|
<span class="track-number">
|
2022-12-02 16:17:37 +00:00
|
|
|
<SoundBars v-if="song.playback_state === 'Playing'" />
|
2022-11-12 21:38:31 +00:00
|
|
|
<span v-else class="text-secondary">{{ song.track || '' }}</span>
|
2022-08-01 08:58:25 +00:00
|
|
|
</span>
|
2022-10-26 12:34:32 +00:00
|
|
|
<span class="thumbnail">
|
2022-12-02 16:17:37 +00:00
|
|
|
<SongThumbnail :song="song" />
|
2022-10-26 12:34:32 +00:00
|
|
|
</span>
|
2022-11-12 21:38:31 +00:00
|
|
|
<span class="title-artist">
|
2024-01-04 10:24:40 +00:00
|
|
|
<span class="title text-primary">
|
|
|
|
<span class="external-mark" v-if="external">
|
|
|
|
<Icon :icon="faSquareUpRight" />
|
|
|
|
</span>
|
|
|
|
{{ song.title }}
|
|
|
|
</span>
|
2022-11-12 21:38:31 +00:00
|
|
|
<span class="artist">
|
|
|
|
{{ song.artist_name }}
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
<span class="album">{{ song.album_name }}</span>
|
|
|
|
<span class="time">{{ fmtLength }}</span>
|
|
|
|
<span class="extra">
|
2022-12-02 16:17:37 +00:00
|
|
|
<LikeButton :song="song" />
|
2022-04-15 17:00:08 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
2022-04-15 14:24:30 +00:00
|
|
|
</template>
|
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
<script lang="ts" setup>
|
2024-01-04 10:24:40 +00:00
|
|
|
import { faSquareUpRight } from '@fortawesome/free-solid-svg-icons'
|
2022-07-05 18:01:33 +00:00
|
|
|
import { computed, toRefs } from 'vue'
|
2022-04-24 08:50:45 +00:00
|
|
|
import { playbackService } from '@/services'
|
2022-04-15 14:24:30 +00:00
|
|
|
import { queueStore } from '@/stores'
|
2022-06-10 10:47:46 +00:00
|
|
|
import { secondsToHis } from '@/utils'
|
2024-01-04 10:24:40 +00:00
|
|
|
import { useAuthorization } from '@/composables'
|
2022-04-15 17:00:08 +00:00
|
|
|
|
2022-07-05 18:01:33 +00:00
|
|
|
import LikeButton from '@/components/song/SongLikeButton.vue'
|
2022-08-01 08:58:25 +00:00
|
|
|
import SoundBars from '@/components/ui/SoundBars.vue'
|
2022-10-26 12:34:32 +00:00
|
|
|
import SongThumbnail from '@/components/song/SongThumbnail.vue'
|
2022-04-15 17:00:08 +00:00
|
|
|
|
2024-01-04 10:24:40 +00:00
|
|
|
const { currentUser } = useAuthorization()
|
|
|
|
|
2022-11-12 21:38:31 +00:00
|
|
|
const props = defineProps<{ item: SongRow }>()
|
|
|
|
const { item } = toRefs(props)
|
2022-04-15 17:00:08 +00:00
|
|
|
|
|
|
|
const song = computed(() => item.value.song)
|
2022-06-10 10:47:46 +00:00
|
|
|
const playing = computed(() => ['Playing', 'Paused'].includes(song.value.playback_state!))
|
2024-01-04 10:24:40 +00:00
|
|
|
const external = computed(() => song.value.owner_id !== currentUser.value?.id)
|
2022-06-10 10:47:46 +00:00
|
|
|
const fmtLength = secondsToHis(song.value.length)
|
2022-04-15 17:00:08 +00:00
|
|
|
|
2022-04-23 22:31:40 +00:00
|
|
|
const play = () => {
|
|
|
|
queueStore.queueIfNotQueued(song.value)
|
2022-04-24 08:50:45 +00:00
|
|
|
playbackService.play(song.value)
|
2022-04-15 17:00:08 +00:00
|
|
|
}
|
2022-04-15 14:24:30 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.song-item {
|
2022-10-13 15:18:47 +00:00
|
|
|
color: var(--color-text-secondary);
|
2022-04-15 14:24:30 +00:00
|
|
|
border-bottom: 1px solid var(--color-bg-secondary);
|
|
|
|
max-width: 100% !important; // overriding .item
|
2022-10-26 12:34:32 +00:00
|
|
|
height: 64px;
|
2022-04-15 17:00:08 +00:00
|
|
|
display: flex;
|
2022-10-26 12:34:32 +00:00
|
|
|
align-items: center;
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-07-15 15:23:12 +00:00
|
|
|
&:focus, &:focus-within {
|
2022-08-06 07:25:24 +00:00
|
|
|
box-shadow: 0 0 1px 1px var(--color-accent) inset;
|
2022-07-15 15:23:12 +00:00
|
|
|
border-radius: 4px;
|
2022-04-15 14:24:30 +00:00
|
|
|
}
|
|
|
|
|
2024-01-04 10:24:40 +00:00
|
|
|
.external-mark {
|
|
|
|
display: inline-block !important;
|
|
|
|
vertical-align: bottom;
|
|
|
|
margin-right: .2rem;
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
|
2022-10-26 12:34:32 +00:00
|
|
|
@media (hover: none) {
|
|
|
|
.cover {
|
|
|
|
.control {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
opacity: .7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-15 15:23:12 +00:00
|
|
|
&:hover {
|
|
|
|
background: rgba(255, 255, 255, .05);
|
2022-04-15 14:24:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
|
|
|
background-color: rgba(255, 255, 255, .08);
|
|
|
|
}
|
|
|
|
|
2022-10-13 15:18:47 +00:00
|
|
|
&.playing {
|
2022-11-12 21:38:31 +00:00
|
|
|
.title, .track-number, .favorite {
|
2022-10-13 15:18:47 +00:00
|
|
|
color: var(--color-accent) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-12 21:38:31 +00:00
|
|
|
.title-artist {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
span {
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-13 15:18:47 +00:00
|
|
|
button {
|
|
|
|
color: currentColor;
|
2022-04-15 14:24:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|