YaolongHan 4 anni fa
parent
commit
eaa2972954

+ 178 - 0
src/components/editClass/big-edit/SBaseEditScene.ts

@@ -1,4 +1,8 @@
 import { SGraphEditScene } from "../edit"
+import { SMouseEvent, SUndoStack } from "@persagy-web/base/lib";
+import { SPoint, SFont, SColor, SRect } from '@persagy-web/draw/lib';
+import { SRectSelectItem } from '@persagy-web/big/lib';
+import { SGraphItem } from "@persagy-web/graph/";
 export class SBaseEditScene extends SGraphEditScene {
 
     /**图例节点 */
@@ -7,8 +11,182 @@ export class SBaseEditScene extends SGraphEditScene {
     Markers: any = [];
     /**  管线对象 */
     Relations: any = [];
+    // 操作栈
+    undoStack = new SUndoStack();
+
+    copyString: any[] = []
 
     constructor() {
         super()
     }
+
+    /**
+     * 重做
+     *
+     * @return any
+     */
+    redo(): void {
+        if (this.grabItem && this.grabItem.redo) {
+            this.grabItem.redo()
+        } else {
+            this.undoStack.redo();
+        }
+    }
+
+    /**
+     * 撤销
+     *
+     * @return any
+     */
+    undo(): void {
+        if (this.grabItem && this.grabItem.undo) {
+            this.grabItem.undo()
+        } else {
+            this.undoStack.undo();
+        }
+    }
+
+    /**
+     * 删除
+     *
+     * @return item[]
+     */
+    deleteItem(): any {
+        if (this.selectContainer.count == 0) {
+            return []
+        }
+        let itemList = this.selectContainer.itemList;
+        itemList.forEach((element: any) => {
+            this.removeItem(element)
+        });
+        if (this.view) {
+            this.view.update()
+        }
+        return itemList
+    }
+
+    /**
+     * 框选
+     *
+     */
+    addRectSelect(event: SMouseEvent): void {
+        let point = new SPoint(event.x, event.y);
+        let rect = new SRectSelectItem(null, point);
+        this.addItem(rect);
+        this.grabItem = rect;
+    }
+
+    /**
+     * 计算框选交集
+     */
+    groupSelect(ctrl: boolean) {
+        // if (!ctrl) {
+        //     this.selectContainer.clear()
+        // }
+        if (this.grabItem instanceof SRectSelectItem) {
+            const rect = this.grabItem.boundingRect();
+            this.arrToSelect(this.root.children, rect)
+        }
+    }
+
+    /**
+     * 选中item:框选
+     */
+    private arrToSelect(arr: SGraphItem[], rect: SRect) {
+        if (Array.isArray(arr) && arr.length) {
+            arr.forEach(t => {
+                if (t.parent) {
+                    let temp = t.boundingRect();
+                    let lefttop = t.mapToScene(temp.left, temp.top)
+                    let rightbottom = t.mapToScene(temp.right, temp.bottom)
+                    let r = new SRect(lefttop, rightbottom)
+                    if (rect.isIn(r)) {
+                        this.selectContainer.toggleItem(t)
+                    }
+                }
+            })
+        }
+    }
+
+    /////////////////////////////////////////////////////////////////////
+    // 鼠标事件
+
+    /**
+     * 鼠标左键按下
+     *
+     * @param   event   鼠标事件参数
+     */
+    onMouseDown(event: SMouseEvent): any {
+        if (!super.onMouseDown(event)) {
+            this.addRectSelect(event);
+        }
+    }
+
+    /**
+     * 鼠标抬起
+     *
+     * @param   event   鼠标事件参数
+     */
+    onMouseUp(event: SMouseEvent): boolean {
+        if (this.grabItem) {
+            // 鼠标抬起时,如果grabItem为框选则删除框选item
+            if (this.grabItem instanceof SRectSelectItem) {
+                this.removeItem(this.grabItem);
+                this.groupSelect(false);
+                this.grabItem = null;
+
+                if (this.view) {
+                    this.view.update()
+                }
+                return true;
+            }
+            return this.grabItem.onMouseUp(event);
+        }
+        return super.onMouseUp(event)
+    }
+
+    /**
+     * 复制
+     *
+     */
+    copy() {
+        const itemList = this.selectContainer.itemList
+        if (itemList.length) {
+            itemList.forEach(t => {
+                const data = JSON.parse(JSON.stringify(t.toData()))
+                data.ID = ''
+                this.copyString.push(data)
+
+            })
+            // 生成复制字符串
+            console.log(this.copyString)
+            // 获取input dom
+            const input = document.createElement('input');
+            input.setAttribute('id', 'COPYINPUT')
+            input.value = JSON.stringify(this.copyString)
+            sessionStorage.setItem("copyString", input.value);
+            document.body.appendChild(input);
+            input.select()
+            document.execCommand('copy');
+            input.style.display = 'none';
+            console.log(input.value, Date.now());
+            document.body.removeChild(input)
+        }
+    }
+
+    /**
+     * 粘贴
+     *
+     */
+    paste() {
+        const copyList = JSON.parse(JSON.stringify(this.copyString));
+        copyList.forEach(t => {
+            if (this.view) {
+                t.Pos.X += 10 / this.view.scale
+                t.Pos.Y += 10 / this.view.scale
+            }
+            t.moveable = true;
+            this.addItem(t)
+        });
+    }
 }

+ 3 - 3
src/components/editClass/big-edit/items/SBaseExpainEdit.ts

@@ -23,7 +23,7 @@
  *
  * *********************************************************************************************************************
  */
-import { SColor,SFont } from "@persagy-web/draw/";
+import { SColor, SFont } from "@persagy-web/draw/";
 import { STextEdit } from './../../edit';
 import { SGraphItem } from "@persagy-web/graph";
 import { Marker } from "./../types/Marker";
@@ -87,7 +87,7 @@ export class SBaseExpainEdit extends STextEdit {
         return true;
     } // Function onMouseDown()
 
-    toData() {
-        console.log(1230)
+    toData(): any {
+        return this.data
     }
 }

+ 3 - 3
src/components/editClass/big-edit/items/SBaseTextEdit.ts

@@ -23,7 +23,7 @@
  *
  * *********************************************************************************************************************
  */
-import { SColor,SFont } from "@persagy-web/draw/";
+import { SColor, SFont } from "@persagy-web/draw/";
 import { STextEdit } from './../../edit';
 import { SGraphItem } from "@persagy-web/graph";
 import { Marker } from "./../types/Marker";
@@ -87,7 +87,7 @@ export class SBaseTextEdit extends STextEdit {
         return true;
     } // Function onMouseDown()
 
-    toData() {
-        console.log(1230)
+    toData(): any {
+        return this.data
     }
 }

+ 0 - 1
src/components/editClass/edit/SGraphEdit.ts

@@ -26,7 +26,6 @@
 
 import { SGraphItem } from "@persagy-web/graph/";
 import { SItemStatus } from "@persagy-web/big";
-import { ImageEdit, LineEdit, PolygonEdit, PolylineEdit, TextEdit, SGraphCommand, SGraphAddCommand, SGraphMoveCommand, SGraphPointListDelete, SGraphPointListInsert, SGraphPointListUpdate, SGraphPropertyCommand } from "./"
 import { SMouseEvent } from "@persagy-web/base/";
 
 /**

+ 2 - 29
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -2,14 +2,13 @@ import { SBaseEditScene, SBaseLineEdit, SBaseTextEdit, SBaseImageEdit, SBaseExpa
 import { SPersagyImageEdit } from "./"
 // import { SGraphItem } from "@persagy-web/graph/";
 import { SGraphEdit } from "./../edit"
-import { SMouseEvent, SUndoStack } from "@persagy-web/base/lib";
+// import { SMouseEvent, SUndoStack } from "@persagy-web/base/lib";
 import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
 import { uuid } from "./../big-edit/until";
 
 // 引入命令
 import { SGraphAddCommand } from "./../edit/commands/SGraphAddCommand"
 export class PTopoScene extends SBaseEditScene {
-    undoStack = new SUndoStack();
     constructor() {
         super()
         // // 选择绑定选额item事件
@@ -22,7 +21,7 @@ export class PTopoScene extends SBaseEditScene {
      * @param   event   鼠标事件参数
      */
     listChange(list: any): void {
-        this.emitChoice(list.itemList)
+        this.emitChoice(list.itemList);
     }
 
     /**
@@ -247,30 +246,4 @@ export class PTopoScene extends SBaseEditScene {
      */
     getItem(event: SMouseEvent, item: SGraphEdit | null) {
     }
-
-    /**
-     * 重做
-     *
-     * @return any
-     */
-    redo(): void {
-        if (this.grabItem && this.grabItem.redo) {
-            this.grabItem.redo()
-        } else {
-            this.undoStack.redo();
-        }
-    }
-
-    /**
-     * 撤销
-     *
-     * @return any
-     */
-    undo(): void {
-        if (this.grabItem && this.grabItem.undo) {
-            this.grabItem.undo()
-        } else {
-            this.undoStack.undo();
-        }
-    }
 }

+ 23 - 8
src/components/editview/baseTopoEditer.vue

@@ -1,12 +1,7 @@
 <template>
   <div class="baseTopo" id="baseTopo" ref="baseTopo">
     <topoTooltip class="topoTooltip-box" ref="topoTooltip"></topoTooltip>
-    <canvas
-      id="persagy_topo"
-      :width="canvasWidth"
-      :height="canvasHeight"
-      tabindex="0"
-    ></canvas>
+    <canvas id="persagy_topo" :width="canvasWidth" :height="canvasHeight" tabindex="0"></canvas>
   </div>
 </template>
 <script>
@@ -68,8 +63,8 @@ export default {
       doms.style.top = event.y + "px";
     },
     // 选中后的回调函数
-    emitChoice(itemList){
-      bus.$emit('emitChoice',itemList)
+    emitChoice(itemList) {
+      bus.$emit("emitChoice", itemList);
     },
     //初始化bus绑定事件
     initBusEvent() {
@@ -77,6 +72,26 @@ export default {
       bus.$on("baseTextSize", (val) => {
         console.log("aaaaaaaaa", val);
       });
+      // 撤销
+      bus.$on("topoUndo", (val) => {
+        this.scene.undo();
+      });
+      // 重做
+      bus.$on("topoRedo", (val) => {
+        this.scene.redo();
+      });
+      // 删除
+      bus.$on("deleteItem", (val) => {
+        this.scene.deleteItem();
+      });
+      // 复制
+      bus.$on("copy", (val) => {
+        this.scene.copy();
+      });
+      // 粘贴
+      bus.$on("paste", (val) => {
+        this.scene.paste();
+      });
     },
   },
   watch: {

+ 0 - 1
src/components/editview/rightPropertyBar/property.vue

@@ -25,7 +25,6 @@ export default {
   },
   methods: {
     emitChoice(itemList) {
-      console.log("itemList", itemList);
       if (itemList.length == 1) {
         this.itemType = itemList[0].data.Type ? itemList[0].data.Type : "";
       } else {

+ 37 - 10
src/components/editview/topToolBar.vue

@@ -17,20 +17,20 @@
             />
           </div>
           <span>缩放窗口</span>
-        </li> -->
-        <li >
+        </li>-->
+        <li @click="topoUndo">
           <img class="lock" :src="require(`./../../assets/images/undo.png`)" alt />
           <span>撤销</span>
         </li>
-        <li >
+        <li @click="topoRedo">
           <img class="lock" :src="require(`./../../assets/images/redo.png`)" alt />
           <span>重做</span>
         </li>
-        <li >
+        <li @click="copy">
           <img class="lock" :src="require(`./../../assets/images/copy.png`)" alt />
           <span>复制</span>
         </li>
-        <li>
+        <li @click="paste">
           <img class="lock" :src="require(`./../../assets/images/past.png`)" alt />
           <span>粘贴</span>
         </li>
@@ -60,7 +60,7 @@
               </a-menu-item>
             </a-menu>
           </a-dropdown>
-        </li> -->
+        </li>-->
         <!-- <li>
           <a-dropdown :trigger="['click']">
             <div class="ant-dropdown-link dropdown-flex" @click="e => e.preventDefault()">
@@ -86,7 +86,7 @@
               </a-menu-item>
             </a-menu>
           </a-dropdown>
-        </li> -->
+        </li>-->
         <!-- <li>
           <a-icon type="edit" />
           <span>图层</span>
@@ -103,7 +103,7 @@
           <!-- <Icon color="#646A73" :name="isLock?'lock':'unlock'" /> -->
           <span>{{!isLock?"解锁":"锁定"}}</span>
         </li>
-        <li>
+        <li @click="deleteItem">
           <img class="lock" :src="require(`./../../assets/images/delete.png`)" alt />
           <span>删除</span>
         </li>
@@ -115,7 +115,34 @@
   </div>
 </template>
 <script>
-export default {};
+import bus from "@/bus/bus";
+export default {
+  data() {
+    return {};
+  },
+  methods: {
+    //撤销
+    topoUndo() {
+      bus.$emit("topoUndo");
+    },
+    // 重做
+    topoRedo() {
+      bus.$emit("topoRedo");
+    },
+    // 删除item
+    deleteItem() {
+      bus.$emit("deleteItem");
+    },
+    // 复制
+    copy() {
+      bus.$emit("copy");
+    },
+    // 粘贴
+    paste() {
+      bus.$emit("paste");
+    },
+  },
+};
 </script>
 <style lang="less">
 ul,
@@ -131,7 +158,7 @@ li {
   box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
   display: flex;
   align-items: center;
-  justify-content:center;
+  justify-content: center;
   padding: 0 24px 0 24px;
   box-sizing: border-box;
   .left {