SEquipmentItem.ts 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. import { SObjectItem, SImageItem, SGraphItem, STextItem } from "@saga-web/graph/lib";
  2. import { ItemOrder } from "@saga-web/big/lib";
  3. import { SColor, SPainter, SRect } from "@saga-web/draw/lib";
  4. import { SMouseEvent } from "@saga-web/base/lib";
  5. import { EquipmentData } from "../types/EquipmentData";
  6. enum StatusType {
  7. /** 普通态 */
  8. Normal,
  9. /** 编辑态 */
  10. Edit
  11. }
  12. export class SEquipmentItem extends SObjectItem {
  13. // img对象
  14. img: SImageItem = new SImageItem(this);
  15. _textArr: STextItem[] = [];
  16. /** imgkey值 */
  17. _imgKey: string = "";
  18. /** 设备状态值,开启:关闭:故障... */
  19. _status: string = "Running";
  20. /**保存设备数据 */
  21. _epData: EquipmentData | any = {};
  22. /** 设备名称 */
  23. _name: string = '';
  24. /** 设备状态:编辑,正常 */
  25. equipmentStatus: StatusType = StatusType.Normal;
  26. get imgKey(): string {
  27. return this._imgKey;
  28. }
  29. set imgKey(v: string) {
  30. this._imgKey = v;
  31. // TODO:
  32. // this.img.url = `/serve/topology-wanda/Picture/query/${v}`;
  33. this.img.url = `http://60.205.177.43/topolImages/${v}`;
  34. this.img.connect("imgLoadOver", this, () => {
  35. // 抛出设备中的图片加载完成事件
  36. this.$emit("equipImgLoadOver");
  37. this.update();
  38. });
  39. }
  40. get status(): string {
  41. return this._status;
  42. }
  43. set status(v: string) {
  44. this._status = v;
  45. this.updateStatus();
  46. }
  47. get textArr(): STextItem[] {
  48. return this._textArr
  49. }
  50. set textArr(v) {
  51. this._textArr = v
  52. }
  53. // 将EquipmentData保存起来,以便修改status时,可以找到StatusImage
  54. get epData(): EquipmentData {
  55. return this._epData;
  56. }
  57. set epData(v: EquipmentData) {
  58. this._epData = v;
  59. }
  60. // 修改设备名称
  61. get name(): string {
  62. return this._name
  63. }
  64. set name(v: string) {
  65. this._name = v
  66. if (this.textArr && this.textArr.length) {
  67. this.textArr[0].text = v
  68. }
  69. }
  70. /**
  71. *
  72. * @param parent 父类
  73. * @param epData 需要展示的节点信息
  74. */
  75. constructor(parent: SGraphItem | null, epData: EquipmentData) {
  76. super(parent);
  77. console.log(epData);
  78. epData && (this.epData = epData);
  79. this.moveable = true;
  80. this.id = epData.ID;
  81. this.zOrder = ItemOrder.textOrder;
  82. this.textArr = [];
  83. // 有信息点信息时,绘制信息点信息
  84. // 加载设备
  85. if (epData && epData?.Pos) {
  86. this.loadEquipment(epData);
  87. } else if (epData) {
  88. //绘制设备
  89. this.img.url = `/serve/topology-wanda/Picture/query/14d978b7edd346f088d6cfb53ada4070`;
  90. this.img.width = 24;
  91. this.img.height = 24;
  92. //添加设备
  93. let index = 0;
  94. for (let key in epData) {
  95. let textItem = new STextItem(this);
  96. textItem.moveable = true;
  97. textItem.backgroundColor = SColor.White;
  98. textItem.font.size = 14;
  99. textItem.moveTo(17, index * 20 - 10);
  100. // @ts-ignore
  101. textItem.text = `${key} : ${epData[key]}`;
  102. this.textArr.push(textItem);
  103. index++;
  104. }
  105. }
  106. }
  107. /**
  108. * 加载设备
  109. * @param epData 设备信息
  110. */
  111. loadEquipment(epData: EquipmentData): void {
  112. // 位置
  113. this.x = epData.Pos.X;
  114. this.y = epData.Pos.Y;
  115. let imageKey = epData.Properties?.StatusImage![0].ImageKey;
  116. // this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/${url}`;
  117. this.imgKey = imageKey;
  118. // 图片宽高
  119. this.img.width = epData.Size.Width;
  120. this.img.height = epData.Size.Height;
  121. // 名称
  122. this.name = epData.Name
  123. let nameItem = new STextItem(this);
  124. // nameItem.moveable = true;
  125. nameItem.backgroundColor = SColor.Transparent;
  126. nameItem.font.size = 14;
  127. nameItem.text = epData.Name;
  128. nameItem.moveTo(-epData.Size.Width / 2, epData.Size.Height / 2 + 7);
  129. this.textArr.push(nameItem);
  130. // 信息点
  131. let { InfoList } = epData;
  132. InfoList.map(({ Name, X, Y, Width, Height, FontSize, Background, Color, TextAlign }) => {
  133. let textItem = new STextItem(this);
  134. textItem.backgroundColor = new SColor(Background);
  135. textItem.width = Width;
  136. textItem.height = Height;
  137. textItem.text = Name;
  138. textItem.font.size = FontSize;
  139. textItem.color = new SColor(Color);
  140. textItem.pos.x = X;
  141. textItem.pos.y = Y;
  142. this.textArr.push(textItem);
  143. });
  144. }
  145. /**
  146. * 状态变化后,更新状态切换图片
  147. * 如果切换后的状态无ImageKey,使用Running状态的ImageKey
  148. */
  149. updateStatus() {
  150. let StatusImage = this.epData.Properties.StatusImage,
  151. currentSts = StatusImage.filter((v) => v.Status === this._status)[0],
  152. runingSts = StatusImage.filter((v) => v.Status === "Running")[0];
  153. this.imgKey = currentSts.ImageKey || runingSts.ImageKey;
  154. }
  155. /**
  156. * 鼠标双击事件
  157. *
  158. * @param event 事件参数
  159. * @return boolean
  160. */
  161. onDoubleClick(event: SMouseEvent): boolean {
  162. // 如果位show状态 双击改对象则需改为编辑状态
  163. if (StatusType.Normal == this.equipmentStatus) {
  164. this.equipmentStatus = StatusType.Edit;
  165. // this.grabItem(this); // TODO:
  166. } else if (StatusType.Edit == this.equipmentStatus) {
  167. this.equipmentStatus = StatusType.Normal;
  168. this.releaseItem();
  169. }
  170. this.update()
  171. return true;
  172. } // Function onDoubleClick()
  173. /**
  174. * 宽高发生变化
  175. *
  176. * @return SRect 所有子对象的并集
  177. * */
  178. boundingRect(): SRect {
  179. // return new SRect(-this.width / 2, -this.height / 2, this.width, this.height);
  180. let rect = this.img.boundingRect().adjusted(this.img.pos.x, this.img.pos.y, 0, 0);
  181. if (this.textArr.length) {
  182. for (let text of this.textArr) {
  183. rect = rect.unioned(text.boundingRect().adjusted(text.pos.x, text.pos.y, 0, 0));
  184. }
  185. }
  186. return rect.adjusted(-5, -5, 10, 10);
  187. } // Function boundingRect()
  188. toData(): EquipmentData {
  189. // 更新相关数据
  190. let data = this.epData;
  191. data.Pos.X = this.x;
  192. data.Pos.Y = this.y;
  193. data.Size.Width = this.width;
  194. data.Size.Height = this.height;
  195. // @ts-ignore
  196. // infoList中坐标处理
  197. data.InfoList.map((item, index, arr) => {
  198. arr[index].X = this.textArr[index + 1].pos.x;
  199. arr[index].Y = this.textArr[index + 1].pos.y;
  200. });
  201. return data;
  202. }
  203. /**
  204. * Item绘制操作
  205. *
  206. * @param painter painter对象
  207. */
  208. onDraw(painter: SPainter): void {
  209. painter.pen.lineWidth = painter.toPx(1);
  210. painter.pen.color = SColor.Black;
  211. painter.brush.color = SColor.Transparent;
  212. if (this.equipmentStatus === StatusType.Edit) {
  213. painter.drawRect(this.boundingRect());
  214. this.textArr.map(item => item.moveable = true)
  215. } else {
  216. this.textArr.map(item => item.moveable = false)
  217. }
  218. } // Function onDraw()
  219. }