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

32 lines
984 B
Vue
Raw Normal View History

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">
<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">
<ArtistCard :artist="artist" layout="compact"/>
</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>
import { toRef, toRefs } from 'vue'
2022-06-10 10:47:46 +00:00
import { overviewStore } from '@/stores'
import ArtistCard from '@/components/artist/ArtistCard.vue'
2022-07-30 15:08:20 +00:00
import ArtistCardSkeleton from '@/components/ui/skeletons/ArtistAlbumCardSkeleton.vue'
const props = withDefaults(defineProps<{ loading?: boolean }>(), { loading: false })
const { loading } = toRefs(props)
2022-06-10 10:47:46 +00:00
const artists = toRef(overviewStore.state, 'mostPlayedArtists')
</script>