|
@@ -25,10 +25,10 @@
|
|
|
*/
|
|
|
|
|
|
import { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib";
|
|
|
+import { SPoint } from "@persagy-web/draw";
|
|
|
import { Example } from "../index";
|
|
|
import { SBaseIconTextEdit, SBaseTextEdit } from "@persagy-web/edit";
|
|
|
import { svgTobase64, uuid } from "@persagy-web/big-edit/lib/until";
|
|
|
-import { SColor, SFont } from "@persagy-web/draw/lib";
|
|
|
/**
|
|
|
* 编辑基础设备类
|
|
|
*
|
|
@@ -58,36 +58,39 @@ export class SPlanEquipment extends SBaseIconTextEdit {
|
|
|
} // get url()
|
|
|
|
|
|
/** 公式 */
|
|
|
- private _formula: string = "";
|
|
|
+ private _formula: any[] = [];
|
|
|
+ // private _formula: string = "";
|
|
|
set formula(val) {
|
|
|
this._formula = val;
|
|
|
try {
|
|
|
- const textList = JSON.parse(this._formula);
|
|
|
+ // const textList = JSON.parse(this._formula);
|
|
|
if (this.scene) {
|
|
|
this.textItemList.forEach((textItem) => {
|
|
|
this.scene.removeItem(textItem);
|
|
|
});
|
|
|
}
|
|
|
- if (textList.length) {
|
|
|
+ if (this._formula.length) {
|
|
|
+ // if (textList.length) {
|
|
|
const textItemList: any[] = [];
|
|
|
- textList.forEach((item: any, index: number) => {
|
|
|
+ this._formula.forEach((item: any, index: number) => {
|
|
|
+ // textList.forEach((item: any, index: number) => {
|
|
|
let obj = new SBaseTextEdit(this, null);
|
|
|
- // obj.propertyData = item;
|
|
|
- obj.text = item;
|
|
|
- // 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.propertyData = item;
|
|
|
+ obj.text = item.name;
|
|
|
+ if (item.pos) {
|
|
|
+ obj.moveTo(item.pos.x, item.pos.y);
|
|
|
+ } else {
|
|
|
+ obj.moveTo(this.img.width * 0.5, this.font.size * (index - 0.125 - 0.5 * this._formula.length));
|
|
|
+ }
|
|
|
// TODO: obj.moveTo(this.img.width * 0.5, -(this.font.size * 1.25 * 0.5) + (index * this.font.size) - (textList.length - 1) * 0.5 * this.font.size);
|
|
|
- obj.moveTo(this.img.width * 0.5, this.font.size * (index - 0.125 - 0.5 * textList.length));
|
|
|
+ // obj.moveTo(this.img.width * 0.5, this.font.size * (index - 0.125 - 0.5 * textList.length));
|
|
|
+ obj.connect("onMove", this, this.textMove.bind(this));
|
|
|
obj.font = this.font;
|
|
|
obj.color = this.color;
|
|
|
obj.isTransform = false;
|
|
|
obj.showSelect = false;
|
|
|
+ console.log(obj);
|
|
|
+
|
|
|
textItemList.push(obj);
|
|
|
});
|
|
|
this.textItemList = textItemList;
|
|
@@ -99,7 +102,8 @@ export class SPlanEquipment extends SBaseIconTextEdit {
|
|
|
console.error("公式数据错误", error);
|
|
|
}
|
|
|
} // set formula()
|
|
|
- get formula(): string {
|
|
|
+ // get formula(): string {
|
|
|
+ get formula(): any[] {
|
|
|
return this._formula;
|
|
|
} // get formula()
|
|
|
|
|
@@ -158,7 +162,7 @@ export class SPlanEquipment extends SBaseIconTextEdit {
|
|
|
this.id = this.legendData.id ? this.legendData.id : "";
|
|
|
// this.textItemList[0].text = this.legendData.codeName ? this.legendData.codeName : "";
|
|
|
this.showAnchor = false;
|
|
|
- this.anotherMsg = this.legendData?.anotherMsg ? this.legendData.anotherMsg : "";
|
|
|
+ this.anotherMsg = this.legendData?.properties?.anotherMsg ? this.legendData.properties.anotherMsg : "";
|
|
|
if (this.legendData.pos?.x && this.legendData.pos?.y) {
|
|
|
this.x = this.legendData.pos.x;
|
|
|
this.y = this.legendData.pos.y;
|
|
@@ -176,6 +180,16 @@ export class SPlanEquipment extends SBaseIconTextEdit {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 文本位置移动回调函数
|
|
|
+ * @param textItem 移动的文本元素
|
|
|
+ * @param pointList 移动前后位置坐标信息
|
|
|
+ */
|
|
|
+ textMove(textItem: SBaseTextEdit, pointList: SPoint[]) {
|
|
|
+ this.moveText();
|
|
|
+ }
|
|
|
+ moveText() {}
|
|
|
+
|
|
|
+ /**
|
|
|
* 返回对象储存的相关数据
|
|
|
*
|
|
|
* @return 对象储存的相关数据
|
|
@@ -184,9 +198,12 @@ export class SPlanEquipment extends SBaseIconTextEdit {
|
|
|
if (this.legendData) {
|
|
|
// 位置
|
|
|
const objExtInfo = {
|
|
|
- id: this.id,
|
|
|
+ attachObjectIds: [this.id],
|
|
|
pos: this.pos,
|
|
|
- anotherMsg: this.anotherMsg,
|
|
|
+ properties: {
|
|
|
+ id: this.id,
|
|
|
+ anotherMsg: this.anotherMsg,
|
|
|
+ },
|
|
|
};
|
|
|
return objExtInfo;
|
|
|
}
|