mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
32 lines
1.1 KiB
Vue
32 lines
1.1 KiB
Vue
<template>
|
|
<HomeScreenSection>
|
|
<template #header>Top Artists</template>
|
|
|
|
<ol v-if="loading" class="grid grid-cols-1 md:grid-cols-2 gap-x-4 gap-y-3">
|
|
<li v-for="i in 4" :key="i">
|
|
<ArtistCardSkeleton layout="compact" />
|
|
</li>
|
|
</ol>
|
|
<template v-else>
|
|
<ol v-if="artists.length" class="grid grid-cols-1 md:grid-cols-2 gap-x-4 gap-y-3">
|
|
<li v-for="artist in artists" :key="artist.id">
|
|
<ArtistCard :artist="artist" layout="compact" />
|
|
</li>
|
|
</ol>
|
|
<p v-else class="text-k-text-secondary">No artists found.</p>
|
|
</template>
|
|
</HomeScreenSection>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { toRef, toRefs } from 'vue'
|
|
import { overviewStore } from '@/stores'
|
|
import ArtistCard from '@/components/artist/ArtistCard.vue'
|
|
import ArtistCardSkeleton from '@/components/ui/skeletons/ArtistAlbumCardSkeleton.vue'
|
|
import HomeScreenSection from '@/components/screens/home/HomeScreenBlock.vue'
|
|
|
|
const props = withDefaults(defineProps<{ loading?: boolean }>(), { loading: false })
|
|
const { loading } = toRefs(props)
|
|
|
|
const artists = toRef(overviewStore.state, 'mostPlayedArtists')
|
|
</script>
|