SBaseEquipment.ts 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. /*
  2. * *********************************************************************************************************************
  3. *
  4. * !!
  5. * .F88X
  6. * X8888Y
  7. * .}888888N;
  8. * i888888N; .:! .I$WI:
  9. * R888888I .'N88~ i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
  10. * .R888888I .;N8888~ .X8' "8I.!,/8" !%NY8`"8I8~~8>,88I
  11. * +888888N; .8888888Y "&&8Y.}8,
  12. * ./888888N; .R888888Y .'}~ .>}'.`+> i}! "i' +/' .'i~ !11,.:">, .~]! .i}i
  13. * ~888888%: .I888888l .]88~`1/iY88Ii+1'.R$8$8]"888888888> Y8$ W8E X8E W8888'188Il}Y88$*
  14. * 18888888 E8888881 .]W%8$`R8X'&8%++N8i,8N%N8+l8%` .}8N:.R$RE%N88N%N$K$R 188,FE$8%~Y88I
  15. * .E888888I .i8888888' .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
  16. * 8888888I .,N888888~ ~88i"8W,!N8*.I88.}888%F,i$88"F88" 888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
  17. * i888888N' I888Y ]88;/EX*IFKFK88X K8R .l8W 88Y ~88}'88E&%8W.X8N``]88!.$8K .:W8I
  18. * .i888888N; I8Y .&8$ .X88! i881.:%888>I88 ;88] +88+.';;;;:.Y88X 18N.,88l .+88/
  19. * .:R888888I
  20. * .&888888I Copyright (c) 2016-2020. 博锐尚格科技股份有限公司
  21. * ~8888'
  22. * .!88~ All rights reserved.
  23. *
  24. * *********************************************************************************************************************
  25. */
  26. import { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib";
  27. import { Legend } from "./../types/Legend";
  28. import { SBaseIconTextEdit, SBaseTextEdit } from './../../edit/';
  29. import { SColor } from '@persagy-web/draw/lib';
  30. import { svgTobase64 } from "./../until"
  31. /**
  32. * 编辑基础设备类
  33. *
  34. * @author 韩耀龙 <han_yao_long@163.com>
  35. */
  36. export class SBaseEquipment extends SBaseIconTextEdit {
  37. /** 设备图例 */
  38. _legendData: Legend | null = null;
  39. set legendData(val) {
  40. this._legendData = val;
  41. this.initData()
  42. } // set legendData()
  43. get legendData(): Legend | null {
  44. return this._legendData
  45. } // get legendData()
  46. /** 信息点存储 */
  47. _infoPointList: any[] = []
  48. set infoPointList(val) {
  49. this._infoPointList = val;
  50. } // set infoPointList()
  51. get infoPointList(): any[] {
  52. return this._infoPointList
  53. } // get infoPointList()
  54. /**
  55. * 构造函数
  56. *
  57. * @param parent 指向父对象
  58. * @param data 数据
  59. */
  60. constructor(parent: SGraphItem | null, data: Legend) {
  61. super(parent);
  62. this.legendData = data;
  63. } // Constructor
  64. /**
  65. * 设置legendData 时 对 item 做设置
  66. */
  67. initData() {
  68. if (!this.legendData) return;
  69. if (this.legendData.size) {
  70. this.sWidth = this.legendData.size.width;
  71. this.sHeight = this.legendData.size.height;
  72. }
  73. // this.img.connect("onMove", this, this.changeAnchorPoint.bind(this));
  74. if (this.legendData.anchorList && this.legendData.anchorList.length) {
  75. this.anchorList = this.legendData.anchorList.map(t => {
  76. let item = new SAnchorItem(this);
  77. if (t.id) {
  78. item.id = t.id;
  79. }
  80. item.moveTo(t.pos.x, t.pos.y);
  81. return item;
  82. });
  83. } else {
  84. const anchorPoint = [
  85. { x: this.img.x, y: this.img.y, id: "" },
  86. ];
  87. this.anchorList = anchorPoint.map(t => {
  88. let item = new SAnchorItem(this);
  89. if (t.id) {
  90. item.id = t.id;
  91. }
  92. item.moveTo(t.x, t.y);
  93. return item;
  94. });
  95. }
  96. // 存储信息点
  97. if (this.legendData.properties && this.legendData.properties.infoPointList) {
  98. const infoPointList = this.legendData.properties.infoPointList
  99. if (infoPointList.length) {
  100. this.infoPointList = infoPointList;
  101. this.infoPointList.forEach((obj, i) => {
  102. this.setTextItem(obj, i)
  103. })
  104. } else {
  105. this.infoPointList = []
  106. }
  107. } else {
  108. this.infoPointList = []
  109. }
  110. this.showAnchor = false;
  111. const url = this.legendData.style.default.base64Url ? this.legendData.style.default.base64Url : this.legendData.style.default.url
  112. svgTobase64(url).then((res) => {
  113. this.img.url = res?res:'';
  114. }).catch((res) => {
  115. this.img.url = res;
  116. })
  117. this.x = this.legendData.pos.x;
  118. this.y = this.legendData.pos.y;
  119. this.moveable = true;
  120. this.selectable = true;
  121. }// Function initData()
  122. /**
  123. * 设置信息点
  124. *
  125. * @params obj 设置的信息点
  126. */
  127. setMsgPoint(val: any) {
  128. // 根据是否勾选来判断是够增加或删除
  129. if (val.checked) {
  130. this._infoPointList.push(val);
  131. this.setTextItem(val, (this._infoPointList.length - 1))
  132. } else {
  133. let deleteItemIndex: number = -1;
  134. this._infoPointList.forEach((item, index) => {
  135. if (val.id == item.id) {
  136. deleteItemIndex = index;
  137. }
  138. });
  139. this._infoPointList.splice(deleteItemIndex, 1);
  140. this.setTextItem(val, deleteItemIndex)
  141. }
  142. // this.addTextItem(val)
  143. } //Function setMsgPoint()
  144. /**
  145. * 根据选中状态增加 textItem
  146. *
  147. * @params obj textItem文本信息
  148. * @params index 文本索引
  149. */
  150. setTextItem(val: any, index: number): void {
  151. if (val.checked) {
  152. let item = new SBaseTextEdit(this, null);
  153. item.propertyData = val;
  154. item.text = val.name;
  155. if (val.pos) {
  156. item.moveTo(val.pos.x, val.pos.x)
  157. } else {
  158. item.moveTo(
  159. this.img.width * 0.5,
  160. -(this.font.size * 1.25 * 0.5) + (index) * 10
  161. );
  162. }
  163. item.font.size = val.font ? val.font : 12;
  164. item.isTransform = false;
  165. item.showSelect = false;
  166. item.color = val.strokeColor ? new SColor(val.strokeColor) : new SColor('#000000');
  167. item.connect('textSelect', this, this.textSelectChange)
  168. this.textItemList.push(item)
  169. } else {
  170. this.textItemList.splice(index, 1)
  171. this.scene?.removeItem(this.textItemList[index]);
  172. }
  173. // do something
  174. }// Function setTextItem()
  175. /**
  176. * 返回对象储存的相关数据
  177. *
  178. * @return 对象储存的相关数据
  179. */
  180. toData(): any {
  181. if (this.legendData) {
  182. const list = this.anchorList.map((item) => {
  183. return {
  184. id: item.id,
  185. pos: {
  186. x: this.x,
  187. y: this.y
  188. }
  189. }
  190. })
  191. this.legendData.anchorList = list;
  192. // 反馈大小
  193. if (this.legendData.size) {
  194. this.legendData.size.width = this.sWidth;
  195. this.legendData.size.height = this.sHeight
  196. } else {
  197. this.legendData.size = {
  198. width: this.sWidth,
  199. height: this.sHeight
  200. }
  201. }
  202. // 位置
  203. this.legendData.pos = {
  204. x: this.x,
  205. y: this.y
  206. };
  207. // 存储信息点
  208. const infoPoinList: any[] = []
  209. this.textItemList.forEach(item => {
  210. let obj = Object.assign(item.propertyData, {
  211. pos: { x: item.x, y: item.y },
  212. font: item.font.size,
  213. strokeColor: item.strokeColor.value
  214. })
  215. infoPoinList.push(obj)
  216. })
  217. this.legendData.properties.infoPointList = infoPoinList;
  218. this.legendData.style.default.base64Url = "";
  219. return this.legendData
  220. }
  221. } // Function toData
  222. } // Class SBaseEquipment