mirror of
https://github.com/pipipi-pikachu/PPTist.git
synced 2025-04-15 02:20:00 +08:00
230 lines
6.1 KiB
Vue
230 lines
6.1 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="element-content"
|
||
v-contextmenu="contextmenus"
|
||
>
|
||
<EditableTable
|
||
@mousedown.stop
|
||
:data="elementInfo.data"
|
||
:width="elementInfo.width"
|
||
: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)"
|
||
>
|
||
<div class="mask-tip" :style="{ transform: `scale(${ 1 / canvasScale })` }">双击编辑</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts">
|
||
import { computed, defineComponent, nextTick, onMounted, onUnmounted, PropType, ref, watch } from 'vue'
|
||
import { MutationTypes, useStore } from '@/store'
|
||
import { PPTTableElement, TableCell } from '@/types/slides'
|
||
import emitter, { EmitterEvents } from '@/utils/emitter'
|
||
import { ContextmenuItem } from '@/components/Contextmenu/types'
|
||
import useHistorySnapshot from '@/hooks/useHistorySnapshot'
|
||
|
||
import EditableTable from './EditableTable.vue'
|
||
|
||
export default defineComponent({
|
||
name: 'editable-element-table',
|
||
components: {
|
||
EditableTable,
|
||
},
|
||
props: {
|
||
elementInfo: {
|
||
type: Object as PropType<PPTTableElement>,
|
||
required: true,
|
||
},
|
||
selectElement: {
|
||
type: Function as PropType<(e: MouseEvent, element: PPTTableElement, canMove?: boolean) => void>,
|
||
required: true,
|
||
},
|
||
contextmenus: {
|
||
type: Function as PropType<() => ContextmenuItem[]>,
|
||
},
|
||
},
|
||
setup(props) {
|
||
const store = useStore()
|
||
const canvasScale = computed(() => store.state.canvasScale)
|
||
const handleElementId = computed(() => store.state.handleElementId)
|
||
|
||
const elementRef = ref<HTMLElement>()
|
||
|
||
const { addHistorySnapshot } = useHistorySnapshot()
|
||
|
||
const handleSelectElement = (e: MouseEvent) => {
|
||
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, () => {
|
||
store.commit(MutationTypes.SET_DISABLE_HOTKEYS_STATE, editable.value)
|
||
})
|
||
|
||
const startEdit = () => {
|
||
if (!props.elementInfo.lock) editable.value = true
|
||
}
|
||
|
||
// 监听表格元素的尺寸变化,当高度变化时,更新高度到vuex
|
||
// 如果高度变化时正处在缩放操作中,则等待缩放操作结束后再更新
|
||
const isScaling = ref(false)
|
||
const realHeightCache = ref(-1)
|
||
|
||
const scaleElementStateListener = (state: boolean) => {
|
||
isScaling.value = state
|
||
|
||
if (state) editable.value = false
|
||
|
||
if (!state && realHeightCache.value !== -1) {
|
||
store.commit(MutationTypes.UPDATE_ELEMENT, {
|
||
id: props.elementInfo.id,
|
||
props: { height: realHeightCache.value },
|
||
})
|
||
realHeightCache.value = -1
|
||
}
|
||
}
|
||
|
||
emitter.on(EmitterEvents.SCALE_ELEMENT_STATE, state => scaleElementStateListener(state))
|
||
onUnmounted(() => {
|
||
emitter.off(EmitterEvents.SCALE_ELEMENT_STATE, state => scaleElementStateListener(state))
|
||
})
|
||
|
||
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) {
|
||
store.commit(MutationTypes.UPDATE_ELEMENT, {
|
||
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[][]) => {
|
||
store.commit(MutationTypes.UPDATE_ELEMENT, {
|
||
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)
|
||
|
||
store.commit(MutationTypes.UPDATE_ELEMENT, {
|
||
id: props.elementInfo.id,
|
||
props: { width, colWidths },
|
||
})
|
||
addHistorySnapshot()
|
||
}
|
||
|
||
// 更新表格当前选中的单元格
|
||
const updateSelectedCells = (cells: string[]) => {
|
||
nextTick(() => emitter.emit(EmitterEvents.UPDATE_TABLE_SELECTED_CELL, cells))
|
||
}
|
||
|
||
return {
|
||
elementRef,
|
||
canvasScale,
|
||
handleSelectElement,
|
||
updateTableCells,
|
||
updateColWidths,
|
||
editable,
|
||
startEdit,
|
||
updateSelectedCells,
|
||
}
|
||
},
|
||
})
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.editable-element-table {
|
||
position: absolute;
|
||
|
||
&.lock .element-content {
|
||
cursor: default;
|
||
}
|
||
}
|
||
|
||
.element-content {
|
||
width: 100%;
|
||
height: 100%;
|
||
position: relative;
|
||
cursor: move;
|
||
}
|
||
.table-mask {
|
||
position: absolute;
|
||
top: 0;
|
||
bottom: 0;
|
||
left: 0;
|
||
right: 0;
|
||
opacity: 0;
|
||
transition: opacity .2s;
|
||
|
||
.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>
|