yunxing 4 tahun lalu
induk
melakukan
4f3ccf2456

+ 38 - 9
src/components/baseEditer.vue

@@ -12,12 +12,7 @@ import { SFloorParser } from "@saga-web/big";
 import { FloorView } from "./../lib/FloorView";
 import { EditScence } from "./mapClass/EditScence";
 import bus from "@/bus";
-import {
-  saveGroup,
-  readGroup,
-  queryTypeGraph,
-  publishGraph
-} from "@/api/editer.js";
+import { saveGroup, readGroup, queryTypeGraph, publishGraph } from "@/api/editer.js";
 import { STopologyParser } from "./../lib/parsers/STopologyParser";
 import { uuid } from "@/components/mapClass/until";
 import { SImageItem } from "@saga-web/graph/lib";
@@ -76,9 +71,41 @@ export default {
             this.clearGraphy();
             this.scene = new EditScence();
             this.view.scene = this.scene;
+            this.initLoad();
+            console.log("fitSceneToView");
             this.view.fitSceneToView();
-            this.scene.emitChange = this.emitChange;
-            this.scene.scenceUpdate = this.scenceUpdate;
+            // this.scene.emitChange = this.emitChange;
+            // this.scene.scenceUpdate = this.scenceUpdate;
+        },
+        /**
+         * 使用模拟数据,加载绘制后的数据到视图
+         */
+        initLoad() {
+            let data = require("./test.json");
+            const parserData = new STopologyParser(null);
+            parserData.parseData(data.Elements);
+            let Markers = data.Elements.Markers;
+            let Nodes = data.Elements.Nodes;
+            // 使用STopologyParser 解析器 增加直线
+            parserData.lineMarkerList.map(t => {
+                this.scene.addItem(t);
+                this.scene.Markers.push(t);
+            });
+            // 使用 SEquipmentParser 解析器增加设备
+            let parserData1 = new SEquipmentParser(null);
+            parserData1.parseData(Nodes);
+            parserData1.equipmentItem.map(item => {
+                item.selectable = true;
+                item.connect("equipImgLoadOver", this, () => {
+                    this.view.fitSceneToView();
+                });
+                this.scene.addItem(item);
+                // this.scene.equipmentItem.push(item);
+                this.scene.Nodes.push(item);
+            });
+
+            // bus.$emit("elementDataChange", this.scene);
+            console.log("initLoad end");
         },
         // 不适用平面图逻辑(调用蜂鸟接口,加载底图)
         init1() {
@@ -339,7 +366,8 @@ export default {
                 parserData.equipmentItem.map(item => {
                     item.selectable = true;
                     this.scene.addItem(item);
-                    this.scene.equipmentItem.push(item);
+                    // this.scene.equipmentItem.push(item);
+                    this.scene.Nodes.push(item);
                 });
                 window.vm = this;
                 // this.scene.addEquipment(event);
@@ -426,6 +454,7 @@ export default {
                 });
                 console.log("%c========", "color:blue");
                 console.log(data);
+                console.log(JSON.stringify(data, null, 2));
                 return true;
                 saveGroup(data)
                     .then(res => {

+ 69 - 70
src/components/mapClass/EditScence.ts

@@ -197,7 +197,7 @@ export class EditScence extends SGraphScene {
         // 起始item点
         item.startItem = clickItem;
         if (clickItem) {
-            clickItem.connect('onMove', item, item.changePos);
+            clickItem.connect("onMove", item, item.changePos);
         }
         this.scenceUpdate(this);
         // this.undoStack.push(new SGraphAddCommand(this, item));
@@ -567,11 +567,11 @@ export class EditScence extends SGraphScene {
             let oldMsg = null;
             const newMsg = width;
             if (this.focusItem.data && this.focusItem.data.GraphElementType && this.focusItem.data.GraphElementType == "Image") {
-                oldMsg = this.focusItem.sWidth
+                oldMsg = this.focusItem.sWidth;
                 this.focusItem.sWidth = width;
                 this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "sWidth", oldMsg, newMsg));
             } else {
-                oldMsg = this.focusItem.width
+                oldMsg = this.focusItem.width;
                 this.focusItem.width = width;
                 this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "width", oldMsg, newMsg));
             }
@@ -595,7 +595,6 @@ export class EditScence extends SGraphScene {
                 this.focusItem.height = height;
                 this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "height", oldMsg, newMsg));
             }
-
         }
     }
 
@@ -721,7 +720,7 @@ export class EditScence extends SGraphScene {
             // 重新选中focusitem
             const item = this.focusItem;
             this.selectContainer.clear();
-            this.selectContainer.toggleItem(item)
+            this.selectContainer.toggleItem(item);
         }
     }
 
@@ -741,7 +740,7 @@ export class EditScence extends SGraphScene {
             ) {
                 this.focusItem.deletePoint(this.focusItem.curIndex);
             } else {
-                this.undoStack.push(new SGraphDeleteCommand(this, this.focusItem));
+                // this.undoStack.push(new SGraphDeleteCommand(this, this.focusItem));
                 this.removeItem(this.focusItem);
                 let a = -1;
                 this.Nodes.forEach((item: any, index: number) => {
@@ -771,7 +770,7 @@ export class EditScence extends SGraphScene {
                     this.Relations.splice(c, 1);
                 }
                 // HACK: 删除设备对象
-                this.equipmentItem = this.equipmentItem.filter((item: any) => item.id !== this.focusItem?.id);
+                // this.equipmentItem = this.equipmentItem.filter((item: any) => item.id !== this.focusItem?.id);
                 this.focusItem = null;
                 if (this.view) {
                     this.view.update();
@@ -781,15 +780,15 @@ export class EditScence extends SGraphScene {
         } else {
             //批量删除
             if (!this.focusItemList) {
-                return
+                return;
             }
-            this.undoStack.push(new SGraphDeleteListCommand(this,this.focusItemList))
+            this.undoStack.push(new SGraphDeleteListCommand(this, this.focusItemList));
             this.focusItemList.forEach((focusItem) => {
                 this.removeItem(focusItem);
-                let a = -1
+                let a = -1;
                 this.Nodes.forEach((item: any, index: number) => {
                     if (item.id == focusItem.id) {
-                        a = index
+                        a = index;
                     }
                 });
                 if (a > -1) {
@@ -798,7 +797,7 @@ export class EditScence extends SGraphScene {
                 let b = -1;
                 this.Markers.forEach((item: any, index: number) => {
                     if (item.id == focusItem.id) {
-                        b = index
+                        b = index;
                     }
                 });
                 if (b > -1) {
@@ -807,7 +806,7 @@ export class EditScence extends SGraphScene {
                 let c = -1;
                 this.Relations.forEach((item: any, index: number) => {
                     if (item.id == focusItem.id) {
-                        c = index
+                        c = index;
                     }
                 });
                 if (c > -1) {
@@ -855,9 +854,9 @@ export class EditScence extends SGraphScene {
             Relations.push(e.toData());
         });
         // TODO: 保存equipmentItem
-        this.equipmentItem.map((item: any) => {
-            Nodes.push(item.toData());
-        });
+        // this.equipmentItem.map((item: any) => {
+        //     Nodes.push(item.toData());
+        // });
         let element = {
             Nodes,
             Markers,
@@ -875,11 +874,10 @@ export class EditScence extends SGraphScene {
      */
     redo(): void {
         if (this.grabItem && this.grabItem.redo) {
-            this.grabItem.redo()
+            this.grabItem.redo();
         } else {
             this.undoStack.redo();
         }
-
     }
 
     /**
@@ -887,7 +885,7 @@ export class EditScence extends SGraphScene {
      */
     undo(): void {
         if (this.grabItem && this.grabItem.undo) {
-            this.grabItem.undo()
+            this.grabItem.undo();
         } else {
             this.undoStack.undo();
         }
@@ -916,7 +914,7 @@ export class EditScence extends SGraphScene {
                 this.setTipeEndanchor(event);
                 return true;
             } else if (this.grabItem instanceof SLineMarkerItem && this.grabItem.status == SItemStatus.Create) {
-                this.setLineItem(event)
+                this.setLineItem(event);
                 return true;
             }
             return this.grabItem.onMouseDown(event);
@@ -972,15 +970,15 @@ export class EditScence extends SGraphScene {
     onMouseUp(event: SMouseEvent): boolean {
         if (this.grabItem) {
             if (this.grabItem instanceof SLineMarkerItem && this.grabItem.status == SItemStatus.Edit) {
-                this.setLineItem(event)
+                this.setLineItem(event);
                 return true;
-            } else if (this.grabItem instanceof TipelineItem){
+            } else if (this.grabItem instanceof TipelineItem) {
                 this.updateTipeAnc(event);
                 return true;
             }
             return this.grabItem.onMouseUp(event);
         }
-        return super.onMouseUp(event)
+        return super.onMouseUp(event);
     }
 
     /**
@@ -1011,7 +1009,6 @@ export class EditScence extends SGraphScene {
         return false;
     }
 
-
     /**
      * 鼠标双击事件
      *
@@ -1020,11 +1017,10 @@ export class EditScence extends SGraphScene {
      */
     onDoubleClick(event: SMouseEvent): boolean {
         if (!this.isEditStatus) {
-            return true
+            return true;
         } else {
             return super.onDoubleClick(event);
         }
-
     } // Function onDoubleClick()
 
     /**
@@ -1057,65 +1053,65 @@ export class EditScence extends SGraphScene {
     }
 
     /**
-     * 管线item修改锚点 
-     * 
-    */
+     * 管线item修改锚点
+     *
+     */
     updateTipeAnc(event: SMouseEvent): void {
-        if (this.grabItem instanceof TipelineItem){
+        if (this.grabItem instanceof TipelineItem) {
             const anc = this.clickIsAnchor(event);
             if (anc) {
-                const p = anc.mapToScene(0, 0)
+                const p = anc.mapToScene(0, 0);
                 event.x = p.x;
                 event.y = p.y;
                 if (this.grabItem.status == SItemStatus.Edit) {
                     if (this.grabItem.curIndex == 0) {
-                        if (this.grabItem.startAnchor){
-                            this.grabItem.startAnchor.isConnected = false
-                            this.grabItem.startAnchor.parent.disconnect('changePos',this.grabItem);
+                        if (this.grabItem.startAnchor) {
+                            this.grabItem.startAnchor.isConnected = false;
+                            this.grabItem.startAnchor.parent.disconnect("changePos", this.grabItem);
                         }
                         anc.isConnected = true;
                         this.grabItem.startAnchor = anc;
-                        this.grabItem.anchor1ID = anc.id
-                        this.grabItem.node1Id = anc.parent.id
-                        anc.parent.connect('changePos', this.grabItem, this.grabItem.changePos)
+                        this.grabItem.anchor1ID = anc.id;
+                        this.grabItem.node1Id = anc.parent.id;
+                        anc.parent.connect("changePos", this.grabItem, this.grabItem.changePos);
                     }
-                    if (this.grabItem.curIndex == this.grabItem.pointList.length-1) {
-                        if (this.grabItem.endAnchor){
-                            this.grabItem.endAnchor.isConnected = false
-                            this.grabItem.endAnchor.parent.disconnect('changePos',this.grabItem);
+                    if (this.grabItem.curIndex == this.grabItem.pointList.length - 1) {
+                        if (this.grabItem.endAnchor) {
+                            this.grabItem.endAnchor.isConnected = false;
+                            this.grabItem.endAnchor.parent.disconnect("changePos", this.grabItem);
                         }
                         anc.isConnected = true;
                         this.grabItem.endAnchor = anc;
-                        this.grabItem.anchor2ID = anc.id
-                        this.grabItem.node2Id = anc.parent.id
-                        anc.parent.connect('changePos', this.grabItem, this.grabItem.changePos)
+                        this.grabItem.anchor2ID = anc.id;
+                        this.grabItem.node2Id = anc.parent.id;
+                        anc.parent.connect("changePos", this.grabItem, this.grabItem.changePos);
                     }
                 }
-                this.grabItem.onMouseUp(event)
-                return
+                this.grabItem.onMouseUp(event);
+                return;
             } else {
                 if (this.grabItem.status == SItemStatus.Edit) {
                     if (this.grabItem.curIndex == 0) {
-                        if (this.grabItem.startAnchor){
-                            this.grabItem.startAnchor.isConnected = false
-                            this.grabItem.startAnchor.parent.disconnect('changePos',this.grabItem);
+                        if (this.grabItem.startAnchor) {
+                            this.grabItem.startAnchor.isConnected = false;
+                            this.grabItem.startAnchor.parent.disconnect("changePos", this.grabItem);
                             this.grabItem.startAnchor = null;
-                            this.grabItem.anchor1ID = ''
-                            this.grabItem.node1Id = ''
+                            this.grabItem.anchor1ID = "";
+                            this.grabItem.node1Id = "";
                         }
                     }
-                    if (this.grabItem.curIndex == this.grabItem.pointList.length-1) {
-                        if (this.grabItem.endAnchor){
-                            this.grabItem.endAnchor.isConnected = false
-                            this.grabItem.endAnchor.parent.disconnect('changePos',this.grabItem);
+                    if (this.grabItem.curIndex == this.grabItem.pointList.length - 1) {
+                        if (this.grabItem.endAnchor) {
+                            this.grabItem.endAnchor.isConnected = false;
+                            this.grabItem.endAnchor.parent.disconnect("changePos", this.grabItem);
                             this.grabItem.endAnchor = null;
-                            this.grabItem.anchor2ID = ''
-                            this.grabItem.node2Id = ''
+                            this.grabItem.anchor2ID = "";
+                            this.grabItem.node2Id = "";
                         }
                     }
                 }
-                this.grabItem.onMouseUp(event)
-                return
+                this.grabItem.onMouseUp(event);
+                return;
             }
         }
     }
@@ -1123,7 +1119,7 @@ export class EditScence extends SGraphScene {
     /**
      * 设置直线结束Item
      *
-    */
+     */
     setLineItem(event: SMouseEvent): void {
         if (this.grabItem instanceof SLineMarkerItem) {
             const item = this.clickIsItem(event);
@@ -1136,34 +1132,35 @@ export class EditScence extends SGraphScene {
                 if (this.grabItem.status == SItemStatus.Create) {
                     // 点击在item内、创建状态且端点列表不为空时将直线结束端点和item绑定
                     if (this.grabItem.line.length) {
-                        if (this.grabItem.startItem ?.id == item.id) {
+                        if (this.grabItem.startItem?.id == item.id) {
                             this.grabItem.endItem = null;
                         } else {
                             this.grabItem.endItem = item;
                             this.grabItem.line[1] = new SPoint(event.x, event.y);
-                            item.connect('onMove', this.grabItem, this.grabItem.changePos);
+                            item.connect("onMove", this.grabItem, this.grabItem.changePos);
                         }
                     }
                     this.grabItem.onMouseDown(event);
-                    return
+                    return;
                 } else if (this.grabItem.status == SItemStatus.Edit) {
                     // 点击在item内、编辑状态且点击的为结束端点时
                     if (this.grabItem.curIndex == 1) {
                         // 直线关联的起始item是直线结束端点所在的item时,不吸附在点击item中心并将直线关联的结束item置为null
-                        if (this.grabItem.startItem ?.id == item.id) {
+                        if (this.grabItem.startItem?.id == item.id) {
                             this.grabItem.endItem = null;
-                        } else {// 反正吸附,关联
+                        } else {
+                            // 反正吸附,关联
                             this.grabItem.endItem = item;
                             this.grabItem.line[1] = new SPoint(event.x, event.y);
-                            item.connect('onMove', this.grabItem, this.grabItem.changePos);
+                            item.connect("onMove", this.grabItem, this.grabItem.changePos);
                         }
                     } else if (this.grabItem.curIndex == 0) {
-                        if (this.grabItem.endItem ?.id == item.id) {
+                        if (this.grabItem.endItem?.id == item.id) {
                             this.grabItem.startItem = null;
                         } else {
                             this.grabItem.startItem = item;
                             this.grabItem.line[0] = new SPoint(event.x, event.y);
-                            item.connect('onMove', this.grabItem, this.grabItem.changePos);
+                            item.connect("onMove", this.grabItem, this.grabItem.changePos);
                         }
                     }
                 }
@@ -1177,7 +1174,7 @@ export class EditScence extends SGraphScene {
                     }
                 } else {
                     this.grabItem.onMouseDown(event);
-                    return
+                    return;
                 }
             }
 
@@ -1260,13 +1257,15 @@ export class EditScence extends SGraphScene {
         let minIten = null;
         let len: number = -1;
         let itemList = this.Nodes.concat(this.Markers);
+        console.log(itemList);
         itemList.forEach((item) => {
             if (
                 item instanceof STextMarkerItem ||
                 item instanceof SImageMarkerItem ||
                 item instanceof SZoneLegendItem ||
                 item instanceof SFHFQZoneLegendItem ||
-                item instanceof SSCPZZoneLegendItem
+                item instanceof SSCPZZoneLegendItem ||
+                item instanceof SEquipmentItem
             ) {
                 let scenePoint = item.mapFromScene(event.x, event.y);
                 if (item.contains(scenePoint.x, scenePoint.y)) {

File diff ditekan karena terlalu besar
+ 185 - 0
src/components/test.json


+ 4 - 2
src/lib/items/SEquipmentItem.ts

@@ -20,6 +20,7 @@ export class SEquipmentItem extends SObjectItem {
         this._imgKey = v;
         this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/${v}`;
         this.img.connect("imgLoadOver", this, () => {
+            this.$emit("equipImgLoadOver");
             this.update();
         });
     }
@@ -82,8 +83,9 @@ export class SEquipmentItem extends SObjectItem {
         // 位置
         this.x = epData.Pos.X;
         this.y = epData.Pos.Y;
-        let url = epData.Properties?.StatusImage![0].ImageKey;
-        this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/${url}`;
+        let imageKey = epData.Properties?.StatusImage![0].ImageKey;
+        // this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/${url}`;
+        this.imgKey = imageKey;
         // 图片宽高
         this.img.width = epData.Size.Width;
         this.img.height = epData.Size.Height;