Quellcode durchsuchen

Merge branch 'develop' of http://39.106.8.246:3003/web/persagy_topo_editer into develop

YaolongHan vor 4 Jahren
Ursprung
Commit
eefd484bdc

+ 6 - 6
package.json

@@ -15,12 +15,12 @@
     "publish": "node publish.js"
   },
   "dependencies": {
-    "@persagy-web/base": "2.2.1",
-    "@persagy-web/big": "2.2.58",
-    "@persagy-web/draw": "2.2.14",
-    "@persagy-web/graph": "2.2.49",
-    "@persagy-web/big-edit": "2.2.38",
-    "@persagy-web/edit": "2.2.31",
+    "@persagy-web/base": "2.2.2",
+    "@persagy-web/big": "2.2.61",
+    "@persagy-web/draw": "2.2.17",
+    "@persagy-web/graph": "2.2.52",
+    "@persagy-web/big-edit": "2.2.41",
+    "@persagy-web/edit": "2.2.34",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",

+ 40 - 5
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -25,8 +25,8 @@
 
 import { SBaseEditScene, SBasePipe, SBaseEquipment } from "@persagy-web/big-edit";
 import { SGraphEdit } from "@persagy-web/edit";
-import { SMouseEvent } from "@persagy-web/base/lib";
-import { SGraphAddCommand, SGraphItem, SGraphMoveCommand, SGraphPropertyCommand, SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
+import { SMouseEvent, SObject } from "@persagy-web/base/lib";
+import { SGraphAddCommand, SGraphGroupMoveCommand, SGraphItem, SGraphMoveCommand, SGraphPropertyCommand, SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
 import { rgbaNum } from "@persagy-web/big-edit/lib/until";
 // 引入命令
 import { SColor, SFont, SArrowStyleType, SPoint } from '@persagy-web/draw/lib';
@@ -57,6 +57,8 @@ export class PTopoScene extends SBaseEditScene {
         super()
         // 选择绑定选额item事件
         this.selectContainer.connect("listChange", this, this.listChange);
+        this.selectContainer.connect("groupMove", this, this.groupMove);
+        this.undoStack.connect("cmdListChange", this, this.stackChange)
     }
 
     /**
@@ -133,7 +135,8 @@ export class PTopoScene extends SBaseEditScene {
             this.addImageItem(event)
             this.clearCmdStatus();
         } else if (this.editCmd == "EditBasePolygon") { //
-            this.addPolygonItem(event);
+            const item = this.addPolygonItem(event);
+            item.moveable = true;
             this.clearCmdStatus();
         } else if (this.editCmd == "EditBaseRect") { // 设置层级与多边形一致
             const item = this.addRectItem(event)
@@ -145,10 +148,12 @@ export class PTopoScene extends SBaseEditScene {
         } else if (this.editCmd == "EditBaseCircle") { // 设置层级与多边形一致
             const item = this.addCircleItem(event)
             item.zOrder = ItemOrder.polygonOrder
+            item.moveable = true;
             this.clearCmdStatus();
         } else if (this.editCmd == "EditBaseArrows") { // 设置层级与多边形一致
             const item = this.addPolygonArrow(event)
             item.zOrder = ItemOrder.polygonOrder
+            item.moveable = true;
             this.clearCmdStatus();
         } else if (this.editCmd == "wantou" || this.editCmd == "santong" || this.editCmd == "sitong") {
             this.addPipeUninTool(event, this.editCmd)
@@ -557,13 +562,43 @@ export class PTopoScene extends SBaseEditScene {
     */
     addItem(item: SGraphItem): void {
         super.addItem(item);
-        item.connect('onMove', this, this.onItemMove.bind(this));
+        if (!(item instanceof SGraphSelectContainer)) {
+            item.connect('moveEnd', this, this.onItemMove.bind(this));
+        }
     }
 
     /**
      * 添加移动命令到命令栈
     */
-    onItemMove(item: SGraphItem, arg: SPoint[]) {
+    onItemMove(item: SGraphItem, arg: SPoint[]): void {
         this.undoStack.push(new SGraphMoveCommand(this, item, arg[0], arg[1]));
     }
+
+    /**
+     * 接收选择器抛出的批量移动的事件
+     * 
+     * @param sender 事件发送者
+     * @param args   返回的参数
+    */
+    groupMove(sender: SGraphItem, args: []): void {
+        if (args.length > 2) {
+            // @ts-ignore
+            const itemList = args[0] as SGraphItem[];
+            // @ts-ignore
+            const oldList = args[1] as SPoint[];
+            // @ts-ignore
+            const newList = args[2] as SPoint[];
+            this.undoStack.push(new SGraphGroupMoveCommand(this, itemList, oldList, newList))
+
+        }
+    }
+
+    /**
+     * 命令栈当前命令索引发生变化
+     * 
+     * @param sender 事件发送者
+    */
+    stackChange(sender: SObject): void {
+        this.selectContainer.getSize()
+    }
 }

+ 6 - 0
src/components/editview/leftToolBar/equipmentList.vue

@@ -119,6 +119,7 @@
                         v-show="hoverIndex == '' + index + i + b"
                         type="base"
                         placement="top-center"
+                        :key="a.legendData.nodeId"
                       >
                         <template slot="content">
                           <Button @click="deleteItem(a)" type="text" icon="edit"
@@ -176,6 +177,7 @@
               v-show="hoverIndex == '' + 10000 + 10000 + b"
               type="base"
               placement="top-center"
+              :key="a.legendData.nodeId"
             >
               <template slot="content">
                 <Button @click="deleteItem(a)" type="text" icon="edit"
@@ -454,6 +456,7 @@ li {
             box-sizing: border-box;
             flex: 1;
             .t {
+              max-width: 120px;
               font-size: 14px;
               color: #1f2429;
               overflow: hidden;
@@ -461,6 +464,7 @@ li {
               white-space: nowrap;
             }
             .b {
+              max-width: 120px;
               font-size: 10px;
               color: #8d9399;
               overflow: hidden;
@@ -555,6 +559,7 @@ li {
       box-sizing: border-box;
       flex: 1;
       .t {
+        max-width: 120px;
         font-size: 14px;
         color: #1f2429;
         overflow: hidden;
@@ -562,6 +567,7 @@ li {
         white-space: nowrap;
       }
       .b {
+        max-width: 120px;
         font-size: 10px;
         color: #8d9399;
         overflow: hidden;

+ 2 - 1
src/components/editview/rightPropertyBar/BaseGraphy.vue

@@ -36,7 +36,7 @@
                 show-alpha
                 @change="changeFillcolor"
                 class="fix-box-1"
-                v-model="fillColor"
+                v-model="fillcolor"
               ></el-color-picker>
             </div>
             <span>颜色</span>
@@ -125,6 +125,7 @@ export default {
         },
       ],
       linestyle: "Solid",
+      fillcolor: ''
     };
   },
   methods: {

+ 2 - 1
src/components/homeView/move.vue

@@ -76,7 +76,8 @@ export default {
         return {
           id: t.id,
           graphId: t.graphId,
-          categoryId: categoryId
+          categoryId: categoryId,
+          name: this.data.name
         }
       })
       if (this.isPub) { // 已发布

+ 2 - 1
src/components/homeView/tagDialog.vue

@@ -65,7 +65,8 @@ export default {
         content: [{
           id: this.data.id,
           graphId: this.data.graphId,
-          label: this.dynamicTags
+          label: this.dynamicTags,
+          name: this.data.name
         }],
         projection: ['label']
       }