koel/resources/assets/js/components/ui/FooterPlayButton.vue
2023-11-10 14:16:06 +01:00

71 lines
2 KiB
Vue

<template>
<button type="button" :class="playing ? 'playing' : 'stopped'" title="Play or resume" @click.prevent="toggle">
<Icon v-if="playing" :icon="faPause" />
<Icon v-else :icon="faPlay" />
</button>
</template>
<script lang="ts" setup>
import { faPause, faPlay } from '@fortawesome/free-solid-svg-icons'
import { computed, ref } from 'vue'
import { playbackService } from '@/services'
import { commonStore, favoriteStore, queueStore, recentlyPlayedStore, songStore } from '@/stores'
import { requireInjection } from '@/utils'
import { useRouter } from '@/composables'
import { CurrentSongKey } from '@/symbols'
const { getCurrentScreen, getRouteParam, go } = useRouter()
const song = requireInjection(CurrentSongKey, ref())
const libraryEmpty = computed(() => commonStore.state.song_count === 0)
const playing = computed(() => song.value?.playback_state === 'Playing')
const toggle = async () => song.value ? playbackService.toggle() : initiatePlayback()
const initiatePlayback = async () => {
if (libraryEmpty.value) return
let songs: Song[]
switch (getCurrentScreen()) {
case 'Album':
songs = await songStore.fetchForAlbum(parseInt(getRouteParam('id')!))
break
case 'Artist':
songs = await songStore.fetchForArtist(parseInt(getRouteParam('id')!))
break
case 'Playlist':
songs = await songStore.fetchForPlaylist(parseInt(getRouteParam('id')!))
break
case 'Favorites':
songs = await favoriteStore.fetch()
break
case 'RecentlyPlayed':
songs = await recentlyPlayedStore.fetch()
break
default:
songs = await queueStore.fetchRandom()
break
}
playbackService.queueAndPlay(songs)
go('queue')
}
</script>
<style lang="scss" scoped>
button {
width: 3rem !important;
border-radius: 50%;
border: 2px solid currentColor;
&.stopped {
text-indent: 0.2rem;
}
&:hover {
border-color: var(--color-text-primary) !important;
transform: scale(1.2);
}
}
</style>