The drop handler validated PDF type but the file picker did not, allowing non-PDF files to bypass client-side validation.
138 lines
3.2 KiB
Vue
138 lines
3.2 KiB
Vue
<template>
|
|
<div
|
|
class="upload-zone"
|
|
:class="{ dragging, uploading: store.uploading }"
|
|
@dragover.prevent="dragging = true"
|
|
@dragleave.prevent="dragging = false"
|
|
@drop.prevent="onDrop"
|
|
@click="openFilePicker"
|
|
>
|
|
<input ref="fileInput" type="file" accept=".pdf" hidden @change="onFileSelect" />
|
|
<div v-if="store.uploading" class="upload-state">
|
|
<div class="spinner" />
|
|
<span>{{ t('upload.uploading') }}</span>
|
|
</div>
|
|
<div v-else class="upload-state">
|
|
<svg class="upload-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5">
|
|
<path d="M12 16V4m0 0L8 8m4-4l4 4M4 17v2a1 1 0 001 1h14a1 1 0 001-1v-2" />
|
|
</svg>
|
|
<span class="upload-text">{{ t('upload.drop') }}</span>
|
|
<span class="upload-hint">{{ t('upload.maxSize') }}</span>
|
|
<span v-if="store.error" class="upload-error">{{ store.error }}</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { useDocumentStore } from '../store'
|
|
import { useI18n } from '../../../shared/i18n'
|
|
|
|
const emit = defineEmits<{ uploaded: [docId: string] }>()
|
|
|
|
const store = useDocumentStore()
|
|
const { t } = useI18n()
|
|
const fileInput = ref<HTMLInputElement | null>(null)
|
|
const dragging = ref(false)
|
|
|
|
function openFilePicker() {
|
|
fileInput.value?.click()
|
|
}
|
|
|
|
async function onFileSelect(e: Event) {
|
|
const target = e.target as HTMLInputElement
|
|
const file = target.files?.[0]
|
|
if (
|
|
file &&
|
|
(file.type === 'application/pdf' || file.name.toLowerCase().endsWith('.pdf'))
|
|
) {
|
|
try {
|
|
store.clearError()
|
|
const doc = await store.upload(file)
|
|
if (doc) emit('uploaded', doc.id)
|
|
} catch {
|
|
// error is already set in store.upload
|
|
}
|
|
}
|
|
target.value = ''
|
|
}
|
|
|
|
async function onDrop(e: DragEvent) {
|
|
dragging.value = false
|
|
const file = e.dataTransfer?.files?.[0]
|
|
if (file && (file.type === 'application/pdf' || file.name.toLowerCase().endsWith('.pdf'))) {
|
|
try {
|
|
store.clearError()
|
|
const doc = await store.upload(file)
|
|
if (doc) emit('uploaded', doc.id)
|
|
} catch {
|
|
// error is already set in store.upload
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.upload-zone {
|
|
border: 2px dashed var(--border-light);
|
|
border-radius: var(--radius);
|
|
padding: 32px 16px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
transition: all var(--transition);
|
|
}
|
|
|
|
.upload-zone:hover,
|
|
.upload-zone.dragging {
|
|
border-color: var(--accent);
|
|
background: var(--accent-muted);
|
|
}
|
|
|
|
.upload-zone.uploading {
|
|
pointer-events: none;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.upload-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.upload-icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.upload-text {
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.upload-hint {
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.upload-error {
|
|
font-size: 13px;
|
|
color: var(--error, #e53e3e);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.spinner {
|
|
width: 24px;
|
|
height: 24px;
|
|
border: 2px solid var(--border-light);
|
|
border-top-color: var(--accent);
|
|
border-radius: 50%;
|
|
animation: spin 0.6s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
</style>
|