koel/resources/assets/js/components/screens/AllSongsScreen.vue

52 lines
1.3 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<section id="songsWrapper">
2022-04-15 17:00:08 +00:00
<ScreenHeader>
2022-04-15 14:24:30 +00:00
All Songs
2022-04-15 17:00:08 +00:00
<ControlsToggler :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 14:24:30 +00:00
@playAll="playAll"
@playSelected="playSelected"
2022-04-21 16:06:45 +00:00
:songs="songs"
2022-04-15 14:24:30 +00:00
:config="songListControlConfig"
:selectedSongs="selectedSongs"
/>
</template>
2022-04-15 17:00:08 +00:00
</ScreenHeader>
2022-04-15 14:24:30 +00:00
<SongList ref="songList" :items="songs" type="all-songs" @press:enter="onPressEnter"/>
2022-04-15 14:24:30 +00:00
</section>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
2022-04-21 16:06:45 +00:00
import { defineAsyncComponent, toRef } from 'vue'
2022-04-15 14:24:30 +00:00
import { pluralize } from '@/utils'
import { songStore } from '@/stores'
2022-04-15 17:00:08 +00:00
import { useSongList } from '@/composables'
2022-04-21 16:06:45 +00:00
const ScreenHeader = defineAsyncComponent(() => import('@/components/ui/ScreenHeader.vue'))
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const {
SongList,
SongListControls,
ControlsToggler,
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
selectedSongs,
showingControls,
songListControlConfig,
isPhone,
onPressEnter,
2022-04-15 17:00:08 +00:00
playAll,
playSelected,
toggleControls
2022-04-21 16:06:45 +00:00
} = useSongList(toRef(songStore.state, 'songs'))
2022-04-15 14:24:30 +00:00
</script>