mirror of
https://github.com/koel/koel
synced 2024-12-21 10:03:10 +00:00
67 lines
1.7 KiB
Vue
67 lines
1.7 KiB
Vue
|
<template>
|
||
|
<FooterButton
|
||
|
:class="droppable && 'droppable'"
|
||
|
class="queue-btn"
|
||
|
title="Queue (Q)"
|
||
|
@click.prevent="showQueue"
|
||
|
@dragleave.prevent="onDragLeave"
|
||
|
@drop.prevent="onDrop"
|
||
|
@dragenter.prevent="onDragEnter"
|
||
|
@dragover.prevent
|
||
|
>
|
||
|
<Icon :icon="faListOl" fixed-width />
|
||
|
</FooterButton>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { faListOl } from '@fortawesome/free-solid-svg-icons'
|
||
|
import { ref } from 'vue'
|
||
|
import { useDroppable, useMessageToaster, useRouter } from '@/composables'
|
||
|
import { queueStore } from '@/stores'
|
||
|
import { pluralize } from '@/utils'
|
||
|
|
||
|
import FooterButton from '@/components/layout/app-footer/FooterButton.vue'
|
||
|
|
||
|
const { go, isCurrentScreen } = useRouter()
|
||
|
const { toastWarning, toastSuccess } = useMessageToaster()
|
||
|
|
||
|
const { acceptsDrop, resolveDroppedItems } = useDroppable(
|
||
|
['playables', 'album', 'artist', 'playlist', 'playlist-folder']
|
||
|
)
|
||
|
|
||
|
const droppable = ref(false)
|
||
|
|
||
|
const onDragEnter = (event: DragEvent) => droppable.value = acceptsDrop(event)
|
||
|
const onDragLeave = (e: DragEvent) => {
|
||
|
if ((e.currentTarget as Node)?.contains?.(e.relatedTarget as Node)) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
droppable.value = false
|
||
|
}
|
||
|
|
||
|
const onDrop = async (event: DragEvent) => {
|
||
|
droppable.value = false
|
||
|
|
||
|
event.preventDefault()
|
||
|
const items = await resolveDroppedItems(event) || []
|
||
|
|
||
|
if (items.length) {
|
||
|
queueStore.queue(items)
|
||
|
toastSuccess(`Added ${pluralize(items, 'item')} to queue.`)
|
||
|
} else {
|
||
|
toastWarning('No applicable items to queue.')
|
||
|
}
|
||
|
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
const showQueue = () => go(isCurrentScreen('Queue') ? -1 : 'queue')
|
||
|
</script>
|
||
|
|
||
|
<style lang="postcss" scoped>
|
||
|
.droppable {
|
||
|
@apply text-k-highlight scale-125;
|
||
|
}
|
||
|
</style>
|