|
@@ -29,9 +29,9 @@ import {
|
|
STextItem,
|
|
STextItem,
|
|
SAnchorItem,
|
|
SAnchorItem,
|
|
SGraphItem,
|
|
SGraphItem,
|
|
-
|
|
|
|
} from "@persagy-web/graph";
|
|
} 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 { SMouseEvent } from "@persagy-web/base";
|
|
import {
|
|
import {
|
|
SSize,
|
|
SSize,
|
|
@@ -40,7 +40,6 @@ import {
|
|
SColor,
|
|
SColor,
|
|
SFont,
|
|
SFont,
|
|
SPoint
|
|
SPoint
|
|
-
|
|
|
|
} from "@persagy-web/draw";
|
|
} from "@persagy-web/draw";
|
|
import { SGraphEdit } from "..";
|
|
import { SGraphEdit } from "..";
|
|
import { Marker } from "../type/Marker";
|
|
import { Marker } from "../type/Marker";
|
|
@@ -52,6 +51,17 @@ import { Marker } from "../type/Marker";
|
|
*/
|
|
*/
|
|
|
|
|
|
export class SBaseIconTextEdit extends SGraphEdit {
|
|
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 状态 */
|
|
/** item 状态 */
|
|
_status: SItemStatus = SItemStatus.Normal;
|
|
_status: SItemStatus = SItemStatus.Normal;
|
|
get status(): SItemStatus {
|
|
get status(): SItemStatus {
|
|
@@ -245,53 +255,53 @@ export class SBaseIconTextEdit extends SGraphEdit {
|
|
* @param parent 父节点
|
|
* @param parent 父节点
|
|
* @param data 锚点数据
|
|
* @param data 锚点数据
|
|
*/
|
|
*/
|
|
- constructor(parent: SGraphItem | null, data: Marker) {
|
|
|
|
|
|
+ constructor(parent: SGraphItem | null, data: Marker | null = null) {
|
|
super(parent);
|
|
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 => {
|
|
this.anchorList = anchorPoint.map(t => {
|
|
let item = new SAnchorItem(this);
|
|
let item = new SAnchorItem(this);
|
|
if (t.id) {
|
|
if (t.id) {
|
|
item.id = t.id;
|
|
item.id = t.id;
|
|
}
|
|
}
|
|
-
|
|
|
|
item.moveTo(t.x, t.y);
|
|
item.moveTo(t.x, t.y);
|
|
return item;
|
|
return item;
|
|
});
|
|
});
|
|
|
|
|
|
this.showAnchor = false;
|
|
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.textItem.moveTo(
|
|
this.img.width * 0.5,
|
|
this.img.width * 0.5,
|
|
-(this.font.size * 1.25 * 0.5)
|
|
-(this.font.size * 1.25 * 0.5)
|
|
);
|
|
);
|
|
-
|
|
|
|
this.moveable = true;
|
|
this.moveable = true;
|
|
this.selectable = true;
|
|
this.selectable = true;
|
|
- } // Constructor
|
|
|
|
|
|
+ }// Function initData()
|
|
|
|
|
|
/**
|
|
/**
|
|
* 计算并移动锚点的位置
|
|
* 计算并移动锚点的位置
|
|
- */
|
|
|
|
|
|
+ */
|
|
private changeAnchorPoint(): void {
|
|
private changeAnchorPoint(): void {
|
|
// 判断是否有锚点
|
|
// 判断是否有锚点
|
|
if (this.anchorList.length) {
|
|
if (this.anchorList.length) {
|
|
@@ -419,4 +429,4 @@ export class SBaseIconTextEdit extends SGraphEdit {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} // Function onDraw()
|
|
} // Function onDraw()
|
|
-} // Class SIconTextItem
|
|
|
|
|
|
+} // Class SBaseIconTextEdit
|