2022-06-10 10:47:46 +00:00
|
|
|
<template>
|
|
|
|
<section class="recent">
|
|
|
|
<h1>
|
|
|
|
Recently Played
|
|
|
|
<Btn
|
2022-07-12 09:05:12 +00:00
|
|
|
v-if="songs.length"
|
2022-06-10 10:47:46 +00:00
|
|
|
data-testid="home-view-all-recently-played-btn"
|
2022-07-12 14:04:57 +00:00
|
|
|
orange
|
2022-06-10 10:47:46 +00:00
|
|
|
rounded
|
|
|
|
small
|
2022-07-12 14:04:57 +00:00
|
|
|
@click.prevent="goToRecentlyPlayedScreen"
|
2022-06-10 10:47:46 +00:00
|
|
|
>
|
|
|
|
View All
|
|
|
|
</Btn>
|
|
|
|
</h1>
|
|
|
|
|
2022-07-30 15:08:20 +00:00
|
|
|
<ol v-if="loading" class="recent-song-list">
|
|
|
|
<li v-for="i in 3" :key="i">
|
|
|
|
<SongCardSkeleton/>
|
2022-06-10 10:47:46 +00:00
|
|
|
</li>
|
|
|
|
</ol>
|
2022-07-30 15:08:20 +00:00
|
|
|
<template v-else>
|
|
|
|
<ol v-if="songs.length" class="recent-song-list">
|
|
|
|
<li v-for="song in songs" :key="song.id">
|
|
|
|
<SongCard :song="song"/>
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
<p v-else class="text-secondary">No songs played as of late.</p>
|
|
|
|
</template>
|
2022-06-10 10:47:46 +00:00
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2022-07-07 18:05:46 +00:00
|
|
|
import { toRef } from 'vue'
|
2022-06-10 10:47:46 +00:00
|
|
|
import router from '@/router'
|
2022-07-30 15:08:20 +00:00
|
|
|
import { overviewStore, recentlyPlayedStore } from '@/stores'
|
2022-06-10 10:47:46 +00:00
|
|
|
|
2022-07-07 07:52:54 +00:00
|
|
|
import Btn from '@/components/ui/Btn.vue'
|
2022-07-07 18:05: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'
|
2022-06-10 10:47:46 +00:00
|
|
|
|
|
|
|
const songs = toRef(recentlyPlayedStore.excerptState, 'songs')
|
2022-07-30 15:08:20 +00:00
|
|
|
const loading = toRef(overviewStore.state, 'loading')
|
2022-06-10 10:47:46 +00:00
|
|
|
|
|
|
|
const goToRecentlyPlayedScreen = () => router.go('recently-played')
|
|
|
|
</script>
|