114 lines
4.4 KiB
Vue
114 lines
4.4 KiB
Vue
<script setup lang="ts">
|
|
import { ref, watch, onMounted, onUnmounted } from 'vue';
|
|
|
|
interface Props {
|
|
isOpen: boolean;
|
|
documentTitle: string;
|
|
documentUrl: string;
|
|
}
|
|
|
|
const props = defineProps<Props>();
|
|
const emit = defineEmits<{
|
|
close: [];
|
|
}>();
|
|
|
|
const isMobile = ref(false);
|
|
const isPortrait = ref(false);
|
|
|
|
// Check if device is mobile/tablet and orientation
|
|
const checkDevice = () => {
|
|
isMobile.value = window.innerWidth < 1024; // Less than 1024px = mobile/tablet
|
|
isPortrait.value = window.innerHeight > window.innerWidth; // Portrait mode
|
|
};
|
|
|
|
onMounted(() => {
|
|
checkDevice();
|
|
window.addEventListener('resize', checkDevice);
|
|
window.addEventListener('orientationchange', checkDevice);
|
|
});
|
|
|
|
onUnmounted(() => {
|
|
window.removeEventListener('resize', checkDevice);
|
|
window.removeEventListener('orientationchange', checkDevice);
|
|
});
|
|
|
|
// Handle body scroll lock when modal is open
|
|
watch(() => props.isOpen, (isOpen) => {
|
|
if (isOpen) {
|
|
document.body.style.overflow = 'hidden';
|
|
} else {
|
|
document.body.style.overflow = 'unset';
|
|
}
|
|
});
|
|
|
|
const handleBackdropClick = (e: MouseEvent) => {
|
|
if (e.target === e.currentTarget) {
|
|
emit('close');
|
|
}
|
|
};
|
|
|
|
const handleDownload = () => {
|
|
window.open(props.documentUrl, '_blank');
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
v-if="isOpen"
|
|
class="fixed inset-0 bg-black/75 flex items-center justify-center z-50"
|
|
:class="isMobile ? 'p-2' : 'p-4'"
|
|
@click="handleBackdropClick"
|
|
>
|
|
<div
|
|
class="bg-white rounded-lg flex flex-col shadow-2xl"
|
|
:class="isMobile ? 'w-full h-full' : 'w-[95%] h-[95%] max-w-[1200px] max-h-[900px]'"
|
|
@click.stop
|
|
>
|
|
<!-- Header -->
|
|
<div class="flex items-center justify-between border-b bg-[#394053] rounded-t-lg"
|
|
:class="isMobile ? 'px-3 py-2' : 'px-6 py-4'">
|
|
<div class="flex items-center gap-2 min-w-0 flex-1">
|
|
<svg class="w-5 h-5 text-white flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
|
</svg>
|
|
<h2 class="font-semibold text-white truncate"
|
|
:class="isMobile ? 'text-sm' : 'text-lg'">
|
|
{{ documentTitle }}
|
|
</h2>
|
|
</div>
|
|
<div class="flex items-center gap-1 flex-shrink-0">
|
|
<button
|
|
@click="handleDownload"
|
|
class="flex items-center gap-1 bg-[#7CAE7A] text-white rounded-md hover:bg-[#6b9c69] transition-colors font-medium"
|
|
:class="isMobile ? 'px-2 py-1 text-xs' : 'px-4 py-2 text-sm gap-2'"
|
|
>
|
|
<svg class="w-4 h-4 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4" />
|
|
</svg>
|
|
<span v-if="!isMobile || !isPortrait">Download</span>
|
|
</button>
|
|
<button
|
|
@click="emit('close')"
|
|
class="flex items-center justify-center text-white hover:bg-white/10 rounded-md transition-colors"
|
|
:class="isMobile ? 'w-8 h-8' : 'w-10 h-10'"
|
|
>
|
|
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- PDF Content -->
|
|
<div class="flex-1 bg-gray-50 overflow-hidden"
|
|
:class="isMobile ? 'p-1' : 'p-4'">
|
|
<iframe
|
|
:src="`${documentUrl}#view=FitH&toolbar=1&navpanes=0&scrollbar=1`"
|
|
class="w-full h-full border-0 rounded-md bg-white"
|
|
:title="documentTitle"
|
|
style="overflow: auto; -webkit-overflow-scrolling: touch;"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|