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

33 lines
1.1 KiB
Vue
Raw Normal View History

2022-06-10 10:47:46 +00:00
<template>
2024-04-04 22:20:42 +00:00
<HomeScreenSection>
<template #header>Top Artists</template>
2022-07-30 15:08:20 +00:00
2024-04-04 22:20:42 +00:00
<ol v-if="loading" class="grid grid-cols-1 md:grid-cols-2 gap-x-4 gap-y-3">
2022-07-30 15:08:20 +00:00
<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>
2024-04-04 22:20:42 +00:00
<ol v-if="artists.length" class="grid grid-cols-1 md:grid-cols-2 gap-x-4 gap-y-3">
2022-07-30 15:08:20 +00:00
<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>
2024-04-04 22:20:42 +00:00
<p v-else class="text-k-text-secondary">No artists found.</p>
2022-07-30 15:08:20 +00:00
</template>
2024-04-04 22:20:42 +00:00
</HomeScreenSection>
2022-06-10 10:47:46 +00:00
</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'
2024-04-04 22:20:42 +00:00
import HomeScreenSection from '@/components/screens/home/HomeScreenBlock.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>