2022-04-15 14:24:30 +00:00
|
|
|
<template>
|
|
|
|
<section id="recentlyPlayedWrapper">
|
2022-07-17 08:58:05 +00:00
|
|
|
<ScreenHeader :layout="songs.length === 0 ? 'collapsed' : headerLayout">
|
2022-04-15 14:24:30 +00:00
|
|
|
Recently Played
|
2022-12-02 16:17:37 +00:00
|
|
|
<ControlsToggle v-model="showingControls" />
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-12-02 16:17:37 +00:00
|
|
|
<template #thumbnail>
|
|
|
|
<ThumbnailStack :thumbnails="thumbnails" />
|
2022-07-16 09:52:39 +00:00
|
|
|
</template>
|
|
|
|
|
2022-12-02 16:17:37 +00:00
|
|
|
<template v-if="songs.length" #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>
|
2022-04-15 14:24:30 +00:00
|
|
|
</template>
|
|
|
|
|
2022-12-02 16:17:37 +00:00
|
|
|
<template #controls>
|
2022-04-15 17:00:08 +00:00
|
|
|
<SongListControls
|
2022-04-21 16:06:45 +00:00
|
|
|
v-if="songs.length && (!isPhone || showingControls)"
|
2024-01-18 11:13:05 +00:00
|
|
|
:config="config"
|
2022-12-17 12:09:22 +00:00
|
|
|
@filter="applyFilter"
|
2022-12-02 16:17:37 +00:00
|
|
|
@play-all="playAll"
|
|
|
|
@play-selected="playSelected"
|
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-12-02 16:17:37 +00:00
|
|
|
<SongListSkeleton v-if="loading" />
|
2022-10-18 14:07:41 +00:00
|
|
|
|
2022-12-02 16:17:37 +00:00
|
|
|
<SongList v-if="songs.length" ref="songList" @press:enter="onPressEnter" @scroll-breakpoint="onScrollBreakpoint" />
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-04-21 18:12:11 +00:00
|
|
|
<ScreenEmptyState v-else>
|
2022-12-02 16:17:37 +00:00
|
|
|
<template #icon>
|
2023-11-10 13:16:06 +00:00
|
|
|
<Icon :icon="faClock" />
|
2022-04-15 14:24:30 +00:00
|
|
|
</template>
|
|
|
|
No songs recently played.
|
2022-04-21 16:06:45 +00:00
|
|
|
<span class="secondary d-block">Start playing to populate this playlist.</span>
|
2022-04-21 18:12:11 +00:00
|
|
|
</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 { faClock } from '@fortawesome/free-regular-svg-icons'
|
2022-09-12 15:33:41 +00:00
|
|
|
import { pluralize } from '@/utils'
|
2022-04-15 14:24:30 +00:00
|
|
|
import { recentlyPlayedStore } from '@/stores'
|
2024-01-18 11:13:05 +00:00
|
|
|
import { useRouter, useSongList, useSongListControls } from '@/composables'
|
2022-07-30 15:08:20 +00:00
|
|
|
import { ref, toRef } from 'vue'
|
2022-04-15 14:24:30 +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 14:24:30 +00:00
|
|
|
|
2022-07-16 09:52:39 +00:00
|
|
|
const recentlyPlayedSongs = toRef(recentlyPlayedStore.state, 'songs')
|
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
const {
|
|
|
|
SongList,
|
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-07-16 09:52:39 +00:00
|
|
|
thumbnails,
|
2022-04-23 21:24:02 +00:00
|
|
|
duration,
|
2022-04-15 17:00:08 +00:00
|
|
|
showingControls,
|
|
|
|
isPhone,
|
2022-04-21 18:12:11 +00:00
|
|
|
onPressEnter,
|
|
|
|
playAll,
|
2022-04-15 17:00:08 +00:00
|
|
|
playSelected,
|
2022-12-17 12:09:22 +00:00
|
|
|
applyFilter,
|
2022-07-16 09:52:39 +00:00
|
|
|
onScrollBreakpoint
|
2024-03-25 22:59:38 +00:00
|
|
|
} = useSongList(recentlyPlayedSongs, { type: 'RecentlyPlayed' }, { sortable: false })
|
2022-06-10 10:47:46 +00:00
|
|
|
|
2024-01-18 11:13:05 +00:00
|
|
|
const { SongListControls, config } = useSongListControls('RecentlyPlayed')
|
|
|
|
|
2022-06-10 10:47:46 +00:00
|
|
|
let initialized = false
|
2022-07-30 15:08:20 +00:00
|
|
|
let loading = ref(false)
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-11-18 18:56:21 +00:00
|
|
|
useRouter().onScreenActivated('RecentlyPlayed', async () => {
|
2022-09-12 15:33:41 +00:00
|
|
|
if (!initialized) {
|
|
|
|
loading.value = true
|
|
|
|
initialized = true
|
|
|
|
await recentlyPlayedStore.fetch()
|
|
|
|
loading.value = false
|
2022-06-10 10:47:46 +00:00
|
|
|
}
|
2022-04-15 14:24:30 +00:00
|
|
|
})
|
|
|
|
</script>
|