mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
40 lines
1.1 KiB
Vue
40 lines
1.1 KiB
Vue
<template>
|
|
<ExcerptResultBlock>
|
|
<template #header>Artists</template>
|
|
|
|
<ul v-if="searching" class="results">
|
|
<li v-for="i in 6" :key="i">
|
|
<ArtistCardSkeleton layout="compact" />
|
|
</li>
|
|
</ul>
|
|
<template v-else>
|
|
<ul v-if="artists.length" class="results">
|
|
<li v-for="artist in artists" :key="artist.id">
|
|
<ArtistCard :artist="artist" layout="compact" />
|
|
</li>
|
|
</ul>
|
|
<p v-else>None found.</p>
|
|
</template>
|
|
</ExcerptResultBlock>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { toRefs } from 'vue'
|
|
|
|
import ArtistCard from '@/components/artist/ArtistCard.vue'
|
|
import ArtistCardSkeleton from '@/components/ui/skeletons/ArtistAlbumCardSkeleton.vue'
|
|
import ExcerptResultBlock from '@/components/screens/search/ExcerptResultBlock.vue'
|
|
|
|
const props = withDefaults(defineProps<{ artists?: Artist[], searching?: boolean }>(), {
|
|
artists: () => [],
|
|
searching: false,
|
|
})
|
|
|
|
const { artists, searching } = toRefs(props)
|
|
</script>
|
|
|
|
<style scoped lang="postcss">
|
|
.results {
|
|
@apply grid grid-cols-1 md:grid-cols-2 gap-x-4 gap-y-3;
|
|
}
|
|
</style>
|