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

95 lines
2.5 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
2024-04-04 22:20:42 +00:00
<ScreenBase>
<template #header>
<ScreenHeader :layout="songs.length === 0 ? 'collapsed' : headerLayout">
Recently Played
<ControlsToggle v-model="showingControls" />
2022-04-15 14:24:30 +00:00
2024-04-04 22:20:42 +00:00
<template #thumbnail>
<ThumbnailStack :thumbnails="thumbnails" />
</template>
2022-07-16 09:52:39 +00:00
2024-04-04 22:20:42 +00:00
<template v-if="songs.length" #meta>
2024-05-19 05:49:42 +00:00
<span>{{ pluralize(songs, 'item') }}</span>
2024-04-04 22:20:42 +00:00
<span>{{ duration }}</span>
</template>
2022-04-15 14:24:30 +00:00
2024-04-04 22:20:42 +00:00
<template #controls>
<SongListControls
v-if="songs.length && (!isPhone || showingControls)"
:config="config"
@filter="applyFilter"
@play-all="playAll"
@play-selected="playSelected"
/>
</template>
</ScreenHeader>
</template>
2022-04-15 14:24:30 +00:00
2024-04-04 22:20:42 +00:00
<SongListSkeleton v-if="loading" class="-m-6" />
2024-04-04 22:20:42 +00:00
<SongList
v-if="songs.length"
ref="songList"
class="-m-6"
@press:enter="onPressEnter"
@scroll-breakpoint="onScrollBreakpoint"
/>
2022-04-15 14:24:30 +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>
</ScreenEmptyState>
2024-04-04 22:20:42 +00:00
</ScreenBase>
2022-04-15 14:24:30 +00:00
</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'
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
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'
2024-04-04 22:20:42 +00:00
import ScreenBase from '@/components/screens/ScreenBase.vue'
2022-04-15 14:24:30 +00:00
2024-05-19 05:49:42 +00:00
const recentlyPlayedSongs = toRef(recentlyPlayedStore.state, 'playables')
2022-07-16 09:52:39 +00:00
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,
onPressEnter,
playAll,
2022-04-15 17:00:08 +00:00
playSelected,
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 () => {
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>