|
@@ -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 相关数据
|