IntelliClass_FE/pages/preview/[resource_url].vue
2025-04-19 01:32:50 +08:00

114 lines
2.8 KiB
Vue

<script lang="ts" setup>
import VueOfficePptx from '@vue-office/pptx'
import VueOfficeDocx from '@vue-office/docx'
import VueOfficeExcel from '@vue-office/excel'
import VueOfficePdf from '@vue-office/pdf'
import '@vue-office/docx/lib/index.css'
import '@vue-office/excel/lib/index.css'
definePageMeta({
hideSidebar: true,
})
const {
params: { resource_url },
} = useRoute()
const { setBreadcrumbs } = useBreadcrumbs()
const url = computed(() => {
return atob(resource_url as string)
})
const fileExtension = computed(() => {
const lastDotIndex = url.value.lastIndexOf('.')
if (lastDotIndex === -1) return ''
return url.value.substring(lastDotIndex + 1).toLowerCase()
})
const fileType = computed(() => {
const ext = fileExtension.value
if (ext === 'pdf') return 'pdf'
if (ext === 'doc' || ext === 'docx') return 'word'
if (ext === 'ppt' || ext === 'pptx') return 'ppt'
if (ext === 'xls' || ext === 'xlsx') return 'excel'
if (ext === 'txt') return 'txt'
if (ext === 'jpg' || ext === 'jpeg' || ext === 'png' || ext === 'gif')
return 'image'
if (ext === 'mp4' || ext === 'avi' || ext === 'mov') return 'video'
if (ext === 'mp3' || ext === 'wav') return 'audio'
return ''
})
onMounted(() => {
useHead({
title: `${fileType.value.toUpperCase()} 资源预览`,
})
setBreadcrumbs([
{
label: `${fileType.value.toUpperCase()} 资源预览`,
},
])
})
const vueOfficeOptions = {
autoSize: true,
autoHeight: true,
autoWidth: true,
autoScale: true,
autoRotate: true,
autoFit: true,
}
</script>
<template>
<AppContainer>
<div v-if="!url">
<div class="flex items-center justify-center h-full">
<p class="text-muted-foreground">资源链接无效</p>
</div>
</div>
<div
v-else
class="w-full h-full border rounded-lg overflow-hidden"
>
<VueOfficeDocx
v-if="fileType === 'word'"
class="w-full h-full"
:src="url"
:options="vueOfficeOptions"
/>
<VueOfficePptx
v-else-if="fileType === 'ppt'"
class="w-full h-full"
:src="url"
:options="vueOfficeOptions"
/>
<VueOfficeExcel
v-else-if="fileType === 'excel'"
class="w-full h-full"
:src="url"
:options="vueOfficeOptions"
/>
<VueOfficePdf
v-else-if="fileType === 'pdf'"
class="w-full h-full"
:src="url"
:options="vueOfficeOptions"
/>
<div
v-else
class="flex flex-col items-center justify-center h-full gap-4 text-muted-foreground"
>
<Icon
name="fluent-color:notebook-question-mark-24"
class="text-6xl"
/>
<p>暂不支持该资源类型</p>
</div>
</div>
</AppContainer>
</template>
<style scoped></style>