koel/resources/assets/js/components/screens/home/RecentlyPlayedSongs.vue

38 lines
1.2 KiB
Vue
Raw Normal View History

2022-06-10 10:47:46 +00:00
<template>
2024-04-04 22:20:42 +00:00
<HomeScreenBlock>
<template #header>
2022-06-10 10:47:46 +00:00
Recently Played
2024-04-04 22:20:42 +00:00
<ViewAllRecentSongsButton v-if="songs.length" class="float-right" />
</template>
2022-06-10 10:47:46 +00:00
2024-04-04 22:20:42 +00:00
<ol v-if="loading" class="space-y-3">
2022-07-30 15:08:20 +00:00
<li v-for="i in 3" :key="i">
2022-12-02 16:17:37 +00:00
<SongCardSkeleton />
2022-06-10 10:47:46 +00:00
</li>
</ol>
2022-07-30 15:08:20 +00:00
<template v-else>
2024-04-04 22:20:42 +00:00
<ol v-if="songs.length" class="space-y-3">
2022-07-30 15:08:20 +00:00
<li v-for="song in songs" :key="song.id">
2024-05-19 05:49:42 +00:00
<SongCard :playable="song" />
2022-07-30 15:08:20 +00:00
</li>
</ol>
2024-04-04 22:20:42 +00:00
<p v-else class="text-k-text-secondary">No songs played as of late.</p>
2022-07-30 15:08:20 +00:00
</template>
2024-04-04 22:20:42 +00:00
</HomeScreenBlock>
2022-06-10 10:47:46 +00:00
</template>
<script lang="ts" setup>
import { toRef, toRefs } from 'vue'
import { overviewStore } from '@/stores'
2022-06-10 10:47:46 +00:00
import SongCard from '@/components/song/SongCard.vue'
2022-07-30 15:08:20 +00:00
import SongCardSkeleton from '@/components/ui/skeletons/SongCardSkeleton.vue'
2024-04-04 22:20:42 +00:00
import HomeScreenBlock from '@/components/screens/home/HomeScreenBlock.vue'
import ViewAllRecentSongsButton from '@/components/screens/home/ViewAllRecentSongsButton.vue'
const props = withDefaults(defineProps<{ loading?: boolean }>(), { loading: false })
const { loading } = toRefs(props)
const songs = toRef(overviewStore.state, 'recentlyPlayed')
2022-06-10 10:47:46 +00:00
</script>