mirror of
https://github.com/pipipi-pikachu/PPTist.git
synced 2025-04-15 02:20:00 +08:00
213 lines
5.4 KiB
Vue
213 lines
5.4 KiB
Vue
<template>
|
||
<div
|
||
class="editable-element-table"
|
||
ref="elementRef"
|
||
:class="{ 'lock': elementInfo.lock }"
|
||
:style="{
|
||
top: elementInfo.top + 'px',
|
||
left: elementInfo.left + 'px',
|
||
width: elementInfo.width + 'px',
|
||
}"
|
||
>
|
||
<div
|
||
class="rotate-wrapper"
|
||
:style="{ transform: `rotate(${elementInfo.rotate}deg)` }"
|
||
>
|
||
<div
|
||
class="element-content"
|
||
v-contextmenu="contextmenus"
|
||
>
|
||
<EditableTable
|
||
@mousedown.stop
|
||
:data="elementInfo.data"
|
||
:width="elementInfo.width"
|
||
:cellMinHeight="elementInfo.cellMinHeight"
|
||
:colWidths="elementInfo.colWidths"
|
||
:outline="elementInfo.outline"
|
||
:theme="elementInfo.theme"
|
||
:editable="editable"
|
||
@change="data => updateTableCells(data)"
|
||
@changeColWidths="widths => updateColWidths(widths)"
|
||
@changeSelectedCells="cells => updateSelectedCells(cells)"
|
||
/>
|
||
<div
|
||
class="table-mask"
|
||
:class="{ 'lock': elementInfo.lock }"
|
||
v-if="!editable || elementInfo.lock"
|
||
@dblclick="startEdit()"
|
||
@mousedown="$event => handleSelectElement($event)"
|
||
@touchstart="$event => handleSelectElement($event)"
|
||
>
|
||
<div class="mask-tip" :style="{ transform: `scale(${ 1 / canvasScale })` }">双击编辑</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
import { nextTick, onMounted, onUnmounted, PropType, ref, watch } from 'vue'
|
||
import { storeToRefs } from 'pinia'
|
||
import { useMainStore, useSlidesStore } from '@/store'
|
||
import { PPTTableElement, TableCell } from '@/types/slides'
|
||
import { ContextmenuItem } from '@/components/Contextmenu/types'
|
||
import useHistorySnapshot from '@/hooks/useHistorySnapshot'
|
||
|
||
import EditableTable from './EditableTable.vue'
|
||
|
||
const props = defineProps({
|
||
elementInfo: {
|
||
type: Object as PropType<PPTTableElement>,
|
||
required: true,
|
||
},
|
||
selectElement: {
|
||
type: Function as PropType<(e: MouseEvent | TouchEvent, element: PPTTableElement, canMove?: boolean) => void>,
|
||
required: true,
|
||
},
|
||
contextmenus: {
|
||
type: Function as PropType<() => ContextmenuItem[] | null>,
|
||
},
|
||
})
|
||
|
||
const mainStore = useMainStore()
|
||
const slidesStore = useSlidesStore()
|
||
const { canvasScale, handleElementId, isScaling } = storeToRefs(mainStore)
|
||
|
||
const elementRef = ref<HTMLElement>()
|
||
|
||
const { addHistorySnapshot } = useHistorySnapshot()
|
||
|
||
const handleSelectElement = (e: MouseEvent | TouchEvent) => {
|
||
if (props.elementInfo.lock) return
|
||
e.stopPropagation()
|
||
|
||
props.selectElement(e, props.elementInfo)
|
||
}
|
||
|
||
// 更新表格的可编辑状态,表格处于编辑状态时需要禁用全局快捷键
|
||
const editable = ref(false)
|
||
|
||
watch(handleElementId, () => {
|
||
if (handleElementId.value !== props.elementInfo.id) editable.value = false
|
||
})
|
||
|
||
watch(editable, () => {
|
||
mainStore.setDisableHotkeysState(editable.value)
|
||
})
|
||
|
||
const startEdit = () => {
|
||
if (!props.elementInfo.lock) editable.value = true
|
||
}
|
||
|
||
// 监听表格元素的尺寸变化,当高度变化时,更新高度到vuex
|
||
// 如果高度变化时正处在缩放操作中,则等待缩放操作结束后再更新
|
||
const realHeightCache = ref(-1)
|
||
|
||
watch(isScaling, () => {
|
||
if (handleElementId.value !== props.elementInfo.id) return
|
||
|
||
if (isScaling.value) editable.value = false
|
||
|
||
if (!isScaling.value && realHeightCache.value !== -1) {
|
||
slidesStore.updateElement({
|
||
id: props.elementInfo.id,
|
||
props: { height: realHeightCache.value },
|
||
})
|
||
realHeightCache.value = -1
|
||
}
|
||
})
|
||
|
||
const updateTableElementHeight = (entries: ResizeObserverEntry[]) => {
|
||
const contentRect = entries[0].contentRect
|
||
if (!elementRef.value) return
|
||
|
||
const realHeight = contentRect.height
|
||
|
||
if (props.elementInfo.height !== realHeight) {
|
||
if (!isScaling.value) {
|
||
slidesStore.updateElement({
|
||
id: props.elementInfo.id,
|
||
props: { height: realHeight },
|
||
})
|
||
}
|
||
else realHeightCache.value = realHeight
|
||
}
|
||
}
|
||
|
||
const resizeObserver = new ResizeObserver(updateTableElementHeight)
|
||
|
||
onMounted(() => {
|
||
if (elementRef.value) resizeObserver.observe(elementRef.value)
|
||
})
|
||
onUnmounted(() => {
|
||
if (elementRef.value) resizeObserver.unobserve(elementRef.value)
|
||
})
|
||
|
||
// 更新表格内容数据
|
||
const updateTableCells = (data: TableCell[][]) => {
|
||
slidesStore.updateElement({
|
||
id: props.elementInfo.id,
|
||
props: { data },
|
||
})
|
||
addHistorySnapshot()
|
||
}
|
||
|
||
// 更新表格的列宽数据
|
||
const updateColWidths = (widths: number[]) => {
|
||
const width = widths.reduce((a, b) => a + b)
|
||
const colWidths = widths.map(item => item / width)
|
||
|
||
slidesStore.updateElement({
|
||
id: props.elementInfo.id,
|
||
props: { width, colWidths },
|
||
})
|
||
addHistorySnapshot()
|
||
}
|
||
|
||
// 更新表格当前选中的单元格
|
||
const updateSelectedCells = (cells: string[]) => {
|
||
nextTick(() => mainStore.setSelectedTableCells(cells))
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.editable-element-table {
|
||
position: absolute;
|
||
|
||
&.lock .element-content {
|
||
cursor: default;
|
||
}
|
||
}
|
||
.rotate-wrapper {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
.element-content {
|
||
width: 100%;
|
||
height: 100%;
|
||
position: relative;
|
||
cursor: move;
|
||
}
|
||
.table-mask {
|
||
@include absolute-0();
|
||
|
||
opacity: 0;
|
||
transition: opacity $transitionDelay;
|
||
|
||
.mask-tip {
|
||
position: absolute;
|
||
top: 5px;
|
||
left: 5px;
|
||
background-color: rgba($color: #000, $alpha: .5);
|
||
color: #fff;
|
||
padding: 6px 12px;
|
||
font-size: 12px;
|
||
transform-origin: 0 0;
|
||
}
|
||
|
||
&:hover:not(.lock) {
|
||
opacity: .9;
|
||
}
|
||
}
|
||
</style>
|