fix(editor): 在组件树中多选时不能选中页面

This commit is contained in:
roymondchen 2024-07-25 16:23:36 +08:00
parent 57be30cf6b
commit c456798751

View File

@ -2,6 +2,7 @@ import { computed, type ComputedRef, nextTick, type Ref, ref } from 'vue';
import { throttle } from 'lodash-es';
import { Id, MNode } from '@tmagic/schema';
import { isPage, isPageFragment } from '@tmagic/utils';
import { LayerNodeStatus, Services, TreeNodeData, UI_SELECT_MODE_EVENT_NAME } from '@editor/type';
import { updateStatus } from '@editor/utils/tree';
@ -31,6 +32,10 @@ export const useClick = (
};
const multiSelect = async (data: MNode) => {
if (isPage(data) || isPageFragment(data)) {
return;
}
const nodes = services?.editorService.get('nodes') || [];
const newNodes: Id[] = [];
@ -41,6 +46,10 @@ export const useClick = (
return;
}
if (isPage(node) || isPageFragment(node)) {
return;
}
newNodes.push(node.id);
});