mirror of
https://github.com/pipipi-pikachu/PPTist.git
synced 2025-04-15 02:20:00 +08:00
108 lines
2.3 KiB
Vue
108 lines
2.3 KiB
Vue
<template>
|
|
<div class="export-dialog">
|
|
<div class="tabs">
|
|
<div
|
|
class="tab"
|
|
:class="{ 'active': tab.key === dialogForExport }"
|
|
v-for="tab in tabs"
|
|
:key="tab.key"
|
|
@click="setDialogForExport(tab.key)"
|
|
>{{tab.label}}</div>
|
|
</div>
|
|
<div class="content">
|
|
<component :is="currentDialogComponent" @close="setDialogForExport('')"></component>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent } from 'vue'
|
|
import { storeToRefs } from 'pinia'
|
|
import { useMainStore } from '@/store'
|
|
import { DialogForExportTypes } from '@/types/export'
|
|
|
|
import ExportImage from './ExportImage.vue'
|
|
import ExportJSON from './ExportJSON.vue'
|
|
import ExportPDF from './ExportPDF.vue'
|
|
import ExportPPTX from './ExportPPTX.vue'
|
|
|
|
interface TabItem {
|
|
key: DialogForExportTypes;
|
|
label: string;
|
|
}
|
|
|
|
export default defineComponent({
|
|
name: 'export-dialog',
|
|
setup() {
|
|
const mainStore = useMainStore()
|
|
const { dialogForExport } = storeToRefs(mainStore)
|
|
|
|
const setDialogForExport = mainStore.setDialogForExport
|
|
|
|
const tabs: TabItem[] = [
|
|
{ key: 'pptx', label: '导出 PPTX' },
|
|
{ key: 'image', label: '导出图片' },
|
|
{ key: 'json', label: '导出 JSON' },
|
|
{ key: 'pdf', label: '打印 / 导出 PDF' },
|
|
]
|
|
|
|
const currentDialogComponent = computed(() => {
|
|
const dialogMap = {
|
|
'image': ExportImage,
|
|
'json': ExportJSON,
|
|
'pdf': ExportPDF,
|
|
'pptx': ExportPPTX,
|
|
}
|
|
return dialogMap[dialogForExport.value] || null
|
|
})
|
|
|
|
return {
|
|
currentDialogComponent,
|
|
tabs,
|
|
dialogForExport,
|
|
setDialogForExport,
|
|
}
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.export-dialog {
|
|
margin: -24px;
|
|
}
|
|
.tabs {
|
|
height: 50px;
|
|
font-size: 12px;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
user-select: none;
|
|
border-top-left-radius: $borderRadius;
|
|
border-top-right-radius: $borderRadius;
|
|
overflow: hidden;
|
|
}
|
|
.tab {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: $lightGray;
|
|
border-bottom: 1px solid $borderColor;
|
|
cursor: pointer;
|
|
|
|
&.active {
|
|
background-color: #fff;
|
|
border-bottom-color: #fff;
|
|
}
|
|
|
|
& + .tab {
|
|
border-left: 1px solid $borderColor;
|
|
}
|
|
}
|
|
.content {
|
|
height: 500px;
|
|
padding: 12px;
|
|
font-size: 13px;
|
|
|
|
@include overflow-overlay();
|
|
}
|
|
</style> |