File size: 6,571 Bytes
89ce340 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
<template>
<div
class="editable-element-text"
:class="{ 'lock': elementInfo.lock }"
:style="{
top: elementInfo.top + 'px',
left: elementInfo.left + 'px',
width: elementInfo.width + 'px',
height: elementInfo.height + 'px',
}"
>
<div
class="rotate-wrapper"
:style="{ transform: `rotate(${elementInfo.rotate}deg)` }"
>
<div
class="element-content"
ref="elementRef"
:style="{
width: elementInfo.vertical ? 'auto' : elementInfo.width + 'px',
height: elementInfo.vertical ? elementInfo.height + 'px' : 'auto',
backgroundColor: elementInfo.fill,
opacity: elementInfo.opacity,
textShadow: shadowStyle,
lineHeight: elementInfo.lineHeight,
letterSpacing: (elementInfo.wordSpace || 0) + 'px',
color: elementInfo.defaultColor,
fontFamily: elementInfo.defaultFontName,
writingMode: elementInfo.vertical ? 'vertical-rl' : 'horizontal-tb',
}"
v-contextmenu="contextmenus"
@mousedown="$event => handleSelectElement($event)"
@touchstart="$event => handleSelectElement($event)"
>
<ElementOutline
:width="elementInfo.width"
:height="elementInfo.height"
:outline="elementInfo.outline"
/>
<ProsemirrorEditor
class="text"
:elementId="elementInfo.id"
:defaultColor="elementInfo.defaultColor"
:defaultFontName="elementInfo.defaultFontName"
:editable="!elementInfo.lock"
:value="elementInfo.content"
:style="{
'--paragraphSpace': `${elementInfo.paragraphSpace === undefined ? 5 : elementInfo.paragraphSpace}px`,
}"
@update="({ value, ignore }) => updateContent(value, ignore)"
@mousedown="$event => handleSelectElement($event, false)"
/>
<!-- 当字号过大且行高较小时,会出现文字高度溢出的情况,导致拖拽区域无法被选中,因此添加了以下节点避免该情况 -->
<div class="drag-handler top"></div>
<div class="drag-handler bottom"></div>
</div>
</div>
</div>
</template>
<script lang="ts" setup>
import { computed, onMounted, onUnmounted, ref, watch } from 'vue'
import { storeToRefs } from 'pinia'
import { debounce } from 'lodash'
import { useMainStore, useSlidesStore } from '@/store'
import type { PPTTextElement } from '@/types/slides'
import type { ContextmenuItem } from '@/components/Contextmenu/types'
import useElementShadow from '@/views/components/element/hooks/useElementShadow'
import useHistorySnapshot from '@/hooks/useHistorySnapshot'
import ElementOutline from '@/views/components/element/ElementOutline.vue'
import ProsemirrorEditor from '@/views/components/element/ProsemirrorEditor.vue'
const props = defineProps<{
elementInfo: PPTTextElement
selectElement: (e: MouseEvent | TouchEvent, element: PPTTextElement, canMove?: boolean) => void
contextmenus: () => ContextmenuItem[] | null
}>()
const mainStore = useMainStore()
const slidesStore = useSlidesStore()
const { handleElementId, isScaling } = storeToRefs(mainStore)
const { addHistorySnapshot } = useHistorySnapshot()
const elementRef = ref<HTMLElement>()
const shadow = computed(() => props.elementInfo.shadow)
const { shadowStyle } = useElementShadow(shadow)
const handleSelectElement = (e: MouseEvent | TouchEvent, canMove = true) => {
if (props.elementInfo.lock) return
e.stopPropagation()
props.selectElement(e, props.elementInfo, canMove)
}
// 监听文本元素的尺寸变化,当高度变化时,更新高度到vuex
// 如果高度变化时正处在缩放操作中,则等待缩放操作结束后再更新
const realHeightCache = ref(-1)
const realWidthCache = ref(-1)
watch(isScaling, () => {
if (handleElementId.value !== props.elementInfo.id) return
if (!isScaling.value) {
if (!props.elementInfo.vertical && realHeightCache.value !== -1) {
slidesStore.updateElement({
id: props.elementInfo.id,
props: { height: realHeightCache.value },
})
realHeightCache.value = -1
}
if (props.elementInfo.vertical && realWidthCache.value !== -1) {
slidesStore.updateElement({
id: props.elementInfo.id,
props: { width: realWidthCache.value },
})
realWidthCache.value = -1
}
}
})
const updateTextElementHeight = (entries: ResizeObserverEntry[]) => {
const contentRect = entries[0].contentRect
if (!elementRef.value) return
const realHeight = contentRect.height + 20
const realWidth = contentRect.width + 20
if (!props.elementInfo.vertical && props.elementInfo.height !== realHeight) {
if (!isScaling.value) {
slidesStore.updateElement({
id: props.elementInfo.id,
props: { height: realHeight },
})
}
else realHeightCache.value = realHeight
}
if (props.elementInfo.vertical && props.elementInfo.width !== realWidth) {
if (!isScaling.value) {
slidesStore.updateElement({
id: props.elementInfo.id,
props: { width: realWidth },
})
}
else realWidthCache.value = realWidth
}
}
const resizeObserver = new ResizeObserver(updateTextElementHeight)
onMounted(() => {
if (elementRef.value) resizeObserver.observe(elementRef.value)
})
onUnmounted(() => {
if (elementRef.value) resizeObserver.unobserve(elementRef.value)
})
const updateContent = (content: string, ignore = false) => {
slidesStore.updateElement({
id: props.elementInfo.id,
props: { content },
})
if (!ignore) addHistorySnapshot()
}
const checkEmptyText = debounce(function() {
const pureText = props.elementInfo.content.replace(/<[^>]+>/g, '')
if (!pureText) slidesStore.deleteElement(props.elementInfo.id)
}, 300, { trailing: true })
const isHandleElement = computed(() => handleElementId.value === props.elementInfo.id)
watch(isHandleElement, () => {
if (!isHandleElement.value) checkEmptyText()
})
</script>
<style lang="scss" scoped>
.editable-element-text {
position: absolute;
&.lock .element-content {
cursor: default;
}
}
.rotate-wrapper {
width: 100%;
height: 100%;
}
.element-content {
position: relative;
padding: 10px;
line-height: 1.5;
word-break: break-word;
cursor: move;
.text {
position: relative;
}
::v-deep(a) {
cursor: text;
}
}
.drag-handler {
height: 10px;
position: absolute;
left: 0;
right: 0;
&.top {
top: 0;
}
&.bottom {
bottom: 0;
}
}
</style>
|