|
@@ -28,8 +28,9 @@ import { SBasePolylineEdit } from './../../edit/';
|
|
import { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib/";
|
|
import { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib/";
|
|
import { Relation } from "./../types/Relation";
|
|
import { Relation } from "./../types/Relation";
|
|
import { SMouseEvent, } from "@persagy-web/base/lib";
|
|
import { SMouseEvent, } from "@persagy-web/base/lib";
|
|
-import { Marker } from '..';
|
|
|
|
-import { SPoint } from "@persagy-web/draw"
|
|
|
|
|
|
+import { SPoint, SColor } from "@persagy-web/draw";
|
|
|
|
+import { SLineStyle } from "@persagy-web/graph/";
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 编辑基础管道
|
|
* 编辑基础管道
|
|
*
|
|
*
|
|
@@ -39,31 +40,39 @@ export class SBasePipe extends SBasePolylineEdit {
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//属性
|
|
//属性
|
|
/** 关系型数据 */
|
|
/** 关系型数据 */
|
|
- RelationData: Relation;
|
|
|
|
|
|
+ _relationData: Relation | null = null;
|
|
|
|
+ set relationData(val) {
|
|
|
|
+ this._relationData = val;
|
|
|
|
+ this.initData()
|
|
|
|
+ } // set legendData()
|
|
|
|
+ get relationData(): Relation | null {
|
|
|
|
+ return this._relationData
|
|
|
|
+ } // get legendData()
|
|
|
|
+
|
|
/** 起始锚点 */
|
|
/** 起始锚点 */
|
|
startAnchor: SAnchorItem | null = null;
|
|
startAnchor: SAnchorItem | null = null;
|
|
/** 结束锚点 */
|
|
/** 结束锚点 */
|
|
endAnchor: SAnchorItem | null = null;
|
|
endAnchor: SAnchorItem | null = null;
|
|
/** 关联锚点1ID */
|
|
/** 关联锚点1ID */
|
|
- _anchor1ID: string = "";
|
|
|
|
- get anchor1ID(): string {
|
|
|
|
- return this._anchor1ID;
|
|
|
|
|
|
+ _anchor1Id: string = "";
|
|
|
|
+ get anchor1Id(): string {
|
|
|
|
+ return this._anchor1Id;
|
|
}
|
|
}
|
|
- set anchor1ID(v: string) {
|
|
|
|
- this._anchor1ID = v;
|
|
|
|
- if (this.data) {
|
|
|
|
- this.data.Anchor1ID = this._anchor1ID;
|
|
|
|
|
|
+ set anchor1Id(v: string) {
|
|
|
|
+ this._anchor1Id = v;
|
|
|
|
+ if (this.relationData) {
|
|
|
|
+ this.relationData.anchor1Id = this._anchor1Id;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/** 关联锚点2ID */
|
|
/** 关联锚点2ID */
|
|
- _anchor2ID: string = "";
|
|
|
|
- get anchor2ID(): string {
|
|
|
|
- return this._anchor2ID;
|
|
|
|
|
|
+ _anchor2Id: string = "";
|
|
|
|
+ get anchor2Id(): string {
|
|
|
|
+ return this._anchor2Id;
|
|
}
|
|
}
|
|
- set anchor2ID(v: string) {
|
|
|
|
- this._anchor2ID = v;
|
|
|
|
- if (this.data) {
|
|
|
|
- this.data.Anchor2ID = this._anchor2ID;
|
|
|
|
|
|
+ set anchor2Id(v: string) {
|
|
|
|
+ this._anchor2Id = v;
|
|
|
|
+ if (this.relationData) {
|
|
|
|
+ this.relationData.anchor2Id = this._anchor2Id;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -74,8 +83,8 @@ export class SBasePipe extends SBasePolylineEdit {
|
|
}
|
|
}
|
|
set node1Id(v: string) {
|
|
set node1Id(v: string) {
|
|
this._node1Id = v;
|
|
this._node1Id = v;
|
|
- if (this.data) {
|
|
|
|
- this.RelationData.node1Id = this._node1Id;
|
|
|
|
|
|
+ if (this.relationData) {
|
|
|
|
+ this.relationData.node1Id = this._node1Id;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -86,8 +95,8 @@ export class SBasePipe extends SBasePolylineEdit {
|
|
}
|
|
}
|
|
set node2Id(v: string) {
|
|
set node2Id(v: string) {
|
|
this._node2Id = v;
|
|
this._node2Id = v;
|
|
- if (this.data) {
|
|
|
|
- this.RelationData.node2Id = this._node2Id;
|
|
|
|
|
|
+ if (this.relationData) {
|
|
|
|
+ this.relationData.node2Id = this._node2Id;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -99,21 +108,45 @@ export class SBasePipe extends SBasePolylineEdit {
|
|
*/
|
|
*/
|
|
constructor(parent: SGraphItem | null, data: Relation) {
|
|
constructor(parent: SGraphItem | null, data: Relation) {
|
|
super(parent);
|
|
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;
|
|
|
|
|
|
+ this.relationData = data;
|
|
|
|
+
|
|
} // Constructor
|
|
} // Constructor
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * 设置relationData 时 对 item 做设置
|
|
|
|
+ */
|
|
|
|
+ initData() {
|
|
|
|
+ const data = this.relationData;
|
|
|
|
+ console.log('12313131',data)
|
|
|
|
+ if (!data) return;
|
|
|
|
+ // 名称
|
|
|
|
+ this.name = data.name;
|
|
|
|
+ // 线样式
|
|
|
|
+ this.lineStyle = SLineStyle[data.lineType] ? SLineStyle[data.lineType] : SLineStyle.Solid;
|
|
|
|
+ // 折线点
|
|
|
|
+ if (data.pointList) {
|
|
|
|
+ let setPointList: SPoint[];
|
|
|
|
+ setPointList = data.pointList.map(i => {
|
|
|
|
+ return new SPoint(i.x, i.y)
|
|
|
|
+ });
|
|
|
|
+ this.pointList = setPointList;
|
|
|
|
+ }
|
|
|
|
+ // 样式
|
|
|
|
+ if (data.style && data.style.default) {
|
|
|
|
+ // 颜色
|
|
|
|
+ if (data.style.default.strokeColor) {
|
|
|
|
+ this.strokeColor = new SColor(data.style.default.strokeColor)
|
|
|
|
+ }
|
|
|
|
+ // 线宽
|
|
|
|
+ if (data.style.default.lineWidth) {
|
|
|
|
+ this.lineWidth = data.style.default.lineWidth
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ }// Funciton initData
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 鼠标按下事件
|
|
* 鼠标按下事件
|
|
*
|
|
*
|
|
* @param event 保存事件参数
|
|
* @param event 保存事件参数
|
|
@@ -151,6 +184,21 @@ export class SBasePipe extends SBasePolylineEdit {
|
|
* @return 相关数据
|
|
* @return 相关数据
|
|
*/
|
|
*/
|
|
toData(): any {
|
|
toData(): any {
|
|
- return super.toData()
|
|
|
|
|
|
+ this.moveToOrigin();
|
|
|
|
+ const data = this.relationData;
|
|
|
|
+ console.log('todata',data)
|
|
|
|
+ if (!data) return;
|
|
|
|
+ if (this.pointList.length) {
|
|
|
|
+ const Line = this.pointList.map(pos => {
|
|
|
|
+ return {
|
|
|
|
+ x: pos.x,
|
|
|
|
+ y: pos.y
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ data.pointList = Line;
|
|
|
|
+ }
|
|
|
|
+ data.style.default.strokeColor = this.strokeColor.value;
|
|
|
|
+ data.style.default.lineWidth = this.lineWidth;
|
|
|
|
+ return data
|
|
} // Function toData()
|
|
} // Function toData()
|
|
} // Class SBasePipe
|
|
} // Class SBasePipe
|