You've already forked AstralRinth
* feat: api-client module for content v0 * feat: delete unused components + modules + setting * feat: xhr uploading * feat: fs module -> api-client * feat: migrate files.vue to use tanstack * fix: mem leak + other issues * fix: build * feat: switch to monaco * fix: go back to using ace, but improve preloading + theme * fix: styling + dead attrs * feat: match figma * fix: padding * feat: files-new for ui page structure * feat: finalize files.vue * fix: lint * fix: qa * fix: dep * fix: lint * fix: lockfile merge * feat: icons on navtab * fix: surface alternating on table * fix: hover surface color --------- Signed-off-by: Calum H. <contact@cal.engineer> Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com>
76 lines
1.6 KiB
Vue
76 lines
1.6 KiB
Vue
<template>
|
|
<div
|
|
@dragenter.prevent="handleDragEnter"
|
|
@dragover.prevent="handleDragOver"
|
|
@dragleave.prevent="handleDragLeave"
|
|
@drop.prevent="handleDrop"
|
|
>
|
|
<slot />
|
|
<div
|
|
v-if="isDragging"
|
|
:class="[
|
|
'absolute inset-0 flex items-center justify-center rounded-2xl bg-black/60 text-contrast shadow',
|
|
overlayClass,
|
|
]"
|
|
>
|
|
<div class="text-center">
|
|
<UploadIcon class="mx-auto h-16 w-16 shadow-2xl" />
|
|
<p class="mt-2 text-xl">
|
|
Drop {{ type ? type.toLocaleLowerCase() : 'file' }}s here to upload
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { UploadIcon } from '@modrinth/assets'
|
|
import { ref } from 'vue'
|
|
|
|
const emit = defineEmits<{
|
|
filesDropped: [files: File[]]
|
|
}>()
|
|
|
|
defineProps<{
|
|
overlayClass?: string
|
|
type?: string
|
|
}>()
|
|
|
|
const isDragging = ref(false)
|
|
const dragCounter = ref(0)
|
|
|
|
const handleDragEnter = (event: DragEvent) => {
|
|
event.preventDefault()
|
|
if (!event.dataTransfer?.types.includes('application/modrinth-file-move')) {
|
|
dragCounter.value++
|
|
isDragging.value = true
|
|
}
|
|
}
|
|
|
|
const handleDragOver = (event: DragEvent) => {
|
|
event.preventDefault()
|
|
}
|
|
|
|
const handleDragLeave = (event: DragEvent) => {
|
|
event.preventDefault()
|
|
dragCounter.value--
|
|
if (dragCounter.value === 0) {
|
|
isDragging.value = false
|
|
}
|
|
}
|
|
|
|
const handleDrop = (event: DragEvent) => {
|
|
event.preventDefault()
|
|
isDragging.value = false
|
|
dragCounter.value = 0
|
|
|
|
const isInternalMove = event.dataTransfer?.types.includes('application/modrinth-file-move')
|
|
if (isInternalMove) return
|
|
|
|
const files = event.dataTransfer?.files
|
|
if (files) {
|
|
emit('filesDropped', Array.from(files))
|
|
}
|
|
}
|
|
</script>
|