2022-06-10 10:47:46 +00:00
|
|
|
<template>
|
|
|
|
<section>
|
|
|
|
<h1>Top Artists</h1>
|
2022-07-30 15:08:20 +00:00
|
|
|
|
|
|
|
<ol v-if="loading" class="two-cols top-album-list">
|
|
|
|
<li v-for="i in 4" :key="i">
|
2022-12-02 16:17:37 +00:00
|
|
|
<ArtistCardSkeleton layout="compact" />
|
2022-06-10 10:47:46 +00:00
|
|
|
</li>
|
|
|
|
</ol>
|
2022-07-30 15:08:20 +00:00
|
|
|
<template v-else>
|
|
|
|
<ol v-if="artists.length" class="two-cols top-artist-list">
|
|
|
|
<li v-for="artist in artists" :key="artist.id">
|
2022-12-02 16:17:37 +00:00
|
|
|
<ArtistCard :artist="artist" layout="compact" />
|
2022-07-30 15:08:20 +00:00
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
<p v-else class="text-secondary">No artists found.</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 ArtistCard from '@/components/artist/ArtistCard.vue'
|
2022-07-30 15:08:20 +00:00
|
|
|
import ArtistCardSkeleton from '@/components/ui/skeletons/ArtistAlbumCardSkeleton.vue'
|
2022-07-07 18:05: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 artists = toRef(overviewStore.state, 'mostPlayedArtists')
|
|
|
|
</script>
|