mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
121 lines
4 KiB
Vue
121 lines
4 KiB
Vue
<template>
|
|
<article
|
|
:class="{ playing, external, selected: item.selected }"
|
|
class="song-item group text-k-text-secondary border-b border-k-border !max-w-full h-[64px] flex
|
|
items-center transition-[background-color,_box-shadow] ease-in-out duration-200
|
|
focus:rounded-md focus focus-within:rounded-md focus:ring-inset focus:ring-1 focus:!ring-k-accent
|
|
focus-within:ring-inset focus-within:ring-1 focus-within:!ring-k-accent
|
|
hover:bg-white/5 hover:ring-inset hover:ring-1 hover:ring-white/10 hover:rounded-md"
|
|
data-testid="song-item"
|
|
tabindex="0"
|
|
@dblclick.prevent.stop="play"
|
|
>
|
|
<span class="track-number">
|
|
<SoundBars v-if="playable.playback_state === 'Playing'" />
|
|
<span v-else class="text-k-text-secondary">
|
|
<template v-if="isSong(playable)">{{ playable.track || '' }}</template>
|
|
<Icon v-else :icon="faPodcast" />
|
|
</span>
|
|
</span>
|
|
<span class="thumbnail leading-none">
|
|
<SongThumbnail :playable="playable" />
|
|
</span>
|
|
<span class="title-artist flex flex-col gap-2 overflow-hidden">
|
|
<span class="title text-k-text-primary !flex gap-2 items-center">
|
|
<ExternalMark v-if="external" class="!inline-block" />
|
|
{{ playable.title }}
|
|
</span>
|
|
<span class="artist">{{ artist }}</span>
|
|
</span>
|
|
<span class="album">{{ album }}</span>
|
|
<template v-if="config.collaborative">
|
|
<span class="collaborator">
|
|
<UserAvatar :user="collaborator" width="24" />
|
|
</span>
|
|
<span :title="playable.collaboration.added_at" class="added-at">{{ playable.collaboration.fmt_added_at }}</span>
|
|
</template>
|
|
<span class="time">{{ fmtLength }}</span>
|
|
<span class="extra">
|
|
<LikeButton :playable="playable" />
|
|
</span>
|
|
</article>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { faPodcast } from '@fortawesome/free-solid-svg-icons'
|
|
import { computed, toRefs } from 'vue'
|
|
import { getPlayableProp, isSong, requireInjection, secondsToHis } from '@/utils'
|
|
import { useAuthorization, useKoelPlus } from '@/composables'
|
|
import { PlayableListConfigKey } from '@/symbols'
|
|
|
|
import LikeButton from '@/components/song/SongLikeButton.vue'
|
|
import SoundBars from '@/components/ui/SoundBars.vue'
|
|
import SongThumbnail from '@/components/song/SongThumbnail.vue'
|
|
import UserAvatar from '@/components/user/UserAvatar.vue'
|
|
import ExternalMark from '@/components/ui/ExternalMark.vue'
|
|
|
|
const props = defineProps<{ item: PlayableRow }>()
|
|
|
|
const emit = defineEmits<{ (e: 'play', playable: Playable): void }>()
|
|
|
|
const [config] = requireInjection<[Partial<PlayableListConfig>]>(PlayableListConfigKey, [{}])
|
|
|
|
const { currentUser } = useAuthorization()
|
|
const { isPlus } = useKoelPlus()
|
|
|
|
const { item } = toRefs(props)
|
|
|
|
const playable = computed<Playable | CollaborativeSong>(() => item.value.playable)
|
|
const playing = computed(() => ['Playing', 'Paused'].includes(playable.value.playback_state!))
|
|
|
|
const external = computed(() => {
|
|
if (!isSong(playable.value)) {
|
|
return false
|
|
}
|
|
return isPlus.value && playable.value.owner_id !== currentUser.value?.id
|
|
})
|
|
|
|
const fmtLength = secondsToHis(playable.value.length)
|
|
const artist = computed(() => getPlayableProp(playable.value, 'artist_name', 'podcast_author'))
|
|
const album = computed(() => getPlayableProp(playable.value, 'album_name', 'podcast_title'))
|
|
|
|
const collaborator = computed<Pick<User, 'name' | 'avatar'>>(
|
|
() => (playable.value as CollaborativeSong).collaboration.user,
|
|
)
|
|
|
|
const play = () => emit('play', playable.value)
|
|
</script>
|
|
|
|
<style lang="postcss" scoped>
|
|
article {
|
|
&.droppable {
|
|
@apply relative transition-none after:absolute after:w-full after:h-[3px] after:rounded after:bg-k-success after:top-0;
|
|
|
|
&.dragover-bottom {
|
|
@apply after:top-auto after:bottom-0;
|
|
}
|
|
}
|
|
|
|
&.selected {
|
|
@apply bg-white/10;
|
|
}
|
|
|
|
&.playing {
|
|
.title,
|
|
.track-number,
|
|
.favorite {
|
|
@apply text-k-accent !important;
|
|
}
|
|
}
|
|
|
|
.title-artist {
|
|
span {
|
|
@apply overflow-hidden whitespace-nowrap text-ellipsis block;
|
|
}
|
|
}
|
|
|
|
button {
|
|
@apply text-current;
|
|
}
|
|
}
|
|
</style>
|