Quellcode durchsuchen

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

haojianlong vor 4 Jahren
Ursprung
Commit
bbdbf3aa6c

+ 18 - 4
src/components/editClass/big-edit/SBaseEditScene.ts

@@ -133,6 +133,7 @@ export class SBaseEditScene extends SGraphEditScene {
      * @param legendObj 图例样式
      */
     addEuqipment(event: SMouseEvent, legendObj: any): void {
+
         const data = {
             /** 名称 */
             name: '基础设备',
@@ -172,15 +173,21 @@ export class SBaseEditScene extends SGraphEditScene {
      * @param event 鼠标事件
      */
     addBasePipe(event: SMouseEvent) {
+        const anc = this.clickIsAnchor(event);
+        if (anc) {
+            const p = anc.mapToScene(0, 0)
+            anc.isConnected = true;
+            event.x = p.x;
+            event.y = p.y;;
+        };
         const data = {
             name: '管道',
-            type: "line",
-            pos: { x: 0, y: 0 },
+            lineType: '',
+            pointList: [{ x: event.x, y: event.y }],
             properties: {
-                type: "BasePolyline",
+                type: "BasePipe",
             },
             style: {
-                outLine: [{ x: event.x, y: event.y }],
                 default: {
                 }
             }
@@ -190,6 +197,13 @@ export class SBaseEditScene extends SGraphEditScene {
         item.selectable = true;
         this.addItem(item);
         this.grabItem = item;
+        // 起始锚点
+        item.startAnchor = anc;
+        if (anc) {
+            anc.parent?.connect('changePos', item, item.changePos)
+            item.anchor1ID = anc.id;
+            item.node1Id = anc.parent.id;
+        }
         item.connect("finishCreated", this, this.finishCreated);
         item.connect("onContextMenu", this, this.getItem);
         if (this.view) {

+ 2 - 2
src/components/editClass/big-edit/items/SBaseEquipment.ts

@@ -26,14 +26,14 @@
 
 import { SGraphItem } from "@persagy-web/graph/lib";
 import { Marker } from "./../types/Marker";
-import { SBaseImageEdit } from './../../edit/';
+import { SBaseIconTextEdit } from './../../edit/';
 
 /**
  * 编辑基础设备类
  *
  * @author 韩耀龙 <han_yao_long@163.com>
  */
-export class SBaseEquipment extends SBaseImageEdit {
+export class SBaseEquipment extends SBaseIconTextEdit {
 
     /**
      * 构造函数

+ 94 - 7
src/components/editClass/big-edit/items/SBasePipe.ts

@@ -24,11 +24,12 @@
  * *********************************************************************************************************************
  */
 
-import {SBasePolylineEdit} from './../../edit/';
-import {SGraphItem} from "@persagy-web/graph/lib/";
-import {Marker} from "./../types/Marker";
-import {SMouseEvent} from "@persagy-web/base/lib";
-
+import { SBasePolylineEdit } from './../../edit/';
+import { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib/";
+import { Relation } from "./../types/Relation";
+import { SMouseEvent, } from "@persagy-web/base/lib";
+import { Marker } from '..';
+import { SPoint } from "@persagy-web/draw"
 /**
  * 编辑基础管道
  *
@@ -37,14 +38,79 @@ import {SMouseEvent} from "@persagy-web/base/lib";
 export class SBasePipe extends SBasePolylineEdit {
     ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
+    /** 关系型数据 */
+    RelationData: Relation;
+    /** 起始锚点  */
+    startAnchor: SAnchorItem | null = null;
+    /** 结束锚点  */
+    endAnchor: SAnchorItem | null = null;
+    /** 关联锚点1ID  */
+    _anchor1ID: string = "";
+    get anchor1ID(): string {
+        return this._anchor1ID;
+    }
+    set anchor1ID(v: string) {
+        this._anchor1ID = v;
+        if (this.data) {
+            this.data.Anchor1ID = this._anchor1ID;
+        }
+    }
+    /** 关联锚点2ID  */
+    _anchor2ID: string = "";
+    get anchor2ID(): string {
+        return this._anchor2ID;
+    }
+    set anchor2ID(v: string) {
+        this._anchor2ID = v;
+        if (this.data) {
+            this.data.Anchor2ID = this._anchor2ID;
+        }
+    }
+
+    /** 关联节点1ID */
+    _node1Id: string = "";
+    get node1Id(): string {
+        return this._node1Id;
+    }
+    set node1Id(v: string) {
+        this._node1Id = v;
+        if (this.data) {
+            this.RelationData.node1Id = this._node1Id;
+        }
+    }
+
+    /** 关联节点2ID */
+    _node2Id: string = "";
+    get node2Id(): string {
+        return this._node2Id;
+    }
+    set node2Id(v: string) {
+        this._node2Id = v;
+        if (this.data) {
+            this.RelationData.node2Id = this._node2Id;
+        }
+    }
+
     /**
      * 构造函数
      *
      * @param parent    指向父对象
      * @param data      数据
      */
-    constructor(parent: SGraphItem | null, data: Marker) {
-        super(parent, data);
+    constructor(parent: SGraphItem | null, data: Relation) {
+        super(parent);
+        this.RelationData = data
+        const markData: Marker = {
+            name: data.name,
+            type: "line",
+            pos: { x: 0, y: 0 },
+            properties: data.properties,
+            style: Object.assign(data.style, {
+                outLine: data.pointList
+            })
+        }
+        markData.style.default.lineType = data.lineType;
+        this.data = markData;
     } // Constructor
 
     /**
@@ -59,6 +125,27 @@ export class SBasePipe extends SBasePolylineEdit {
     } // Function onMouseDown()
 
     /**
+     * 接收事件作出修改
+     */
+    changePos() {
+        if (this.startAnchor) {
+            // 判断删除equip后,不移动
+            if (this.startAnchor.parent && this.startAnchor.parent.parent) {
+                let p = this.startAnchor.mapToScene(0, 0);
+                this.pointList[0] = new SPoint(p.x - this.x, p.y - this.y)
+            }
+        }
+        if (this.endAnchor) {
+            // 删除equip后
+            if (this.endAnchor.parent && this.endAnchor.parent.parent) {
+                let p = this.endAnchor.mapToScene(0, 0);
+                this.pointList[
+                    this.pointList.length - 1
+                ] = new SPoint(p.x - this.x, p.y - this.y)
+            }
+        }
+    }
+    /**
      * 返回对象储存的相关数据
      *
      * @return 相关数据

+ 13 - 11
src/components/editClass/big-edit/types/Relation.ts

@@ -34,25 +34,27 @@ import { Point } from "./../../edit/type/Point";
  */
 export interface Relation {
     /** ID */
-    ID: string;
+    id?: string;
     /** 名称 */
-    Name: string;
+    name: string;
     /** 对应的图例 ID */
-    GraphElementId: string;
+    GraphElementId?: string;
     /** 关联节点 1_id */
-    Node1ID?: string;
+    node1Id?: string;
     /** 关联节点 2_id */
-    Node2ID?: string;
+    node2Id?: string;
     /** 关联锚点 1_id */
-    Anchor1ID?: string;
+    anchor1Id?: string;
     /** 关联锚点 2_id */
-    Anchor2ID?: string;
+    anchor2id?: string;
     /** 方向(0:无向,1:节点 1 到节点2,2:节点 2 到节点 1) */
-    Dir?: SRelationDir;
+    dir?: SRelationDir;
     /** 线类型(0:直线,1:水平/垂直线,2:曲线) */
-    LineType: string;
+    lineType: string;
     /** 线的顶点坐标 */
-    PointList: Point[];
+    pointList: Point[];
     /** 线的绘图样式 */
-    Properties?: any;
+    properties: any;
+    /** 线性样式 */
+    style: any
 } // Interface Relation

Datei-Diff unterdrückt, da er zu groß ist
+ 114 - 2
src/components/editClass/edit/SGraphEditScene.ts


+ 39 - 29
src/components/editClass/edit/items/SBaseIconTextEdit.ts

@@ -29,9 +29,9 @@ import {
     STextItem,
     SAnchorItem,
     SGraphItem,
-
 } from "@persagy-web/graph";
-import { SItemStatus, ItemOrder, } from "@persagy-web/big";
+import { SItemStatus, ItemOrder } from "@persagy-web/big";
+import { Anchor } from "@persagy-web/big/lib/types/topology/Anchor"
 import { SMouseEvent } from "@persagy-web/base";
 import {
     SSize,
@@ -40,7 +40,6 @@ import {
     SColor,
     SFont,
     SPoint
-
 } from "@persagy-web/draw";
 import { SGraphEdit } from "..";
 import { Marker } from "../type/Marker";
@@ -52,6 +51,17 @@ import { Marker } from "../type/Marker";
  */
 
 export class SBaseIconTextEdit extends SGraphEdit {
+    /** item 数据*/
+    _data: Marker | null = null;
+    get data(): Marker | null {
+        return this._data;
+    } // Get data
+    set data(v: Marker | null) {
+        this._data = v;
+        this.initData()
+        this.update();
+    } // Set data
+
     /** item 状态 */
     _status: SItemStatus = SItemStatus.Normal;
     get status(): SItemStatus {
@@ -245,53 +255,53 @@ export class SBaseIconTextEdit extends SGraphEdit {
      * @param parent  父节点
      * @param data    锚点数据
     */
-    constructor(parent: SGraphItem | null, data: Marker) {
+    constructor(parent: SGraphItem | null, data: Marker | null = null) {
         super(parent);
-        this.img.width = 32;
-        this.img.height = 32;
-        this.img.origin = new SPoint(
-            this.img.width * 0.5,
-            this.img.height * 0.5
-        );
-        this.img.connect("onMove", this, this.changeAnchorPoint.bind(this));
-        let anchorPoint: any = [];
-        if (data) {
-            anchorPoint = [
-                {
-                    x: data.pos.x,
-                    y: data.pos.y,
-                    id: '123'
-                }
-            ];
-            this.img.url = data.style.default.url
-        }
+        this.data = data;
+    } // Constructor
 
+    /**
+     * 计算并移动锚点的位置
+     */
+    initData() {
+        if (!this.data) return;
+        if (this.data.size) {
+            this.sWidth = this.data.size.width;
+            this.sHeight = this.data.size.height;
+        }
+        this.img.connect("onMove", this, this.changeAnchorPoint.bind(this));
+        const anchorPoint = [
+            { x: this.img.x, y: this.img.y, id: "" },
+        ];
         this.anchorList = anchorPoint.map(t => {
             let item = new SAnchorItem(this);
             if (t.id) {
                 item.id = t.id;
             }
-
             item.moveTo(t.x, t.y);
             return item;
         });
 
         this.showAnchor = false;
-        this.textItem.text = "";
-        this.textItem.font.size = 12;
+        this.textItem.text = this.data.style.default.text || '';
+        this.textItem.font.size = this.data.style.default.font || 12;
+        this.img.url = this.data.style.default.url;
+        // this.img.width = 100;
+        // this.img.height = 100;
+        this.x = this.data.pos.x;
+        this.y = this.data.pos.y
         // 偏移二分之一文本高度
         this.textItem.moveTo(
             this.img.width * 0.5,
             -(this.font.size * 1.25 * 0.5)
         );
-
         this.moveable = true;
         this.selectable = true;
-    } // Constructor
+    }// Function initData()
 
     /**
      * 计算并移动锚点的位置
-    */
+     */
     private changeAnchorPoint(): void {
         // 判断是否有锚点
         if (this.anchorList.length) {
@@ -419,4 +429,4 @@ export class SBaseIconTextEdit extends SGraphEdit {
             }
         }
     } // Function onDraw()
-} // Class SIconTextItem
+} // Class SBaseIconTextEdit

+ 21 - 5
src/components/editClass/edit/items/SBasePolylineEdit.ts

@@ -38,6 +38,7 @@ import {
 import { SGraphEdit } from ".."
 import { Marker } from "../type/Marker";
 
+
 /**
  * 折线编辑类
  *
@@ -45,7 +46,16 @@ import { Marker } from "../type/Marker";
  */
 export class SBasePolylineEdit extends SGraphEdit {
     /** 传入数据 */
-    data: Marker;
+    _data: Marker | null = null;
+    get data(): Marker | null {
+        return this._data;
+    } // Get data
+    set data(v: Marker | null) {
+        this._data = v;
+        this.initData()
+        this.update();
+    } // Set data
+
     /** X 坐标最小值 */
     private minX = Number.MAX_SAFE_INTEGER;
     /** X 坐标最大值 */
@@ -136,9 +146,17 @@ export class SBasePolylineEdit extends SGraphEdit {
      * @param parent    父级
      * @param data      折线数据
      */
-    constructor(parent: null | SGraphItem, data: Marker) {
+    constructor(parent: null | SGraphItem, data: Marker | null = null) {
         super(parent);
         this.data = data;
+    } // Constructor
+
+    /**
+     * 初始化 data 数据
+     */
+    initData() {
+        const data = this.data;
+        if (!data) return;
         this.name = data.name;
         this.moveTo(data.pos.x, data.pos.y);
         this.showSelect = false;
@@ -167,12 +185,10 @@ export class SBasePolylineEdit extends SGraphEdit {
                 if (data.style.default.lineStyle) {
                     this.lineStyle = data.style.default.lineStyle
                 }
-
             }
 
         }
-    } // Constructor
-
+    }// Function initData()
     /**
      * 添加点至数组中
      *

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

@@ -5,7 +5,6 @@ import { SMouseEvent } from "@persagy-web/base/lib";
 import { SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
 import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
 import { rgbaNum } from "./../big-edit/until";
-
 // 引入命令
 import { SGraphAddCommand } from "./../edit/commands/SGraphAddCommand"
 import { SColor, SFont } from '@persagy-web/draw/lib';
@@ -18,6 +17,7 @@ export class PTopoScene extends SBaseEditScene {
         this.selectContainer.connect("listChange", this, this.listChange);
     }
 
+
     /**
      * 选中返回的选中item回调方法
      *
@@ -49,6 +49,13 @@ export class PTopoScene extends SBaseEditScene {
      */
     onMouseDown(event: SMouseEvent): any {
         this.vueOnMouseDown(event) //外部调用
+        if (this.grabItem) {
+            if (this.grabItem instanceof SBasePipe) {
+                this.setTipeEndanchor(event)
+                return true;
+            }
+            return this.grabItem.onMouseDown(event);
+        }
         if (this.editCmd == "EditBaseLine") {
             this.addPolyLineArrow(event);
             this.clearCmdStatus();
@@ -89,6 +96,7 @@ export class PTopoScene extends SBaseEditScene {
         }
         else if (this.editCmd == "EditBasePipe") {
             this.addBasePipe(event);
+            // this.addBaseIconTextItem(event)
             this.clearCmdStatus();
         } else if (this.editCmd == "EditEuqipment" || this.legendObj) {
             this.addEuqipment(event, this.legendObj)
@@ -200,7 +208,7 @@ export class PTopoScene extends SBaseEditScene {
         if (isAll) {
             nodeList = this.root.children;
         } else {
-            nodeList =  this.selectContainer.itemList;
+            nodeList = this.selectContainer.itemList;
         };
         nodeList.forEach(item => {
             if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer)) {

+ 0 - 60
src/components/editview/leftToolBar/pipeList.vue

@@ -18,66 +18,6 @@
             <div></div>
             <span>冷/热水供水管</span>
           </li>
-          <li>
-            <div></div>
-            <span>冷/热水回水管</span>
-          </li>
-          <li>
-            <div></div>
-            <span>冷却回水管</span>
-          </li>
-          <li>
-            <div></div>
-            <span>膨胀水管</span>
-          </li>
-        </ul>
-      </li>
-      <li class="type-item">
-        <div class="type-title">
-          <i class="el-icon-caret-bottom"></i>
-          <span>空调水</span>
-        </div>
-        <ul class="itemList">
-          <li>
-            <div></div>
-            <span>冷/热水供水管</span>
-          </li>
-          <li>
-            <div></div>
-            <span>冷/热水回水管</span>
-          </li>
-          <li>
-            <div></div>
-            <span>冷却回水管</span>
-          </li>
-          <li>
-            <div></div>
-            <span>膨胀水管</span>
-          </li>
-        </ul>
-      </li>
-      <li class="type-item">
-        <div class="type-title">
-          <i class="el-icon-caret-bottom"></i>
-          <span>给排水</span>
-        </div>
-        <ul class="itemList">
-          <li>
-            <div></div>
-            <span>冷/热水供水管</span>
-          </li>
-          <li>
-            <div></div>
-            <span>冷/热水回水管</span>
-          </li>
-          <li>
-            <div></div>
-            <span>冷却回水管</span>
-          </li>
-          <li>
-            <div></div>
-            <span>膨胀水管</span>
-          </li>
         </ul>
       </li>
     </ul>