mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-06-16 09:59:24 +08:00
738 lines
21 KiB
TypeScript
738 lines
21 KiB
TypeScript
/*
|
||
* Tencent is pleased to support the open source community by making TMagicEditor available.
|
||
*
|
||
* Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
|
||
*
|
||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
* you may not use this file except in compliance with the License.
|
||
* You may obtain a copy of the License at
|
||
*
|
||
* http://www.apache.org/licenses/LICENSE-2.0
|
||
*
|
||
* Unless required by applicable law or agreed to in writing, software
|
||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
* See the License for the specific language governing permissions and
|
||
* limitations under the License.
|
||
*/
|
||
|
||
import { reactive, toRaw } from 'vue';
|
||
import { cloneDeep, mergeWith, uniq } from 'lodash-es';
|
||
|
||
import type { Id, MApp, MComponent, MContainer, MNode, MPage } from '@tmagic/schema';
|
||
import { NodeType } from '@tmagic/schema';
|
||
import StageCore from '@tmagic/stage';
|
||
import { getNodePath, isNumber, isPage, isPop } from '@tmagic/utils';
|
||
|
||
import historyService, { StepValue } from '@editor/services/history';
|
||
import storageService, { Protocol } from '@editor/services/storage';
|
||
import type { AddMNode, EditorNodeInfo, PastePosition, StoreState } from '@editor/type';
|
||
import { LayerOffset, Layout } from '@editor/type';
|
||
import {
|
||
change2Fixed,
|
||
COPY_STORAGE_KEY,
|
||
Fixed2Other,
|
||
getInitPositionStyle,
|
||
getNodeIndex,
|
||
isFixed,
|
||
setLayout,
|
||
} from '@editor/utils/editor';
|
||
import { beforeAdd, beforePaste, beforeRemove, notifyAddToStage } from '@editor/utils/operator';
|
||
|
||
import BaseService from './BaseService';
|
||
|
||
class Editor extends BaseService {
|
||
public state = reactive<StoreState>({
|
||
root: null,
|
||
page: null,
|
||
parent: null,
|
||
node: null,
|
||
nodes: [],
|
||
stage: null,
|
||
highlightNode: null,
|
||
modifiedNodeIds: new Map(),
|
||
pageLength: 0,
|
||
});
|
||
private isHistoryStateChange = false;
|
||
|
||
constructor() {
|
||
super(
|
||
[
|
||
'getLayout',
|
||
'select',
|
||
'add',
|
||
'remove',
|
||
'update',
|
||
'sort',
|
||
'copy',
|
||
'paste',
|
||
'alignCenter',
|
||
'moveLayer',
|
||
'moveToContainer',
|
||
'move',
|
||
'undo',
|
||
'redo',
|
||
'highlight',
|
||
],
|
||
// 需要注意循环依赖问题,如果函数间有相互调用的话,不能设置为串行调用
|
||
['select', 'update', 'moveLayer'],
|
||
);
|
||
}
|
||
|
||
/**
|
||
* 设置当前指点节点配置
|
||
* @param name 'root' | 'page' | 'parent' | 'node' | 'highlightNode' | 'nodes'
|
||
* @param value MNode
|
||
* @returns MNode
|
||
*/
|
||
public set<T = MNode>(name: keyof StoreState, value: T) {
|
||
this.state[name] = value as any;
|
||
// set nodes时将node设置为nodes第一个元素
|
||
if (name === 'nodes') {
|
||
this.set('node', (value as unknown as MNode[])[0]);
|
||
}
|
||
if (name === 'root') {
|
||
this.state.pageLength = (value as unknown as MApp)?.items?.length || 0;
|
||
this.emit('root-change', value);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 获取当前指点节点配置
|
||
* @param name 'root' | 'page' | 'parent' | 'node' | 'highlightNode' | 'nodes'
|
||
* @returns MNode
|
||
*/
|
||
public get<T = MNode>(name: keyof StoreState): T {
|
||
return (this.state as any)[name];
|
||
}
|
||
|
||
/**
|
||
* 根据id获取组件、组件的父组件以及组件所属的页面节点
|
||
* @param {number | string} id 组件id
|
||
* @param {boolean} raw 是否使用toRaw
|
||
* @returns {EditorNodeInfo}
|
||
*/
|
||
public getNodeInfo(id: Id, raw = true): EditorNodeInfo {
|
||
let root = this.get<MApp | null>('root');
|
||
if (raw) {
|
||
root = toRaw(root);
|
||
}
|
||
if (!root) return {};
|
||
|
||
if (id === root.id) {
|
||
return { node: root };
|
||
}
|
||
|
||
const path = getNodePath(id, root.items);
|
||
|
||
if (!path.length) return {};
|
||
|
||
path.unshift(root);
|
||
const info: EditorNodeInfo = {};
|
||
|
||
info.node = path[path.length - 1] as MComponent;
|
||
info.parent = path[path.length - 2] as MContainer;
|
||
|
||
path.forEach((item) => {
|
||
if (item.type === NodeType.PAGE) {
|
||
info.page = item as MPage;
|
||
return;
|
||
}
|
||
});
|
||
|
||
return info;
|
||
}
|
||
|
||
/**
|
||
* 根据ID获取指点节点配置
|
||
* @param id 组件ID
|
||
* @param {boolean} raw 是否使用toRaw
|
||
* @returns 组件节点配置
|
||
*/
|
||
public getNodeById(id: Id, raw = true): MNode | undefined {
|
||
const { node } = this.getNodeInfo(id, raw);
|
||
return node;
|
||
}
|
||
|
||
/**
|
||
* 根据ID获取指点节点的父节点配置
|
||
* @param id 组件ID
|
||
* @param {boolean} raw 是否使用toRaw
|
||
* @returns 指点组件的父节点配置
|
||
*/
|
||
public getParentById(id: Id, raw = true): MContainer | undefined {
|
||
if (!this.get<MApp | null>('root')) return;
|
||
const { parent } = this.getNodeInfo(id, raw);
|
||
return parent;
|
||
}
|
||
|
||
/**
|
||
* 只有容器拥有布局
|
||
*/
|
||
public async getLayout(parent: MNode, node?: MNode): Promise<Layout> {
|
||
if (node && typeof node !== 'function' && isFixed(node)) return Layout.FIXED;
|
||
|
||
if (parent.layout) {
|
||
return parent.layout;
|
||
}
|
||
|
||
// 如果该节点没有设置position,则认为是流式布局,例如获取root的布局时
|
||
if (!parent.style?.position) {
|
||
return Layout.RELATIVE;
|
||
}
|
||
|
||
return Layout.ABSOLUTE;
|
||
}
|
||
|
||
/**
|
||
* 选中指定节点(将指定节点设置成当前选中状态)
|
||
* @param config 指定节点配置或者ID
|
||
* @returns 当前选中的节点配置
|
||
*/
|
||
public async select(config: MNode | Id): Promise<MNode> | never {
|
||
const { node, page, parent } = this.selectedConfigExceptionHandler(config);
|
||
this.set('nodes', [node]);
|
||
this.set('page', page || null);
|
||
this.set('parent', parent || null);
|
||
|
||
if (page) {
|
||
historyService.changePage(toRaw(page));
|
||
} else {
|
||
historyService.empty();
|
||
}
|
||
|
||
if (node?.id) {
|
||
this.get<StageCore>('stage')
|
||
?.renderer.runtime?.getApp?.()
|
||
?.emit(
|
||
'editor:select',
|
||
{
|
||
node,
|
||
page,
|
||
parent,
|
||
},
|
||
getNodePath(node.id, this.get<MApp>('root').items),
|
||
);
|
||
}
|
||
|
||
this.emit('select', node);
|
||
|
||
return node!;
|
||
}
|
||
|
||
public async selectNextNode(): Promise<MNode> | never {
|
||
const node = toRaw(this.get('node'));
|
||
|
||
if (!node || isPage(node) || node.type === NodeType.ROOT) return node;
|
||
|
||
const parent = toRaw(this.getParentById(node.id));
|
||
|
||
if (!parent) return node;
|
||
|
||
const index = getNodeIndex(node, parent);
|
||
|
||
const nextNode = parent.items[index + 1] || parent.items[0];
|
||
|
||
await this.select(nextNode);
|
||
this.get<StageCore>('stage')?.select(nextNode.id);
|
||
|
||
return nextNode;
|
||
}
|
||
|
||
public async selectNextPage(): Promise<MNode> | never {
|
||
const root = toRaw(this.get<MApp>('root'));
|
||
const page = toRaw(this.get('page'));
|
||
|
||
const index = getNodeIndex(page, root);
|
||
|
||
const nextPage = root.items[index + 1] || root.items[0];
|
||
|
||
await this.select(nextPage);
|
||
this.get<StageCore>('stage')?.select(nextPage.id);
|
||
|
||
return nextPage;
|
||
}
|
||
|
||
/**
|
||
* 高亮指定节点
|
||
* @param config 指定节点配置或者ID
|
||
* @returns 当前高亮的节点配置
|
||
*/
|
||
public highlight(config: MNode | Id): void {
|
||
const { node } = this.selectedConfigExceptionHandler(config);
|
||
const currentHighlightNode = this.get('highlightNode');
|
||
if (currentHighlightNode === node) return;
|
||
this.set('highlightNode', node);
|
||
}
|
||
|
||
/**
|
||
* 多选
|
||
* @param ids 指定节点ID
|
||
* @returns 加入多选的节点配置
|
||
*/
|
||
public multiSelect(ids: Id[]): void {
|
||
const nodes: MNode[] = [];
|
||
const idsUnique = uniq(ids);
|
||
idsUnique.forEach((id) => {
|
||
const { node } = this.getNodeInfo(id);
|
||
if (!node) return;
|
||
nodes.push(node);
|
||
});
|
||
this.set('nodes', nodes);
|
||
}
|
||
|
||
/**
|
||
* 批量向容器添加节点
|
||
* @param configs 将要添加的节点数组
|
||
* @returns 添加后的节点
|
||
*/
|
||
public async multiAdd(configs: MNode[]): Promise<MNode[]> {
|
||
const stage = this.get<StageCore | null>('stage');
|
||
const newNodes: MNode[] = await Promise.all(
|
||
configs.map(async (configItem: MNode): Promise<MNode> => {
|
||
// 新增元素到配置
|
||
const { parentNode, newNode, layout } = await beforeAdd(configItem as AddMNode);
|
||
// 将新增元素事件通知到stage以更新渲染
|
||
await notifyAddToStage(parentNode, newNode, layout);
|
||
return newNode;
|
||
}),
|
||
);
|
||
const newNodeIds: Id[] = newNodes.map((node) => node.id);
|
||
|
||
// 增加历史记录 多选不可能选中page
|
||
this.addModifiedNodeId(newNodeIds.join('-'));
|
||
this.pushHistoryState();
|
||
|
||
// 触发选中样式
|
||
stage?.multiSelect(newNodeIds);
|
||
|
||
this.emit('multiAdd', newNodes);
|
||
|
||
return newNodes;
|
||
}
|
||
|
||
/**
|
||
* 向指点容器添加组件节点
|
||
* @param addConfig 将要添加的组件节点配置
|
||
* @param parent 要添加到的容器组件节点配置,如果不设置,默认为当前选中的组件的父节点
|
||
* @returns 添加后的节点
|
||
*/
|
||
public async add(addNode: AddMNode, parent?: MContainer | null): Promise<MNode> {
|
||
const stage = this.get<StageCore | null>('stage');
|
||
// 新增元素到配置
|
||
const { parentNode, newNode, layout, isPage } = await beforeAdd(addNode, parent);
|
||
// 将新增元素事件通知到stage以更新渲染
|
||
await notifyAddToStage(parentNode, newNode, layout);
|
||
// 更新编辑器选中元素
|
||
await this.select(newNode);
|
||
// 增加历史记录
|
||
this.addModifiedNodeId(newNode.id);
|
||
if (!isPage) {
|
||
this.pushHistoryState();
|
||
}
|
||
|
||
if (isPage) {
|
||
this.state.pageLength += 1;
|
||
} else {
|
||
// 新增页面,这个时候页面还有渲染出来,此时select会出错,在runtime-ready的时候回去select
|
||
stage?.select(newNode.id);
|
||
}
|
||
|
||
this.emit('add', newNode);
|
||
|
||
return newNode;
|
||
}
|
||
|
||
/**
|
||
* 删除组件
|
||
* @param {Object} node
|
||
* @return {Object} 删除的组件配置
|
||
*/
|
||
public async remove(nodeOrNodeList: MNode | MNode[]): Promise<MNode | MNode[]> {
|
||
if (Array.isArray(nodeOrNodeList)) {
|
||
// 多选批量删除
|
||
const nodes = nodeOrNodeList;
|
||
return this.multiRemove(nodes);
|
||
}
|
||
const node = nodeOrNodeList;
|
||
const removeParent = await beforeRemove(node);
|
||
// 删除的是页面
|
||
if (!removeParent) return node;
|
||
// 更新历史记录
|
||
this.addModifiedNodeId(removeParent.id);
|
||
this.pushHistoryState();
|
||
|
||
this.emit('remove', node);
|
||
|
||
return node;
|
||
}
|
||
|
||
/**
|
||
* 批量删除
|
||
* @param nodes 批量删除的节点
|
||
* @returns 批量删除的节点
|
||
*/
|
||
public async multiRemove(nodes: MNode[]): Promise<MNode[]> {
|
||
await Promise.all(
|
||
nodes.map(async (removeNode) => {
|
||
await beforeRemove(removeNode);
|
||
}),
|
||
);
|
||
const nodeIds = nodes.map((node) => node.id);
|
||
this.addModifiedNodeId(nodeIds.join('-'));
|
||
this.pushHistoryState();
|
||
|
||
this.emit('multiRemove', nodes);
|
||
return nodes;
|
||
}
|
||
|
||
/**
|
||
* 更新节点
|
||
* @param config 新的节点配置,配置中需要有id信息
|
||
* @returns 更新后的节点配置
|
||
*/
|
||
public async update(config: MNode): Promise<MNode> {
|
||
if (!config?.id) throw new Error('没有配置或者配置缺少id值');
|
||
|
||
const info = this.getNodeInfo(config.id, false);
|
||
|
||
if (!info.node) throw new Error(`获取不到id为${config.id}的节点`);
|
||
|
||
const node = cloneDeep(toRaw(info.node));
|
||
|
||
let newConfig = await this.toggleFixedPosition(toRaw(config), node, this.get<MApp>('root'));
|
||
|
||
newConfig = mergeWith(cloneDeep(node), newConfig, (objValue, srcValue) => {
|
||
if (Array.isArray(srcValue)) {
|
||
return srcValue;
|
||
}
|
||
});
|
||
|
||
if (!newConfig.type) throw new Error('配置缺少type值');
|
||
|
||
if (newConfig.type === NodeType.ROOT) {
|
||
this.set('root', newConfig);
|
||
return newConfig;
|
||
}
|
||
|
||
const { parent } = info;
|
||
if (!parent) throw new Error('获取不到父级节点');
|
||
|
||
const parentNodeItems = parent.items;
|
||
const index = getNodeIndex(newConfig, parent);
|
||
|
||
if (!parentNodeItems || typeof index === 'undefined' || index === -1) throw new Error('更新的节点未找到');
|
||
|
||
const newLayout = await this.getLayout(newConfig);
|
||
const layout = await this.getLayout(node);
|
||
if (newLayout !== layout) {
|
||
newConfig = setLayout(newConfig, newLayout);
|
||
}
|
||
|
||
parentNodeItems[index] = newConfig;
|
||
|
||
// 将update后的配置更新到nodes中
|
||
const nodes = this.get('nodes');
|
||
const targetIndex = nodes.findIndex((nodeItem: MNode) => `${nodeItem.id}` === `${newConfig.id}`);
|
||
nodes.splice(targetIndex, 1, newConfig);
|
||
this.set('nodes', nodes);
|
||
|
||
this.get<StageCore | null>('stage')?.update({ config: cloneDeep(newConfig), root: cloneDeep(this.get('root')) });
|
||
|
||
if (newConfig.type === NodeType.PAGE) {
|
||
this.set('page', newConfig);
|
||
}
|
||
|
||
this.addModifiedNodeId(newConfig.id);
|
||
this.pushHistoryState();
|
||
|
||
this.emit('update', newConfig);
|
||
|
||
return newConfig;
|
||
}
|
||
|
||
/**
|
||
* 将id为id1的组件移动到id为id2的组件位置上,例如:[1,2,3,4] -> sort(1,3) -> [2,1,3,4]
|
||
* @param id1 组件ID
|
||
* @param id2 组件ID
|
||
* @returns void
|
||
*/
|
||
public async sort(id1: Id, id2: Id): Promise<void> {
|
||
const node = this.get<MNode>('node');
|
||
const parent = cloneDeep(toRaw(this.get<MContainer>('parent')));
|
||
const index2 = parent.items.findIndex((node: MNode) => `${node.id}` === `${id2}`);
|
||
// 在 id1 的兄弟组件中若无 id2 则直接 return
|
||
if (index2 < 0) return;
|
||
const index1 = parent.items.findIndex((node: MNode) => `${node.id}` === `${id1}`);
|
||
|
||
parent.items.splice(index2, 0, ...parent.items.splice(index1, 1));
|
||
|
||
await this.update(parent);
|
||
await this.select(node);
|
||
|
||
this.get<StageCore | null>('stage')?.update({ config: cloneDeep(node), root: cloneDeep(this.get('root')) });
|
||
|
||
this.addModifiedNodeId(parent.id);
|
||
this.pushHistoryState();
|
||
}
|
||
|
||
/**
|
||
* 将组将节点配置转化成string,然后存储到localStorage中
|
||
* @param config 组件节点配置
|
||
* @returns 组件节点配置
|
||
*/
|
||
public async copy(config: MNode | MNode[]): Promise<void> {
|
||
await storageService.setItem(COPY_STORAGE_KEY, Array.isArray(config) ? config : [config], {
|
||
protocol: Protocol.OBJECT,
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 从localStorage中获取节点,然后添加到当前容器中
|
||
* @param position 粘贴的坐标
|
||
* @returns 添加后的组件节点配置
|
||
*/
|
||
public async paste(position: PastePosition = {}): Promise<MNode[] | void> {
|
||
const config = await storageService.getItem(COPY_STORAGE_KEY);
|
||
|
||
if (!config) return;
|
||
|
||
const pasteConfigs = await beforePaste(position, config);
|
||
|
||
return await this.multiAdd(pasteConfigs);
|
||
}
|
||
|
||
/**
|
||
* 将指点节点设置居中
|
||
* @param config 组件节点配置
|
||
* @returns 当前组件节点配置
|
||
*/
|
||
public async alignCenter(config: MNode): Promise<MNode | void> {
|
||
const parent = this.get<MContainer>('parent');
|
||
const node = this.get<MNode>('node');
|
||
const layout = await this.getLayout(toRaw(parent), toRaw(node));
|
||
if (layout === Layout.RELATIVE) {
|
||
return;
|
||
}
|
||
|
||
if (!node.style) return;
|
||
|
||
const stage = this.get<StageCore>('stage');
|
||
const doc = stage?.renderer.contentWindow?.document;
|
||
|
||
if (doc) {
|
||
const el = doc.getElementById(`${node.id}`);
|
||
const parentEl = el?.offsetParent;
|
||
if (parentEl && el) {
|
||
node.style.left = (parentEl.clientWidth - el.clientWidth) / 2;
|
||
}
|
||
} else if (parent.style && isNumber(parent.style?.width) && isNumber(node.style?.width)) {
|
||
node.style.left = (parent.style.width - node.style.width) / 2;
|
||
}
|
||
|
||
await this.update(node);
|
||
this.get<StageCore | null>('stage')?.update({
|
||
config: cloneDeep(toRaw(node)),
|
||
root: cloneDeep(this.get<MApp>('root')),
|
||
});
|
||
this.addModifiedNodeId(config.id);
|
||
this.pushHistoryState();
|
||
|
||
return config;
|
||
}
|
||
|
||
/**
|
||
* 移动当前选中节点位置
|
||
* @param offset 偏移量
|
||
*/
|
||
public async moveLayer(offset: number | LayerOffset): Promise<void> {
|
||
const parent = this.get<MContainer>('parent');
|
||
const node = this.get('node');
|
||
const brothers: MNode[] = parent?.items || [];
|
||
const index = brothers.findIndex((item) => `${item.id}` === `${node?.id}`);
|
||
|
||
if (offset === LayerOffset.TOP) {
|
||
brothers.splice(brothers.length - 1, 0, brothers.splice(index, 1)[0]);
|
||
} else if (offset === LayerOffset.BOTTOM) {
|
||
brothers.splice(0, 0, brothers.splice(index, 1)[0]);
|
||
} else {
|
||
brothers.splice(index + parseInt(`${offset}`, 10), 0, brothers.splice(index, 1)[0]);
|
||
}
|
||
|
||
this.get<StageCore | null>('stage')?.update({
|
||
config: cloneDeep(toRaw(parent)),
|
||
root: cloneDeep(this.get<MApp>('root')),
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 移动到指定容器中
|
||
* @param config 需要移动的节点
|
||
* @param targetId 容器ID
|
||
*/
|
||
public async moveToContainer(config: MNode, targetId: Id): Promise<MNode | undefined> {
|
||
const { node, parent } = this.getNodeInfo(config.id, false);
|
||
const target = this.getNodeById(targetId, false) as MContainer;
|
||
|
||
const stage = this.get<StageCore | null>('stage');
|
||
|
||
if (node && parent && stage) {
|
||
const root = cloneDeep(this.get<MApp>('root'));
|
||
const index = getNodeIndex(node, parent);
|
||
parent.items?.splice(index, 1);
|
||
|
||
await stage.remove({ id: node.id, root });
|
||
|
||
const layout = await this.getLayout(target);
|
||
|
||
const newConfig = mergeWith(cloneDeep(node), config, (objValue, srcValue) => {
|
||
if (Array.isArray(srcValue)) {
|
||
return srcValue;
|
||
}
|
||
});
|
||
newConfig.style = getInitPositionStyle(newConfig.style, layout, target, stage);
|
||
|
||
target.items.push(newConfig);
|
||
|
||
await stage.select(targetId);
|
||
|
||
await stage.update({ config: cloneDeep(target), root });
|
||
|
||
await this.select(newConfig);
|
||
stage.select(newConfig.id);
|
||
|
||
this.addModifiedNodeId(target.id);
|
||
this.addModifiedNodeId(parent.id);
|
||
this.pushHistoryState();
|
||
|
||
return newConfig;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 撤销当前操作
|
||
* @returns 上一次数据
|
||
*/
|
||
public async undo(): Promise<StepValue | null> {
|
||
const value = historyService.undo();
|
||
await this.changeHistoryState(value);
|
||
return value;
|
||
}
|
||
|
||
/**
|
||
* 恢复到下一步
|
||
* @returns 下一步数据
|
||
*/
|
||
public async redo(): Promise<StepValue | null> {
|
||
const value = historyService.redo();
|
||
await this.changeHistoryState(value);
|
||
return value;
|
||
}
|
||
|
||
public async move(left: number, top: number) {
|
||
const node = toRaw(this.get('node'));
|
||
if (!node || isPage(node)) return;
|
||
|
||
const { style, id } = node;
|
||
if (!style || style.position !== 'absolute') return;
|
||
|
||
if (top && !isNumber(style.top)) return;
|
||
if (left && !isNumber(style.left)) return;
|
||
|
||
this.update({
|
||
id,
|
||
style: {
|
||
...style,
|
||
left: Number(style.left) + left,
|
||
top: Number(style.top) + top,
|
||
},
|
||
});
|
||
}
|
||
|
||
public destroy() {
|
||
this.removeAllListeners();
|
||
this.set('root', null);
|
||
this.set('node', null);
|
||
this.set('nodes', []);
|
||
this.set('page', null);
|
||
this.set('parent', null);
|
||
}
|
||
|
||
public resetModifiedNodeId() {
|
||
this.get<Map<Id, Id>>('modifiedNodeIds').clear();
|
||
}
|
||
|
||
private addModifiedNodeId(id: Id) {
|
||
if (!this.isHistoryStateChange) {
|
||
this.get<Map<Id, Id>>('modifiedNodeIds').set(id, id);
|
||
}
|
||
}
|
||
|
||
private pushHistoryState() {
|
||
const curNode = cloneDeep(toRaw(this.get('node')));
|
||
if (!this.isHistoryStateChange) {
|
||
historyService.push({
|
||
data: cloneDeep(toRaw(this.get('page'))),
|
||
modifiedNodeIds: this.get<Map<Id, Id>>('modifiedNodeIds'),
|
||
nodeId: curNode.id,
|
||
});
|
||
}
|
||
this.isHistoryStateChange = false;
|
||
}
|
||
|
||
private async changeHistoryState(value: StepValue | null) {
|
||
if (!value) return;
|
||
|
||
this.isHistoryStateChange = true;
|
||
await this.update(value.data);
|
||
this.set('modifiedNodeIds', value.modifiedNodeIds);
|
||
setTimeout(async () => {
|
||
if (!value.nodeId) return;
|
||
await this.select(value.nodeId);
|
||
this.get<StageCore | null>('stage')?.select(value.nodeId);
|
||
}, 0);
|
||
}
|
||
|
||
private async toggleFixedPosition(dist: MNode, src: MNode, root: MApp) {
|
||
const newConfig = cloneDeep(dist);
|
||
|
||
if (!isPop(src) && newConfig.style?.position) {
|
||
if (isFixed(newConfig) && !isFixed(src)) {
|
||
newConfig.style = change2Fixed(newConfig, root);
|
||
} else if (!isFixed(newConfig) && isFixed(src)) {
|
||
newConfig.style = await Fixed2Other(newConfig, root, this.getLayout);
|
||
}
|
||
}
|
||
|
||
return newConfig;
|
||
}
|
||
|
||
private selectedConfigExceptionHandler(config: MNode | Id): EditorNodeInfo {
|
||
let id: Id;
|
||
if (typeof config === 'string' || typeof config === 'number') {
|
||
id = config;
|
||
} else {
|
||
id = config.id;
|
||
}
|
||
if (!id) {
|
||
throw new Error('没有ID,无法选中');
|
||
}
|
||
|
||
const { node, parent, page } = this.getNodeInfo(id);
|
||
if (!node) throw new Error('获取不到组件信息');
|
||
|
||
if (node.id === this.state.root?.id) {
|
||
throw new Error('不能选根节点');
|
||
}
|
||
return {
|
||
node,
|
||
parent,
|
||
page,
|
||
};
|
||
}
|
||
}
|
||
|
||
export type EditorService = Editor;
|
||
|
||
export default new Editor();
|