2022-04-15 14:24:30 +00:00
|
|
|
<template>
|
2022-10-08 10:54:25 +00:00
|
|
|
<section v-if="playlist" id="playlistWrapper">
|
2022-11-08 19:35:18 +00:00
|
|
|
<ScreenHeader :layout="songs.length === 0 ? 'collapsed' : headerLayout" :disabled="loading">
|
2022-07-12 16:49:15 +00:00
|
|
|
{{ playlist.name }}
|
2022-09-11 08:06:34 +00:00
|
|
|
<ControlsToggle v-if="songs.length" v-model="showingControls"/>
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-07-16 09:52:39 +00:00
|
|
|
<template v-slot:thumbnail>
|
|
|
|
<ThumbnailStack :thumbnails="thumbnails"/>
|
|
|
|
</template>
|
|
|
|
|
2022-10-08 10:54:25 +00:00
|
|
|
<template v-if="songs.length" v-slot:meta>
|
2022-09-03 08:32:09 +00:00
|
|
|
<span>{{ pluralize(songs, 'song') }}</span>
|
2022-07-10 17:15:56 +00:00
|
|
|
<span>{{ duration }}</span>
|
|
|
|
<a
|
|
|
|
v-if="allowDownload"
|
|
|
|
href
|
|
|
|
role="button"
|
|
|
|
title="Download all songs in playlist"
|
|
|
|
@click.prevent="download"
|
|
|
|
>
|
|
|
|
Download All
|
|
|
|
</a>
|
2022-04-15 14:24:30 +00:00
|
|
|
</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-07-16 09:52:39 +00:00
|
|
|
:config="controlsConfig"
|
|
|
|
@deletePlaylist="destroy"
|
2022-04-15 14:24:30 +00:00
|
|
|
@playAll="playAll"
|
|
|
|
@playSelected="playSelected"
|
2022-11-08 19:35:18 +00:00
|
|
|
@refresh="fetchSongs(true)"
|
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-11-08 19:35:18 +00:00
|
|
|
<SongListSkeleton v-show="loading"/>
|
2022-06-10 10:47:46 +00:00
|
|
|
<SongList
|
2022-07-30 15:08:20 +00:00
|
|
|
v-if="!loading && songs.length"
|
2022-06-10 10:47:46 +00:00
|
|
|
ref="songList"
|
2022-10-08 10:54:25 +00:00
|
|
|
@sort="sort"
|
2022-06-10 10:47:46 +00:00
|
|
|
@press:delete="removeSelected"
|
|
|
|
@press:enter="onPressEnter"
|
2022-07-16 09:52:39 +00:00
|
|
|
@scroll-breakpoint="onScrollBreakpoint"
|
2022-06-10 10:47:46 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
<ScreenEmptyState v-if="!songs.length && !loading">
|
|
|
|
<template v-slot:icon>
|
2022-07-15 07:23:55 +00:00
|
|
|
<icon :icon="faFile"/>
|
2022-06-10 10:47:46 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<template v-if="playlist?.is_smart">
|
|
|
|
No songs match the playlist's
|
2022-09-08 05:06:49 +00:00
|
|
|
<a @click.prevent="editPlaylist">criteria</a>.
|
2022-06-10 10:47:46 +00:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
The playlist is currently empty.
|
|
|
|
<span class="d-block secondary">
|
2022-07-05 15:09:20 +00:00
|
|
|
Drag songs into its name in the sidebar or use the "Add To…" button to fill it up.
|
2022-06-10 10:47:46 +00:00
|
|
|
</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-07-15 07:23:55 +00:00
|
|
|
import { faFile } from '@fortawesome/free-regular-svg-icons'
|
2022-07-22 21:56:13 +00:00
|
|
|
import { differenceBy } from 'lodash'
|
2022-10-18 14:07:41 +00:00
|
|
|
import { ref, toRef, watch } from 'vue'
|
2022-07-26 09:51:19 +00:00
|
|
|
import { eventBus, pluralize, requireInjection } 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-10-24 15:27:17 +00:00
|
|
|
import { usePlaylistManagement, useSongList } from '@/composables'
|
2022-10-08 10:54:25 +00:00
|
|
|
import { MessageToasterKey, RouterKey } from '@/symbols'
|
2022-04-15 17:00:08 +00:00
|
|
|
|
2022-07-07 18:05:46 +00:00
|
|
|
import ScreenHeader from '@/components/ui/ScreenHeader.vue'
|
|
|
|
import ScreenEmptyState from '@/components/ui/ScreenEmptyState.vue'
|
2022-07-30 15:08:20 +00:00
|
|
|
import SongListSkeleton from '@/components/ui/skeletons/SongListSkeleton.vue'
|
2022-04-15 17:00:08 +00:00
|
|
|
|
2022-07-26 09:51:19 +00:00
|
|
|
const toaster = requireInjection(MessageToasterKey)
|
2022-10-08 10:54:25 +00:00
|
|
|
const router = requireInjection(RouterKey)
|
2022-10-18 14:07:41 +00:00
|
|
|
|
|
|
|
const playlistId = ref<number>()
|
2022-04-21 16:06:45 +00:00
|
|
|
const playlist = ref<Playlist>()
|
2022-06-10 10:47:46 +00:00
|
|
|
const loading = ref(false)
|
|
|
|
|
2022-11-08 19:35:18 +00:00
|
|
|
const controlsConfig: Partial<SongListControlsConfig> = {
|
|
|
|
deletePlaylist: true,
|
|
|
|
refresh: 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-07-16 09:52:39 +00:00
|
|
|
ThumbnailStack,
|
|
|
|
headerLayout,
|
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-07-16 09:52:39 +00:00
|
|
|
thumbnails,
|
2022-04-15 17:00:08 +00:00
|
|
|
selectedSongs,
|
|
|
|
showingControls,
|
|
|
|
isPhone,
|
2022-04-21 18:12:11 +00:00
|
|
|
onPressEnter,
|
2022-04-15 17:00:08 +00:00
|
|
|
playAll,
|
|
|
|
playSelected,
|
2022-07-16 09:52:39 +00:00
|
|
|
onScrollBreakpoint,
|
2022-06-10 10:47:46 +00:00
|
|
|
sort
|
2022-10-09 06:31:46 +00:00
|
|
|
} = useSongList(ref<Song[]>([]), 'Playlist')
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-10-24 15:27:17 +00:00
|
|
|
const { removeSongsFromPlaylist } = usePlaylistManagement()
|
|
|
|
|
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-09-08 05:06:49 +00:00
|
|
|
const editPlaylist = () => eventBus.emit('MODAL_SHOW_EDIT_PLAYLIST_FORM', playlist.value)
|
2022-04-15 17:00:08 +00:00
|
|
|
|
2022-10-24 15:27:17 +00:00
|
|
|
const removeSelected = async () => await removeSongsFromPlaylist(playlist.value!, selectedSongs.value)
|
2022-04-21 18:12:11 +00:00
|
|
|
|
2022-11-08 19:35:18 +00:00
|
|
|
const fetchSongs = async (refresh = false) => {
|
2022-06-10 10:47:46 +00:00
|
|
|
loading.value = true
|
2022-11-08 19:35:18 +00:00
|
|
|
songs.value = await songStore.fetchForPlaylist(playlist.value!, refresh)
|
2022-06-10 10:47:46 +00:00
|
|
|
loading.value = false
|
2022-07-05 15:09:20 +00:00
|
|
|
sort()
|
2022-04-15 17:00:08 +00:00
|
|
|
}
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-10-18 14:07:41 +00:00
|
|
|
watch(playlistId, async (id) => {
|
|
|
|
if (!id) return
|
2022-10-08 10:54:25 +00:00
|
|
|
|
2022-10-18 14:07:41 +00:00
|
|
|
playlist.value = playlistStore.byId(id)
|
|
|
|
playlist.value ? await fetchSongs() : await router.triggerNotFound()
|
2022-10-08 10:54:25 +00:00
|
|
|
})
|
|
|
|
|
2022-10-18 14:07:41 +00:00
|
|
|
router.onRouteChanged(route => route.screen === 'Playlist' && (playlistId.value = parseInt(route.params!.id)))
|
|
|
|
|
2022-10-08 10:54:25 +00:00
|
|
|
eventBus.on({
|
2022-10-24 15:27:17 +00:00
|
|
|
PLAYLIST_UPDATED: async (updated: Playlist) => updated.id === playlistId.value && await fetchSongs(),
|
|
|
|
PLAYLIST_SONGS_REMOVED: async (playlist: Playlist, removed: Song[]) => {
|
|
|
|
if (playlist.id !== playlistId.value) return
|
|
|
|
songs.value = differenceBy(songs.value, removed, 'id')
|
|
|
|
}
|
2022-10-08 10:54:25 +00:00
|
|
|
})
|
2022-04-15 14:24:30 +00:00
|
|
|
</script>
|