|
@@ -41,7 +41,7 @@ import {
|
|
SFont,
|
|
SFont,
|
|
SPoint
|
|
SPoint
|
|
} from "@persagy-web/draw";
|
|
} from "@persagy-web/draw";
|
|
-import { SGraphEdit } from "..";
|
|
|
|
|
|
+import { SGraphEdit, SBaseTextEdit } from "..";
|
|
import { Marker } from "../type/Marker";
|
|
import { Marker } from "../type/Marker";
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -71,15 +71,21 @@ export class SBaseIconTextEdit extends SGraphEdit {
|
|
this._status = v;
|
|
this._status = v;
|
|
if (v == SItemStatus.Normal) {
|
|
if (v == SItemStatus.Normal) {
|
|
this.moveable = true;
|
|
this.moveable = true;
|
|
- this.textItem.moveable = false;
|
|
|
|
|
|
+ this.textItemList.map(item => {
|
|
|
|
+ item.moveable = false
|
|
|
|
+ });
|
|
this.img.moveable = false;
|
|
this.img.moveable = false;
|
|
} else if (v == SItemStatus.Edit) {
|
|
} else if (v == SItemStatus.Edit) {
|
|
this.moveable = false;
|
|
this.moveable = false;
|
|
- this.textItem.moveable = true;
|
|
|
|
|
|
+ this.textItemList.map(item => {
|
|
|
|
+ item.moveable = true
|
|
|
|
+ });
|
|
this.img.moveable = true;
|
|
this.img.moveable = true;
|
|
} else if (v == SItemStatus.Create) {
|
|
} else if (v == SItemStatus.Create) {
|
|
this.moveable = true;
|
|
this.moveable = true;
|
|
- this.textItem.moveable = false;
|
|
|
|
|
|
+ this.textItemList.map(item => {
|
|
|
|
+ item.moveable = false
|
|
|
|
+ });
|
|
this.img.moveable = false;
|
|
this.img.moveable = false;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -100,9 +106,13 @@ export class SBaseIconTextEdit extends SGraphEdit {
|
|
|
|
|
|
this._showText = v;
|
|
this._showText = v;
|
|
if (v) {
|
|
if (v) {
|
|
- this.textItem.show();
|
|
|
|
|
|
+ this.textItemList.map(item => {
|
|
|
|
+ item.show()
|
|
|
|
+ });
|
|
} else {
|
|
} else {
|
|
- this.textItem.hide();
|
|
|
|
|
|
+ this.textItemList.map(item => {
|
|
|
|
+ item.hide()
|
|
|
|
+ });
|
|
}
|
|
}
|
|
} // Set showText
|
|
} // Set showText
|
|
|
|
|
|
@@ -137,11 +147,15 @@ export class SBaseIconTextEdit extends SGraphEdit {
|
|
this._isActive = v;
|
|
this._isActive = v;
|
|
if (v) {
|
|
if (v) {
|
|
this.cursor = "pointer";
|
|
this.cursor = "pointer";
|
|
- this.textItem.cursor = "pointer";
|
|
|
|
|
|
+ this.textItemList.map(item => {
|
|
|
|
+ item.cursor = "pointer"
|
|
|
|
+ });
|
|
this.img.cursor = "pointer";
|
|
this.img.cursor = "pointer";
|
|
} else {
|
|
} else {
|
|
this.cursor = "auto";
|
|
this.cursor = "auto";
|
|
- this.textItem.cursor = "auto";
|
|
|
|
|
|
+ this.textItemList.map(item => {
|
|
|
|
+ item.cursor = "auto"
|
|
|
|
+ });
|
|
this.img.cursor = "auto";
|
|
this.img.cursor = "auto";
|
|
}
|
|
}
|
|
|
|
|
|
@@ -218,36 +232,41 @@ export class SBaseIconTextEdit extends SGraphEdit {
|
|
});
|
|
});
|
|
} // Set showAnchor
|
|
} // Set showAnchor
|
|
|
|
|
|
- /** 文本内容 */
|
|
|
|
- get text(): string {
|
|
|
|
- return this.textItem.text;
|
|
|
|
- } // Get text
|
|
|
|
- set text(v: string) {
|
|
|
|
- this.textItem.text = v;
|
|
|
|
- this.update();
|
|
|
|
- } // Set text
|
|
|
|
-
|
|
|
|
/** 文本颜色 */
|
|
/** 文本颜色 */
|
|
get color(): SColor {
|
|
get color(): SColor {
|
|
- return this.textItem.color;
|
|
|
|
|
|
+ if (this.textItemList.length) {
|
|
|
|
+ return this.textItemList[0].color;
|
|
|
|
+ } else {
|
|
|
|
+ return new SColor();
|
|
|
|
+ }
|
|
} // Get color
|
|
} // Get color
|
|
set color(v: SColor) {
|
|
set color(v: SColor) {
|
|
- this.textItem.color = v;
|
|
|
|
|
|
+ this.textItemList.forEach(item => {
|
|
|
|
+ item.color = v;
|
|
|
|
+ })
|
|
this.update();
|
|
this.update();
|
|
} // Set color
|
|
} // Set color
|
|
|
|
|
|
/** 文本字体 */
|
|
/** 文本字体 */
|
|
get font(): SFont {
|
|
get font(): SFont {
|
|
- return this.textItem.font;
|
|
|
|
|
|
+ if (this.textItemList.length) {
|
|
|
|
+ return this.textItemList[0].font
|
|
|
|
+ } else {
|
|
|
|
+ return new SFont
|
|
|
|
+ }
|
|
} // Get font
|
|
} // Get font
|
|
|
|
+
|
|
set font(v: SFont) {
|
|
set font(v: SFont) {
|
|
- this.textItem.font = v;
|
|
|
|
|
|
+ this.textItemList.forEach(item => {
|
|
|
|
+ item.font = v
|
|
|
|
+ })
|
|
this.update();
|
|
this.update();
|
|
} // Set font
|
|
} // Set font
|
|
/** 图像 */
|
|
/** 图像 */
|
|
img: SImageItem = new SImageItem(this);
|
|
img: SImageItem = new SImageItem(this);
|
|
- /** 文本 */
|
|
|
|
- textItem: STextItem = new STextItem(this);
|
|
|
|
|
|
+
|
|
|
|
+ /** 文本数组 */
|
|
|
|
+ textItemList: SBaseTextEdit[] = [];
|
|
|
|
|
|
/**
|
|
/**
|
|
* 构造体
|
|
* 构造体
|
|
@@ -283,23 +302,61 @@ export class SBaseIconTextEdit extends SGraphEdit {
|
|
});
|
|
});
|
|
|
|
|
|
this.showAnchor = false;
|
|
this.showAnchor = false;
|
|
- this.textItem.text = this.data.style.default.text || '';
|
|
|
|
- this.textItem.font.size = this.data.style.default.font || 12;
|
|
|
|
|
|
+ // 对文本数据进行处理
|
|
|
|
+ if (this.data.style && this.data.style.default && this.data.style.default.textList) {
|
|
|
|
+ const textList = this.data.style.default.textList;
|
|
|
|
+ if (textList.length) {
|
|
|
|
+ const textItemList: any[] = [];
|
|
|
|
+ textList.forEach((item: any, index: number) => {
|
|
|
|
+ let obj = new SBaseTextEdit(this, null);
|
|
|
|
+ obj.propertyData = item;
|
|
|
|
+ obj.text = item.text;
|
|
|
|
+ if (item.pos) {
|
|
|
|
+ obj.moveTo(item.pos.x, item.pos.x)
|
|
|
|
+ } else {
|
|
|
|
+ obj.moveTo(
|
|
|
|
+ this.img.width * 0.5,
|
|
|
|
+ -(this.font.size * 1.25 * 0.5) + (index) * 10
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+ obj.font.size = item.font;
|
|
|
|
+ obj.strokeColor = new SColor(item.color);
|
|
|
|
+ textItemList.push(obj)
|
|
|
|
+ })
|
|
|
|
+ this.textItemList = textItemList
|
|
|
|
+ }
|
|
|
|
+ }
|
|
this.img.url = this.data.style.default.url;
|
|
this.img.url = this.data.style.default.url;
|
|
- // this.img.width = 100;
|
|
|
|
- // this.img.height = 100;
|
|
|
|
|
|
+
|
|
this.x = this.data.pos.x;
|
|
this.x = this.data.pos.x;
|
|
this.y = this.data.pos.y
|
|
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.moveable = true;
|
|
this.selectable = true;
|
|
this.selectable = true;
|
|
}// Function initData()
|
|
}// Function initData()
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * 添加文本
|
|
|
|
+ *
|
|
|
|
+ * @param item 文本图例
|
|
|
|
+ */
|
|
|
|
+ addTextItem(item: SBaseTextEdit) {
|
|
|
|
+ this.textItemList.push(item)
|
|
|
|
+ }// Function addTextItem
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 删除文本
|
|
|
|
+ *
|
|
|
|
+ * @param index 索引
|
|
|
|
+ */
|
|
|
|
+ removeTextItem(index: number) {
|
|
|
|
+ let [delteItem] = this.textItemList.splice(index, 1);
|
|
|
|
+ if (this.scene) {
|
|
|
|
+ this.scene.removeItem(delteItem)
|
|
|
|
+ }
|
|
|
|
+ }// Function removeTextItem
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 计算并移动锚点的位置
|
|
* 计算并移动锚点的位置
|
|
*/
|
|
*/
|
|
private changeAnchorPoint(): void {
|
|
private changeAnchorPoint(): void {
|
|
@@ -373,13 +430,14 @@ export class SBaseIconTextEdit extends SGraphEdit {
|
|
.boundingRect()
|
|
.boundingRect()
|
|
.adjusted(this.img.pos.x, this.img.pos.y, 0, 0);
|
|
.adjusted(this.img.pos.x, this.img.pos.y, 0, 0);
|
|
if (this.showText) {
|
|
if (this.showText) {
|
|
- rect = rect.unioned(
|
|
|
|
- this.textItem
|
|
|
|
- .boundingRect()
|
|
|
|
- .adjusted(this.textItem.pos.x, this.textItem.pos.y, 0, 0)
|
|
|
|
- );
|
|
|
|
|
|
+ this.textItemList.forEach(item => {
|
|
|
|
+ rect = rect.unioned(
|
|
|
|
+ item
|
|
|
|
+ .boundingRect()
|
|
|
|
+ .adjusted(item.pos.x, item.pos.y, 0, 0)
|
|
|
|
+ );
|
|
|
|
+ })
|
|
}
|
|
}
|
|
-
|
|
|
|
return rect.adjusted(-5, -5, 10, 10);
|
|
return rect.adjusted(-5, -5, 10, 10);
|
|
} // Function boundingRect()
|
|
} // Function boundingRect()
|
|
|
|
|
|
@@ -441,7 +499,7 @@ export class SBaseIconTextEdit extends SGraphEdit {
|
|
this.data.size.width = this.sWidth;
|
|
this.data.size.width = this.sWidth;
|
|
this.data.size.height = this.sHeight;
|
|
this.data.size.height = this.sHeight;
|
|
}
|
|
}
|
|
- this.data.style.default.text = this.textItem.text;
|
|
|
|
|
|
+ this.data.style.default.text = this.textItemList.text;
|
|
this.data.pos.x = this.pos.x;
|
|
this.data.pos.x = this.pos.x;
|
|
this.data.pos.y = this.pos.y;
|
|
this.data.pos.y = this.pos.y;
|
|
this.data.style.default.zorder = this.zOrder;
|
|
this.data.style.default.zorder = this.zOrder;
|
|
@@ -460,18 +518,12 @@ export class SBaseIconTextEdit extends SGraphEdit {
|
|
return item;
|
|
return item;
|
|
});
|
|
});
|
|
|
|
|
|
- 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;
|
|
|
|
|
|
+ // this.textItemList.font.size = this.data.style.default.font || 12;
|
|
|
|
+ // this.img.url = this.data.style.default.url;
|
|
|
|
+ if (this.data) {
|
|
|
|
+ this.x = this.data.pos.x;
|
|
|
|
+ this.y = this.data.pos.y
|
|
|
|
+
|
|
|
|
+ }
|
|
} // Function toData()
|
|
} // Function toData()
|
|
} // Class SBaseIconTextEdit
|
|
} // Class SBaseIconTextEdit
|