koel/resources/assets/js/components/song/SongContextMenu.vue

158 lines
5.8 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
2022-07-19 08:19:57 +00:00
<ContextMenuBase ref="base" data-testid="song-context-menu" extra-class="song-menu">
2022-04-15 17:00:08 +00:00
<template v-if="onlyOneSongSelected">
<li @click.stop.prevent="doPlayback">
2022-04-15 14:24:30 +00:00
<span v-if="firstSongPlaying">Pause</span>
<span v-else>Play</span>
</li>
<li @click="viewAlbumDetails(songs[0].album_id)">Go to Album</li>
<li @click="viewArtistDetails(songs[0].artist_id)">Go to Artist</li>
2022-04-15 14:24:30 +00:00
</template>
<li class="has-sub">
Add To
<ul class="menu submenu menu-add-to">
<template v-if="queue.length">
<li v-if="currentSong" @click="queueSongsAfterCurrent">After Current Song</li>
<li @click="queueSongsToBottom">Bottom of Queue</li>
<li @click="queueSongsToTop">Top of Queue</li>
</template>
<li v-else @click="queueSongsToBottom">Queue</li>
<template v-if="!isFavoritesScreen">
<li class="separator"/>
<li @click="addSongsToFavorite">Favorites</li>
</template>
<li v-if="normalPlaylists.length" class="separator"/>
<li v-for="p in normalPlaylists" :key="p.id" @click="addSongsToExistingPlaylist(p)">{{ p.name }}</li>
2022-04-15 14:24:30 +00:00
</ul>
</li>
<template v-if="isQueueScreen">
<li class="separator"/>
<li @click="removeFromQueue">Remove from Queue</li>
<li class="separator"/>
</template>
<template v-if="isFavoritesScreen">
<li class="separator"/>
<li @click="removeFromFavorites">Remove from Favorites</li>
<li class="separator"/>
</template>
<li v-if="isAdmin" @click="openEditForm">Edit</li>
<li v-if="allowDownload" @click="download">Download</li>
<li v-if="onlyOneSongSelected" @click="copyUrl">Copy Shareable URL</li>
<template v-if="canBeRemovedFromPlaylist">
<li class="separator"/>
<li @click="removeFromPlaylist">Remove from Playlist</li>
</template>
<template v-if="isAdmin">
<li class="separator"/>
<li @click="deleteFromFilesystem">Delete from Filesystem</li>
</template>
2022-04-24 08:29:14 +00:00
</ContextMenuBase>
2022-04-15 14:24:30 +00:00
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
import { computed, ref, toRef } from 'vue'
import { arrayify, copyText, eventBus, pluralize, requireInjection } from '@/utils'
import { commonStore, favoriteStore, playlistStore, queueStore, songStore, userStore } from '@/stores'
2022-04-24 08:50:45 +00:00
import { downloadService, playbackService } from '@/services'
import { useAuthorization, useContextMenu, usePlaylistManagement, useSongMenuMethods } from '@/composables'
import { DialogBoxKey, MessageToasterKey, RouterKey } from '@/symbols'
2022-04-15 17:00:08 +00:00
const dialogBox = requireInjection(DialogBoxKey)
const toaster = requireInjection(MessageToasterKey)
const router = requireInjection(RouterKey)
const songs = ref<Song[]>([])
2022-04-20 10:20:09 +00:00
const { isAdmin } = useAuthorization()
const { context, base, ContextMenuBase, open, close, trigger } = useContextMenu()
const { removeSongsFromPlaylist } = usePlaylistManagement()
2022-04-15 17:00:08 +00:00
const {
queueSongsAfterCurrent,
queueSongsToBottom,
queueSongsToTop,
addSongsToFavorite,
addSongsToExistingPlaylist
2022-04-20 10:20:09 +00:00
} = useSongMenuMethods(songs, close)
2022-04-15 17:00:08 +00:00
const playlists = toRef(playlistStore.state, 'playlists')
2022-06-10 10:47:46 +00:00
const allowDownload = toRef(commonStore.state, 'allow_download')
const user = toRef(userStore.state, 'current')
const queue = toRef(queueStore.state, 'songs')
const currentSong = toRef(queueStore, 'current')
2022-04-15 17:00:08 +00:00
const onlyOneSongSelected = computed(() => songs.value.length === 1)
2022-06-10 10:47:46 +00:00
const firstSongPlaying = computed(() => songs.value.length ? songs.value[0].playback_state === 'Playing' : false)
const normalPlaylists = computed(() => playlists.value.filter(playlist => !playlist.is_smart))
const canBeRemovedFromPlaylist = computed(() => {
if (router.$currentRoute.value.screen !== 'Playlist') return false
const playlist = playlistStore.byId(parseInt(router.$currentRoute.value.params!.id))
return playlist && !playlist.is_smart
})
const isQueueScreen = computed(() => router.$currentRoute.value.screen === 'Queue')
const isFavoritesScreen = computed(() => router.$currentRoute.value.screen === 'Favorites')
2022-04-15 17:00:08 +00:00
2022-06-10 10:47:46 +00:00
const doPlayback = () => trigger(() => {
2022-04-15 17:00:08 +00:00
if (!songs.value.length) return
2022-06-10 10:47:46 +00:00
switch (songs.value[0].playback_state) {
2022-04-15 17:00:08 +00:00
case 'Playing':
2022-04-24 08:50:45 +00:00
playbackService.pause()
2022-04-15 17:00:08 +00:00
break
case 'Paused':
2022-04-24 08:50:45 +00:00
playbackService.resume()
2022-04-15 17:00:08 +00:00
break
default:
queueStore.queueIfNotQueued(songs.value[0])
2022-04-24 08:50:45 +00:00
playbackService.play(songs.value[0])
2022-04-15 17:00:08 +00:00
break
2022-04-15 14:24:30 +00:00
}
2022-06-10 10:47:46 +00:00
})
2022-04-15 17:00:08 +00:00
2022-06-10 10:47:46 +00:00
const openEditForm = () => trigger(() => songs.value.length && eventBus.emit('MODAL_SHOW_EDIT_SONG_FORM', songs.value))
const viewAlbumDetails = (albumId: number) => trigger(() => router.go(`album/${albumId}`))
const viewArtistDetails = (artistId: number) => trigger(() => router.go(`artist/${artistId}`))
const download = () => trigger(() => downloadService.fromSongs(songs.value))
2022-04-15 17:00:08 +00:00
const removeFromPlaylist = () => trigger(async () => {
const playlist = playlistStore.byId(parseInt(router.$currentRoute.value.params!.id))
if (!playlist) return
await removeSongsFromPlaylist(playlist, songs.value)
})
const removeFromQueue = () => trigger(() => queueStore.unqueue(songs.value))
const removeFromFavorites = () => trigger(() => favoriteStore.unlike(songs.value))
2022-06-10 10:47:46 +00:00
const copyUrl = () => trigger(() => {
2022-04-15 17:00:08 +00:00
copyText(songStore.getShareableUrl(songs.value[0]))
toaster.value.success('URL copied to clipboard.')
2022-06-10 10:47:46 +00:00
})
2022-04-15 17:00:08 +00:00
const deleteFromFilesystem = () => trigger(async () => {
const confirmed = await dialogBox.value.confirm(
'Delete selected song(s) from the filesystem? This action is NOT reversible!'
)
if (confirmed) {
await songStore.deleteFromFilesystem(songs.value)
toaster.value.success(`Deleted ${pluralize(songs.value, 'song')} from the filesystem.`)
eventBus.emit('SONGS_DELETED', songs.value)
}
})
eventBus.on('SONG_CONTEXT_MENU_REQUESTED', async (e, _songs) => {
songs.value = arrayify(_songs)
2022-07-19 08:19:57 +00:00
await open(e.pageY, e.pageX, { songs: songs.value })
})
2022-04-15 14:24:30 +00:00
</script>