koel/resources/assets/js/components/screens/search/SearchSongResultsScreen.vue
2022-07-10 19:15:56 +02:00

56 lines
1.4 KiB
Vue

<template>
<section id="songResultsWrapper">
<ScreenHeader>
Songs Matching <strong>{{ decodedQ }}</strong>
<ControlsToggle :showing-controls="showingControls" @toggleControls="toggleControls"/>
<template v-slot:meta v-if="songs.length">
<span>{{ pluralize(songs.length, 'song') }}</span>
<span>{{ duration }}</span>
</template>
<template v-slot:controls>
<SongListControls
v-if="songs.length && (!isPhone || showingControls)"
@playAll="playAll"
@playSelected="playSelected"
/>
</template>
</ScreenHeader>
<SongList ref="songList" @press:enter="onPressEnter" @sort="sort"/>
</section>
</template>
<script lang="ts" setup>
import { computed, toRef, toRefs } from 'vue'
import { searchStore } from '@/stores'
import { useSongList } from '@/composables'
import { pluralize } from '@/utils'
import ScreenHeader from '@/components/ui/ScreenHeader.vue'
const props = defineProps<{ q: string }>()
const { q } = toRefs(props)
const {
SongList,
SongListControls,
ControlsToggle,
songs,
songList,
duration,
showingControls,
isPhone,
onPressEnter,
playAll,
playSelected,
toggleControls,
sort
} = useSongList(toRef(searchStore.state, 'songs'), 'search-results')
const decodedQ = computed(() => decodeURIComponent(q.value))
searchStore.resetSongResultState()
searchStore.songSearch(decodedQ.value)
</script>