koel/resources/assets/js/components/screens/search/SearchSongResultsScreen.vue

56 lines
1.4 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<section id="songResultsWrapper">
2022-04-15 17:00:08 +00:00
<ScreenHeader>
2022-04-15 14:24:30 +00:00
Showing Songs for <strong>{{ decodedQ }}</strong>
2022-06-10 10:47:46 +00:00
<ControlsToggle :showing-controls="showingControls" @toggleControls="toggleControls"/>
2022-04-15 14:24:30 +00:00
<template v-slot:meta>
2022-04-23 21:24:02 +00:00
<span v-if="songs.length">{{ pluralize(songs.length, 'song') }} {{ duration }}</span>
2022-04-15 14:24:30 +00:00
</template>
<template v-slot:controls>
2022-04-15 17:00:08 +00:00
<SongListControls
2022-04-21 16:06:45 +00:00
v-if="songs.length && (!isPhone || showingControls)"
2022-04-15 17:00:08 +00:00
@playAll="playAll"
@playSelected="playSelected"
2022-04-15 14:24:30 +00:00
/>
</template>
2022-04-15 17:00:08 +00:00
</ScreenHeader>
2022-04-15 14:24:30 +00:00
2022-06-10 10:47:46 +00:00
<SongList ref="songList" @press:enter="onPressEnter" @sort="sort"/>
2022-04-15 14:24:30 +00:00
</section>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
import { computed, toRef, toRefs } from 'vue'
2022-04-15 14:24:30 +00:00
import { searchStore } from '@/stores'
2022-04-15 17:00:08 +00:00
import { useSongList } from '@/composables'
2022-04-15 14:24:30 +00:00
import { pluralize } from '@/utils'
import ScreenHeader from '@/components/ui/ScreenHeader.vue'
2022-04-21 16:06:45 +00:00
const props = defineProps<{ q: string }>()
const { q } = toRefs(props)
2022-04-15 17:00:08 +00:00
const {
SongList,
SongListControls,
2022-06-10 10:47:46 +00:00
ControlsToggle,
2022-04-21 16:06:45 +00:00
songs,
2022-04-15 17:00:08 +00:00
songList,
2022-04-23 21:24:02 +00:00
duration,
2022-04-15 17:00:08 +00:00
showingControls,
isPhone,
onPressEnter,
2022-04-15 17:00:08 +00:00
playAll,
playSelected,
2022-06-10 10:47:46 +00:00
toggleControls,
sort
} = useSongList(toRef(searchStore.state, 'songs'), 'search-results')
2022-04-15 17:00:08 +00:00
const decodedQ = computed(() => decodeURIComponent(q.value))
searchStore.resetSongResultState()
searchStore.songSearch(decodedQ.value)
2022-04-15 14:24:30 +00:00
</script>