mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
61 lines
1.8 KiB
Vue
61 lines
1.8 KiB
Vue
<template>
|
|
<li
|
|
:class="{ active, available: matchedSong }"
|
|
:title="tooltip"
|
|
tabindex="0"
|
|
@click="play"
|
|
>
|
|
<span class="title">{{ track.title }}</span>
|
|
<AppleMusicButton v-if="useAppleMusic && !matchedSong" :url="iTunesUrl"/>
|
|
<span class="length">{{ fmtLength }}</span>
|
|
</li>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, defineAsyncComponent, inject, ref, toRefs } from 'vue'
|
|
import { queueStore, songStore } from '@/stores'
|
|
import { authService, playbackService } from '@/services'
|
|
import { useThirdPartyServices } from '@/composables'
|
|
import { secondsToHis } from '@/utils'
|
|
import { SongsKey } from '@/symbols'
|
|
|
|
const AppleMusicButton = defineAsyncComponent(() => import('@/components/ui/AppleMusicButton.vue'))
|
|
|
|
const props = defineProps<{ album: Album, track: AlbumTrack, songs: Song[] }>()
|
|
const { album, track, songs } = toRefs(props)
|
|
|
|
const { useAppleMusic } = useThirdPartyServices()
|
|
|
|
const songsToMatchAgainst = inject(SongsKey, ref([]))
|
|
|
|
const matchedSong = computed(() => songStore.match(track.value.title, songsToMatchAgainst.value))
|
|
const tooltip = computed(() => matchedSong.value ? 'Click to play' : '')
|
|
const fmtLength = computed(() => secondsToHis(track.value.length))
|
|
|
|
const active = computed(() => matchedSong.value && matchedSong.value.playback_state !== 'Stopped')
|
|
|
|
const iTunesUrl = computed(() => {
|
|
return `${window.BASE_URL}itunes/song/${album.value.id}?q=${encodeURIComponent(track.value.title)}&api_token=${authService.getToken()}`
|
|
})
|
|
|
|
const play = () => {
|
|
if (matchedSong.value) {
|
|
queueStore.queueIfNotQueued(matchedSong.value)
|
|
playbackService.play(matchedSong.value)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
li {
|
|
span.title {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
&:focus, &.active {
|
|
span.title {
|
|
color: var(--color-highlight);
|
|
}
|
|
}
|
|
}
|
|
</style>
|