koel/resources/assets/js/components/screens/search/SongExcerptResultsBlock.vue
2024-07-06 17:45:04 +02:00

71 lines
1.8 KiB
Vue

<template>
<ExcerptResultBlock>
<template #header>
{{ headingText }}
<Btn
v-if="playables.length && !searching"
data-testid="view-all-songs-btn"
highlight
rounded
small
@click.prevent="goToSongResults"
>
View All
</Btn>
</template>
<ul v-if="searching" class="results">
<li v-for="i in 6" :key="i">
<SongCardSkeleton />
</li>
</ul>
<template v-else>
<ul v-if="playables.length" class="results">
<li v-for="playable in playables" :key="playable.id">
<SongCard :playable="playable" />
</li>
</ul>
<p v-else>None found.</p>
</template>
</ExcerptResultBlock>
</template>
<script lang="ts" setup>
import { computed, toRefs } from 'vue'
import { useRouter } from '@/composables'
import { getPlayableCollectionContentType } from '@/utils'
import SongCardSkeleton from '@/components/ui/skeletons/SongCardSkeleton.vue'
import ExcerptResultBlock from '@/components/screens/search/ExcerptResultBlock.vue'
import SongCard from '@/components/song/SongCard.vue'
import Btn from '@/components/ui/form/Btn.vue'
const props = withDefaults(defineProps<{ playables?: Playable[], query?: string, searching?: boolean }>(), {
playables: () => [],
query: '',
searching: false,
})
const headingText = computed(() => {
switch (getPlayableCollectionContentType(props.playables)) {
case 'episodes':
return 'Episodes'
case 'songs':
return 'Songs'
default:
return 'Songs & Episodes'
}
})
const { playables, query, searching } = toRefs(props)
const { go } = useRouter()
const goToSongResults = () => go(`search/songs/?q=${query.value}`)
</script>
<style lang="postcss" scoped>
.results {
@apply grid grid-cols-1 md:grid-cols-2 gap-x-4 gap-y-3;
}
</style>