koel/resources/assets/js/components/screens/QueueScreen.vue
2022-04-26 12:46:31 +03:00

93 lines
2.6 KiB
Vue

<template>
<section id="queueWrapper">
<ScreenHeader>
Current Queue
<ControlsToggler :showing-controls="showingControls" @toggleControls="toggleControls"/>
<template v-slot:meta>
<span v-if="songs.length" data-test="list-meta">
{{ pluralize(songs.length, 'song') }} {{ duration }}
</span>
</template>
<template v-slot:controls>
<SongListControls
v-if="songs.length && (!isPhone || showingControls)"
@playAll="playAll"
@playSelected="playSelected"
@clearQueue="clearQueue"
:songs="songs"
:config="songListControlConfig"
:selectedSongs="selectedSongs"
/>
</template>
</ScreenHeader>
<SongList
v-if="songs.length"
ref="songList"
:config="{ sortable: false }"
:items="songs"
type="queue"
@press:delete="removeSelected"
@press:enter="onPressEnter"
/>
<ScreenEmptyState v-else>
<template v-slot:icon>
<i class="fa fa-coffee"></i>
</template>
No songs queued.
<span class="d-block secondary">
How about
<a
v-if="showShuffleLibraryButton"
data-testid="shuffle-library"
class="start" @click.prevent="playAll(true)"
>
shuffling the whole library
</a>?
</span>
</ScreenEmptyState>
</section>
</template>
<script lang="ts" setup>
import { computed, defineAsyncComponent, toRef } from 'vue'
import { pluralize } from '@/utils'
import { queueStore, songStore } from '@/stores'
import { playbackService } from '@/services'
import { useSongList } from '@/composables'
const ScreenHeader = defineAsyncComponent(() => import('@/components/ui/ScreenHeader.vue'))
const ScreenEmptyState = defineAsyncComponent(() => import('@/components/ui/ScreenEmptyState.vue'))
const {
SongList,
SongListControls,
ControlsToggler,
songs,
songList,
duration,
selectedSongs,
showingControls,
songListControlConfig,
isPhone,
playSelected,
toggleControls
} = useSongList(toRef(queueStore.state, 'songs'), { clearQueue: true })
const showShuffleLibraryButton = computed(() => songs.value.length > 0)
const playAll = (shuffle: boolean) => playbackService.queueAndPlay(songs.value.length ? songs.value : songStore.all, shuffle)
const clearQueue = () => queueStore.clear()
const removeSelected = () => selectedSongs.value.length && queueStore.unqueue(selectedSongs.value)
const onPressEnter = () => selectedSongs.value.length && playbackService.play(selectedSongs.value[0])
</script>
<style lang="scss" scoped>
.start {
color: var(--color-highlight);
}
</style>