|
@@ -9,51 +9,119 @@ export class SEquipmentItem extends SObjectItem {
|
|
|
textArr: STextItem[] = [];
|
|
|
/** imgkey值 */
|
|
|
_imgKey: string = "";
|
|
|
+ /** 设备状态值 */
|
|
|
+ _status: string = "Running";
|
|
|
+ /**保存设备数据 */
|
|
|
+ _epData: EquipmentData | any = {};
|
|
|
get imgKey(): string {
|
|
|
return this._imgKey;
|
|
|
}
|
|
|
set imgKey(v: string) {
|
|
|
this._imgKey = v;
|
|
|
this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/${v}`;
|
|
|
- this.update();
|
|
|
+ this.img.connect("imgLoadOver", this, () => {
|
|
|
+ this.update();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ get status(): string {
|
|
|
+ return this._status;
|
|
|
+ }
|
|
|
+ set status(v: string) {
|
|
|
+ this._status = v;
|
|
|
+ this.updateStatus();
|
|
|
+ }
|
|
|
+ // 将EquipmentData保存起来,以便修改status时,可以找到StatusImage
|
|
|
+ get epData(): EquipmentData {
|
|
|
+ return this._epData;
|
|
|
+ }
|
|
|
+ set epData(v: EquipmentData) {
|
|
|
+ this._epData = v;
|
|
|
}
|
|
|
/**
|
|
|
*
|
|
|
* @param parent 父类
|
|
|
- * @param textInfo 需要展示的节点信息
|
|
|
+ * @param epData 需要展示的节点信息
|
|
|
*/
|
|
|
- constructor(parent: SGraphItem | null, textInfo?: EquipmentData) {
|
|
|
+ constructor(parent: SGraphItem | null, epData: EquipmentData) {
|
|
|
super(parent);
|
|
|
- console.log(textInfo);
|
|
|
- this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/14d978b7edd346f088d6cfb53ada4070`;
|
|
|
- this.img.width = 24;
|
|
|
- this.img.height = 24;
|
|
|
+ console.log(epData);
|
|
|
+ epData && (this.epData = epData);
|
|
|
this.moveable = true;
|
|
|
+ this.id = epData.ID;
|
|
|
this.zOrder = ItemOrder.textOrder;
|
|
|
this.textArr = [];
|
|
|
- /* if (textInfo) {
|
|
|
- let x = textInfo.Pos.X;
|
|
|
- let y = textInfo.Pos.Y;
|
|
|
- this.x = x;
|
|
|
- this.y = y;
|
|
|
- } */
|
|
|
// 有信息点信息时,绘制信息点信息
|
|
|
- if (textInfo) {
|
|
|
+ // 加载设备
|
|
|
+ if (epData && epData?.Pos) {
|
|
|
+ this.loadEquipment(epData);
|
|
|
+ } else if (epData) {
|
|
|
+ //绘制设备
|
|
|
+ this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/14d978b7edd346f088d6cfb53ada4070`;
|
|
|
+ this.img.width = 24;
|
|
|
+ this.img.height = 24;
|
|
|
+ //添加设备
|
|
|
let index = 0;
|
|
|
- for (let key in textInfo) {
|
|
|
+ for (let key in epData) {
|
|
|
let textItem = new STextItem(this);
|
|
|
textItem.moveable = true;
|
|
|
textItem.backgroundColor = SColor.White;
|
|
|
textItem.font.size = 14;
|
|
|
textItem.moveTo(17, index * 20 - 10);
|
|
|
// @ts-ignore
|
|
|
- textItem.text = `${key} : ${textInfo[key]}`;
|
|
|
+ textItem.text = `${key} : ${epData[key]}`;
|
|
|
this.textArr.push(textItem);
|
|
|
index++;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+ /**
|
|
|
+ * 加载设备
|
|
|
+ * @param epData 设备信息
|
|
|
+ */
|
|
|
+ loadEquipment(epData: EquipmentData): void {
|
|
|
+ // 位置
|
|
|
+ this.x = epData.Pos.X;
|
|
|
+ this.y = epData.Pos.Y;
|
|
|
+ let url = epData.Properties?.StatusImage![0].ImageKey;
|
|
|
+ this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/${url}`;
|
|
|
+ // 图片宽高
|
|
|
+ this.img.width = epData.Size.Width;
|
|
|
+ this.img.height = epData.Size.Height;
|
|
|
+ // 名称
|
|
|
+ let nameItem = new STextItem(this);
|
|
|
+ nameItem.moveable = true;
|
|
|
+ nameItem.backgroundColor = SColor.Transparent;
|
|
|
+ nameItem.font.size = 14;
|
|
|
+ nameItem.text = epData.Name;
|
|
|
+ nameItem.moveTo(-epData.Size.Width / 2, epData.Size.Height / 2 + 7);
|
|
|
+ this.textArr.push(nameItem);
|
|
|
+ // 信息点
|
|
|
+ let { InfoList } = epData;
|
|
|
+ InfoList.map(({ Name, X, Y, Width, Height, FontSize, Background, Color, TextAlign }) => {
|
|
|
+ let textItem = new STextItem(this);
|
|
|
+ textItem.moveable = true;
|
|
|
+ // textItem.backgroundColor = SColor.Transparent;
|
|
|
+ textItem.backgroundColor = new SColor(Background);
|
|
|
+ textItem.width = Width;
|
|
|
+ textItem.height = Height;
|
|
|
+ textItem.text = Name;
|
|
|
+ textItem.font.size = FontSize;
|
|
|
+ textItem.color = new SColor(Color);
|
|
|
+ textItem.pos.x = X;
|
|
|
+ textItem.pos.y = Y;
|
|
|
+ this.textArr.push(textItem);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 状态变化后,更新状态切换图片
|
|
|
+ * 如果切换后的状态无ImageKey,使用Running状态的ImageKey
|
|
|
+ */
|
|
|
+ updateStatus() {
|
|
|
+ let StatusImage = this.epData.Properties.StatusImage,
|
|
|
+ currentSts = StatusImage.filter((v) => v.Status === this._status)[0],
|
|
|
+ runingSts = StatusImage.filter((v) => v.Status === "Running")[0];
|
|
|
+ this.imgKey = currentSts.ImageKey || runingSts.ImageKey;
|
|
|
+ }
|
|
|
/**
|
|
|
* 宽高发生变化
|
|
|
*
|
|
@@ -69,6 +137,21 @@ export class SEquipmentItem extends SObjectItem {
|
|
|
}
|
|
|
return rect.adjusted(-5, -5, 10, 10);
|
|
|
} // Function boundingRect()
|
|
|
+ toData(): EquipmentData {
|
|
|
+ // 更新相关数据
|
|
|
+ let data = this.epData;
|
|
|
+ data.Pos.X = this.x;
|
|
|
+ data.Pos.Y = this.y;
|
|
|
+ data.Size.Width = this.width;
|
|
|
+ data.Size.Height = this.height;
|
|
|
+ // @ts-ignore
|
|
|
+ // infoList中坐标处理
|
|
|
+ data.InfoList.map((item, index, arr) => {
|
|
|
+ arr[index].X = this.textArr[index + 1].pos.x;
|
|
|
+ arr[index].Y = this.textArr[index + 1].pos.y;
|
|
|
+ });
|
|
|
+ return data;
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* Item绘制操作
|
|
@@ -78,7 +161,7 @@ export class SEquipmentItem extends SObjectItem {
|
|
|
onDraw(painter: SPainter): void {
|
|
|
painter.pen.lineWidth = painter.toPx(1);
|
|
|
painter.pen.color = SColor.Black;
|
|
|
- painter.brush.color = SColor.White;
|
|
|
+ painter.brush.color = SColor.Transparent;
|
|
|
painter.drawRect(this.boundingRect());
|
|
|
} // Function onDraw()
|
|
|
}
|