fix(editor): 添加组件粘贴操作支持偏移量

This commit is contained in:
wangminghua 2022-08-05 19:25:11 +08:00 committed by jia000
parent a4e91fa66d
commit 9ffecf62f7
2 changed files with 22 additions and 1 deletions

View File

@ -135,6 +135,14 @@ export interface AddMNode {
export interface PastePosition {
left?: number;
top?: number;
/**
* X方向偏移量
*/
offsetX?: number;
/**
* Y方向偏移量
*/
offsetY?: number;
}
/**

View File

@ -25,7 +25,10 @@ export const beforePaste = async (position: PastePosition, config: MNode[]) => {
// 坐标校准后的粘贴数据
const pasteConfigs: MNode[] = await Promise.all(
config.map(async (configItem: MNode): Promise<MNode> => {
let pastePosition = position;
// 解构 position 对象,从 position 删除 offsetX、offsetY字段
const { offsetX = 0, offsetY = 0, ...positionClone } = position;
let pastePosition = positionClone;
if (!isEmpty(pastePosition) && curNode.items) {
// 如果没有传入粘贴坐标则可能为键盘操作,不再转换
// 如果粘贴时选中了容器,则将元素粘贴到容器内,坐标需要转换为相对于容器的坐标
@ -41,7 +44,17 @@ export const beforePaste = async (position: PastePosition, config: MNode[]) => {
}
const pasteConfig = await propsService.setNewItemId(configItem, editorService.get('root'));
if (pasteConfig.style) {
const { left, top } = pasteConfig.style;
// 判断能转换为数字时,做粘贴偏移量计算
if (typeof left === 'number' || (!!left && !isNaN(Number(left)))) {
pasteConfig.style.left = Number(left) + offsetX;
}
if (typeof top === 'number' || (!!top && !isNaN(Number(top)))) {
pasteConfig.style.top = Number(top) + offsetY;
}
pasteConfig.style = {
...pasteConfig.style,
...pastePosition,