koel/resources/assets/js/mixins/has-song-list.ts
2022-04-15 16:24:30 +02:00

65 lines
1.8 KiB
TypeScript

/**
* Add necessary functionalities into a view that contains a song-list component.
*/
import { ComponentInternalInstance, getCurrentInstance, ref, watchEffect } from 'vue'
import isMobile from 'ismobilejs'
import { playback } from '@/services'
import { eventBus } from '@/utils'
import ControlsToggler from '@/components/ui/screen-controls-toggler.vue'
import SongList from '@/components/song/list.vue'
import SongListControls from '@/components/song/list-controls.vue'
import { songStore } from '@/stores'
export const useSongList = () => {
const songList = ref(null)
const state = ref<SongListState>({ songs: [] })
const meta = ref<SongListMeta>({
songCount: 0,
totalLength: '00:00'
})
const selectedSongs = ref<Song[]>([])
const showingControls = ref(false)
const songListControlConfig = ref<Partial<SongListControlsConfig>>({})
const isPhone = isMobile.phone
watchEffect(() => {
if (!state.value.songs.length) {
return
}
meta.value.songCount = state.value.songs.length
meta.value.totalLength = songStore.getFormattedLength(state.value.songs)
})
const getSongsToPlay = (): Song[] => (songList.value as any).getAllSongsWithSort()
const playAll = (shuffled: boolean) => playback.queueAndPlay(getSongsToPlay(), shuffled)
const playSelected = (shuffled: boolean) => playback.queueAndPlay(selectedSongs.value, shuffled)
const toggleControls = () => (showingControls.value = !showingControls.value)
eventBus.on({
'SET_SELECTED_SONGS': (songs: Song[], target: ComponentInternalInstance) => {
target === getCurrentInstance() && (selectedSongs.value = songs)
}
})
return {
SongList,
SongListControls,
ControlsToggler,
songList,
state,
meta,
selectedSongs,
showingControls,
songListControlConfig,
isPhone,
playAll,
playSelected,
toggleControls
}
}