2022-06-10 10:47:46 +00:00
|
|
|
|
<template>
|
2022-07-12 14:04:57 +00:00
|
|
|
|
<section>
|
2022-06-10 10:47:46 +00:00
|
|
|
|
<h1>Most Played</h1>
|
2022-07-30 15:08:20 +00:00
|
|
|
|
<ol v-if="loading" class="top-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="top-song-list">
|
|
|
|
|
<li v-for="song in songs" :key="song.id">
|
|
|
|
|
<SongCard :song="song"/>
|
|
|
|
|
</li>
|
|
|
|
|
</ol>
|
|
|
|
|
<p v-else class="text-secondary">You don’t seem to have been playing.</p>
|
|
|
|
|
</template>
|
2022-06-10 10:47:46 +00:00
|
|
|
|
</section>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2022-08-01 07:55:23 +00:00
|
|
|
|
import { toRef, toRefs } from 'vue'
|
2022-06-10 10:47:46 +00:00
|
|
|
|
import { overviewStore } from '@/stores'
|
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
|
|
|
|
|
2022-08-01 09:38:32 +00:00
|
|
|
|
const props = withDefaults(defineProps<{ loading?: boolean }>(), { loading: false })
|
2022-08-01 07:55:23 +00:00
|
|
|
|
const { loading } = toRefs(props)
|
|
|
|
|
|
2022-06-10 10:47:46 +00:00
|
|
|
|
const songs = toRef(overviewStore.state, 'mostPlayedSongs')
|
|
|
|
|
</script>
|