mirror of
https://github.com/koel/koel
synced 2024-12-22 02:23:14 +00:00
54 lines
1.5 KiB
Vue
54 lines
1.5 KiB
Vue
<template>
|
|
<div
|
|
v-if="allowsUpload && mediaPathSetUp"
|
|
v-koel-clickaway="close"
|
|
:class="{ droppable }"
|
|
class="drop-zone h-[256px] max-h-[66vh] aspect-square outline-4 outline-dashed outline-gray-300
|
|
fixed z-10 top-0 left-0 rounded-3xl bg-black/40 flex flex-col-reverse items-center justify-center
|
|
overflow-hidden duration-200"
|
|
@dragleave="onDropLeave"
|
|
@dragover="onDragOver"
|
|
@drop="onDrop"
|
|
>
|
|
<h3 class="text-3xl mt-4 font-extralight">Drop to upload</h3>
|
|
<Icon :icon="faUpload" size="6x" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import { faUpload } from '@fortawesome/free-solid-svg-icons'
|
|
import { useUpload } from '@/composables'
|
|
|
|
const { allowsUpload, mediaPathSetUp, handleDropEvent } = useUpload()
|
|
|
|
const emit = defineEmits<{ (e: 'close'): void }>()
|
|
const droppable = ref(false)
|
|
|
|
const onDropLeave = () => (droppable.value = false)
|
|
|
|
const onDragOver = (event: DragEvent) => {
|
|
if (!event.dataTransfer?.types.includes('Files')) return false
|
|
event.preventDefault()
|
|
droppable.value = true
|
|
}
|
|
|
|
const onDrop = async (event: DragEvent) => {
|
|
event.preventDefault()
|
|
droppable.value = false
|
|
await handleDropEvent(event)
|
|
}
|
|
|
|
const close = () => emit('close')
|
|
</script>
|
|
|
|
<style lang="postcss" scoped>
|
|
.drop-zone {
|
|
transform: translate(calc(50vw - 50%), calc(50vh - 50%));
|
|
|
|
&.droppable {
|
|
@apply h-[384px] outline-white bg-black/90;
|
|
box-shadow: 0 0 0 999rem rgba(0, 0, 0, .7);
|
|
}
|
|
}
|
|
</style>
|