koel/resources/assets/js/components/screens/PlaylistScreen.vue

137 lines
3.8 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
2022-04-21 16:06:45 +00:00
<section id="playlistWrapper" v-if="playlist">
2022-04-15 17:00:08 +00:00
<ScreenHeader>
2022-04-29 18:26:07 +00:00
{{ playlist?.name }}
2022-06-10 10:47:46 +00:00
<ControlsToggle v-if="songs.length" :showing-controls="showingControls" @toggleControls="toggleControls"/>
2022-04-15 14:24:30 +00:00
<template v-slot:meta>
2022-04-23 21:24:02 +00:00
<span class="meta" v-if="songs.length">
{{ pluralize(songs.length, 'song') }}
2022-04-15 14:24:30 +00:00
2022-04-23 21:24:02 +00:00
{{ duration }}
<template v-if="allowDownload">
2022-04-15 14:24:30 +00:00
2022-04-23 21:24:02 +00:00
<a href role="button" title="Download all songs in playlist" @click.prevent="download">Download All</a>
2022-04-15 14:24:30 +00:00
</template>
</span>
</template>
<template v-slot:controls>
2022-04-15 17:00:08 +00:00
<SongListControls
2022-06-10 10:47:46 +00:00
v-if="!isPhone || showingControls"
2022-04-15 14:24:30 +00:00
@playAll="playAll"
@playSelected="playSelected"
@deletePlaylist="destroy"
2022-06-10 10:47:46 +00:00
:config="controlsConfig"
2022-04-15 14:24:30 +00:00
/>
</template>
2022-04-15 17:00:08 +00:00
</ScreenHeader>
2022-04-15 14:24:30 +00:00
2022-06-10 10:47:46 +00:00
<SongList
v-if="songs.length"
ref="songList"
@press:delete="removeSelected"
@press:enter="onPressEnter"
@sort="sort"
/>
<ScreenEmptyState v-if="!songs.length && !loading">
<template v-slot:icon>
<i class="fa fa-file-o"></i>
</template>
<template v-if="playlist?.is_smart">
No songs match the playlist's
<a @click.prevent="editSmartPlaylist">criteria</a>.
</template>
<template v-else>
The playlist is currently empty.
<span class="d-block secondary">
Drag songs into its name in the sidebar
or use the &quot;Add To&quot; button to fill it up.
</span>
</template>
</ScreenEmptyState>
2022-04-15 14:24:30 +00:00
</section>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
2022-04-29 18:26:07 +00:00
import { difference } from 'lodash'
import { defineAsyncComponent, nextTick, ref, toRef } from 'vue'
import { alerts, eventBus, pluralize } from '@/utils'
2022-06-10 10:47:46 +00:00
import { commonStore, playlistStore, songStore } from '@/stores'
2022-04-24 08:50:45 +00:00
import { downloadService } from '@/services'
2022-04-15 17:00:08 +00:00
import { useSongList } from '@/composables'
2022-04-21 16:06:45 +00:00
const ScreenHeader = defineAsyncComponent(() => import('@/components/ui/ScreenHeader.vue'))
const ScreenEmptyState = defineAsyncComponent(() => import('@/components/ui/ScreenEmptyState.vue'))
2022-04-15 17:00:08 +00:00
2022-04-21 16:06:45 +00:00
const playlist = ref<Playlist>()
2022-06-10 10:47:46 +00:00
const playlistSongs = ref<Song[]>([])
const loading = ref(false)
const controlsConfig: Partial<SongListControlsConfig> = { deletePlaylist: true }
2022-04-21 16:06:45 +00:00
2022-04-15 17:00:08 +00:00
const {
SongList,
SongListControls,
2022-06-10 10:47:46 +00:00
ControlsToggle,
2022-04-21 16:06:45 +00:00
songs,
2022-04-15 17:00:08 +00:00
songList,
2022-04-23 21:24:02 +00:00
duration,
2022-04-15 17:00:08 +00:00
selectedSongs,
showingControls,
isPhone,
onPressEnter,
2022-04-15 17:00:08 +00:00
playAll,
playSelected,
2022-06-10 10:47:46 +00:00
toggleControls,
sort
} = useSongList(playlistSongs, 'playlist')
2022-04-15 14:24:30 +00:00
2022-06-10 10:47:46 +00:00
const allowDownload = toRef(commonStore.state, 'allow_download')
2022-04-15 17:00:08 +00:00
const destroy = () => eventBus.emit('PLAYLIST_DELETE', playlist.value)
2022-04-21 16:06:45 +00:00
const download = () => downloadService.fromPlaylist(playlist.value!)
2022-04-15 17:00:08 +00:00
const editSmartPlaylist = () => eventBus.emit('MODAL_SHOW_EDIT_SMART_PLAYLIST_FORM', playlist.value)
const removeSelected = () => {
2022-07-04 10:39:02 +00:00
if (!selectedSongs.value.length || playlist.value.is_smart) return
playlistStore.removeSongs(playlist.value!, selectedSongs.value)
songs.value = difference(songs.value, selectedSongs.value)
alerts.success(`Removed ${pluralize(selectedSongs.value.length, 'song')} from "${playlist.value!.name}."`)
}
2022-06-10 10:47:46 +00:00
const fetchSongs = async () => {
loading.value = true
playlistSongs.value = await songStore.fetchForPlaylist(playlist.value!)
loading.value = false
2022-04-15 17:00:08 +00:00
await nextTick()
2022-06-10 10:47:46 +00:00
sort('title', 'asc')
2022-04-15 17:00:08 +00:00
}
2022-04-15 14:24:30 +00:00
eventBus.on({
LOAD_MAIN_CONTENT (view: MainViewName, playlistFromRoute: Playlist) {
if (view !== 'Playlist') {
return
}
2022-06-10 10:47:46 +00:00
playlistSongs.value = []
playlist.value = playlistFromRoute
fetchSongs()
},
2022-06-10 10:47:46 +00:00
'SMART_PLAYLIST_UPDATED': (updated: Playlist) => updated === playlist.value && fetchSongs()
2022-04-15 17:00:08 +00:00
}
)
2022-04-15 14:24:30 +00:00
</script>
<style lang="scss">
#playlistWrapper {
.none {
padding: 16px 24px;
}
}
</style>