liwei 1 год назад
Родитель
Сommit
ef8ed6e73d

+ 1 - 1
src/modules/editor/controllers/PageCtrl/index.ts

@@ -76,7 +76,7 @@ export class PageCtrl extends ModuleControl<EditorModule> {
         this.state.setCurrCompId(compId);
         const comps = this.helper.getCompTrees(compId);
   
-        if (compId == "root") {
+        if (compId == "root" || compId == "") {
           return;
         }
         let cardId = comps[1]?.id || "";

+ 1 - 0
src/modules/editor/controllers/ReactCtrl/history.ts

@@ -34,6 +34,7 @@ export class HistoryController {
   submit() {
     if (this.cacheSnapValues.size < 1  || !this.enable) return;
 
+    console.log("submiting history=>", this.cacheSnapValues.size);
     const state = this.state;
     const queue = this.queues;
 

+ 18 - 4
src/modules/editor/controllers/SelectCtrl/gizemo.ts

@@ -51,6 +51,8 @@ export class Gizemo extends Events {
       mouse: ""
     }, this.history)
 
+    lastSelChanged = false;
+
     getCompObj: FnGetCompObj;
 
     constructor(getCompObj: FnGetCompObj) {
@@ -175,16 +177,28 @@ export class Gizemo extends Events {
     }
     
     selectObjs(ids: string[]) {
+        let noChange = false;
         if (this.selected.length == ids.length ) {
-            if (ids.length == 0) return;
-            if (ids.length == 1) {
-                if (ids[0] == this.selected[0].comp.id) return;
+            if (ids.length == 0) {
+                noChange = true;
+            } else if (ids.length == 1) {
+                if (ids[0] == this.selected[0].comp.id) {
+                    noChange = true;
+                }
             } else {
                 const id1 = ids.sort().join("");
                 const id2 = this.selected.map(item=>item.comp.id).sort().join("");
-                if (id1 == id2) return;
+                if (id1 == id2) {
+                    noChange = true;
+                }
             }
         }
+        this.lastSelChanged = !noChange;
+        console.log("changing....", this.lastSelChanged);
+        if (noChange) {
+            return;
+        }
+
         let n = ids.length;
         const selected = ids;
         let w = 0, h = 0, x = 0, y = 0, sx = 1 , sy = 1, r = 0, px=0, py=0;

+ 10 - 4
src/modules/editor/controllers/SelectCtrl/index.ts

@@ -441,8 +441,9 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
       isClick = true;
     }
     const page = this.controls.pageCtrl;
+    const gizmo = this.controls.selectCtrl.gizmo;
 
-    this.gizmo.state.setMouse("");
+    gizmo.state.setMouse("");
     document.removeEventListener("mousemove", this.onDocMouseMove, {
       capture: true,
     });
@@ -455,8 +456,9 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
       this._state = MODE_NONE;
       if ((!e.shiftKey && !e.ctrlKey) ) {
           this.controls.editorCtrl.clickPickComp(this._downClickedCompId);
-          history.submit();
-
+          if (gizmo.lastSelChanged) {
+            history.submit();
+          }
       } else {
         const paths = this.helper.getCompTrees(this._downClickedCompId)
         if (paths[2]) {
@@ -478,7 +480,11 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
         this._lastSelRect[3] / s,
         e
       );
-      history.submit();
+
+      if (gizmo.lastSelChanged) {
+        history.submit();
+      }
+      
     }
 
     if (this._state == MODE_ROTATE) {