SBaseEditScene.ts 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  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 { SGraphDeleteListCommand, SGraphEditScene, SGraphEdit } from "./../edit/"
  27. import { SMouseEvent } from "@persagy-web/base/lib";
  28. import { SArrowStyleType, SPoint, SRect } from '@persagy-web/draw';
  29. import { SItemStatus, SRectSelectItem } from '@persagy-web/big/lib';
  30. import { SGraphItem, SGraphSelectContainer, SOrderSetType } from "@persagy-web/graph/lib/";
  31. import { uuid } from "./until";
  32. import { SBaseArrow, SBaseEquipment, SBaseExpainEdit, SBasePipeUninTool, SBasePipe } from "./"
  33. import { PTopoParser } from "./../persagy-edit/"
  34. /**
  35. * big-edit 场景
  36. *
  37. * @author 韩耀龙 <han_yao_long@163.com>
  38. */
  39. export class SBaseEditScene extends SGraphEditScene {
  40. /** 图例节点 */
  41. Nodes: any = []; // 图例节点,所有与工程信息化相关的图例(图标类型与区域)
  42. /** 图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  43. Markers: any = [];
  44. /** 管线对象 */
  45. Relations: any = [];
  46. /** 复制的对象 */
  47. copyString: any[] = [];
  48. /** 选中的对象 */
  49. grabItem: null | SGraphEdit | SGraphItem = null;
  50. /**
  51. * 构造函数
  52. *
  53. */
  54. constructor() {
  55. super()
  56. } // Constructor
  57. /**
  58. * 新增基础类注释
  59. *
  60. * @param event 鼠标事件参数
  61. */
  62. addExplainItem(event: SMouseEvent): void {
  63. const data = {
  64. /** 名称 */
  65. name: '基础注释文本',
  66. /** 图标 */
  67. type: "Text",
  68. /** 位置 */
  69. pos: { x: event.x, y: event.y },
  70. /** 由应用自己定义 */
  71. properties: {
  72. type: "BaseExplain",
  73. },
  74. style: {
  75. default: {
  76. text: '请在右侧属性栏输入文字!',
  77. color: "#646c73",
  78. font: 14,
  79. backgroundcolor: "#f7f9facc",
  80. }
  81. }
  82. };
  83. const item = new SBaseExpainEdit(null, data);
  84. item.moveTo(event.x, event.y);
  85. item.selectable = true;
  86. item.moveable = true;
  87. this.addItem(item);
  88. this.grabItem = null;
  89. item.connect("onContextMenu", this, this.getItem);
  90. this.finishCreated(item);
  91. } // Function addExplainItem()
  92. /**
  93. * 新增基础箭头(折线)
  94. *
  95. * @param event 鼠标事件
  96. */
  97. addPolyLineArrow(event: SMouseEvent): void {
  98. const data = {
  99. name: '基础箭头',
  100. type: "Arrow",
  101. pos: { x: 0, y: 0 },
  102. properties: {
  103. type: "BaseArrow",
  104. },
  105. style: {
  106. outLine: [{ x: event.x, y: event.y }],
  107. begin: SArrowStyleType.None, //开端箭头样式
  108. end: SArrowStyleType.None, //结尾箭头样式
  109. isMove: true, //是否可以移动
  110. default: {}
  111. }
  112. };
  113. const item = new SBaseArrow(null, data);
  114. item.status = SItemStatus.Create;
  115. item.selectable = true;
  116. this.addItem(item);
  117. this.grabItem = item;
  118. item.connect("finishCreated", this, this.finishCreated);
  119. item.connect("onContextMenu", this, this.getItem);
  120. if (this.view) {
  121. this.view.update();
  122. }
  123. } // Function addPolyLineArrow()
  124. /**
  125. * 添加基本设备 item
  126. *
  127. * @param event 鼠标事件
  128. * @param legendObj 图例样式
  129. */
  130. addEuqipment(event: SMouseEvent, legendObj: any): void {
  131. const data = {
  132. /** 名称 */
  133. name: '基础设备',
  134. num: 1,
  135. size: { width: 50, height: 50 },
  136. /** 图标 (Image),线类型 (Line) */
  137. type: "Image",
  138. /** 位置 */
  139. pos: { x: event.x, y: event.y },
  140. /** 由应用自己定义 */
  141. properties: {
  142. type: "BaseEquipment",
  143. },
  144. style: {
  145. default: {
  146. strokecolor: "#c0ccda",
  147. url: require('./../../../assets/images/equip/' + legendObj.url),
  148. }
  149. }
  150. }
  151. const item = new SBaseEquipment(null, data);
  152. item.status = SItemStatus.Create;
  153. this.addItem(item);
  154. item.selectable = true;
  155. item.moveable = true;
  156. this.grabItem = item;
  157. this.finishCreated(item)
  158. item.connect("onContextMenu", this, this.getItem);
  159. if (this.view) {
  160. this.view.update();
  161. }
  162. } // Function addEuqipment()
  163. /**
  164. * 新增管道
  165. *
  166. * @param event 鼠标事件
  167. */
  168. addBasePipe(event: SMouseEvent) {
  169. const anc = this.clickIsAnchor(event);
  170. if (anc) {
  171. const p = anc.mapToScene(0, 0)
  172. anc.isConnected = true;
  173. event.x = p.x;
  174. event.y = p.y;;
  175. };
  176. const data = {
  177. name: '管道',
  178. lineType: '',
  179. pointList: [{ x: event.x, y: event.y }],
  180. properties: {
  181. type: "BasePipe",
  182. },
  183. style: {
  184. default: {
  185. }
  186. }
  187. };
  188. const item = new SBasePipe(null, data);
  189. item.status = SItemStatus.Create;
  190. item.selectable = true;
  191. this.addItem(item);
  192. this.grabItem = item;
  193. // 起始锚点
  194. item.startAnchor = anc;
  195. if (anc) {
  196. anc.parent?.connect('changePos', item, item.changePos)
  197. item.anchor1ID = anc.id;
  198. item.node1Id = anc.parent.id;
  199. }
  200. item.connect("finishCreated", this, this.finishCreated);
  201. item.connect("onContextMenu", this, this.getItem);
  202. if (this.view) {
  203. this.view.update();
  204. }
  205. } // Function addBasePipe()
  206. /**
  207. * 添加基本管道联通器
  208. *
  209. * @param event 鼠标事件
  210. * @param cmd 命令
  211. */
  212. addPipeUninTool(event: SMouseEvent, cmd: string): void {
  213. const cmdList = {
  214. 'wantou': 2,
  215. 'santong': 3,
  216. 'sitong': 4,
  217. }
  218. const data = {
  219. /** 名称 */
  220. name: '基础管道接头',
  221. /** 图标 (Image),线类型 (Line) */
  222. type: "Image",
  223. /** 位置 */
  224. pos: { x: event.x, y: event.y },
  225. /** 由应用自己定义 */
  226. properties: {
  227. type: "BasePipeUninTool",
  228. },
  229. style: {
  230. uninToolType: cmdList[cmd] ? cmdList[cmd] : 2, //2,3,4 分别分二头连接器、三头连接器、四头连接器
  231. default: {
  232. strokecolor: "#c0ccda",
  233. }
  234. }
  235. };
  236. const item = new SBasePipeUninTool(null, data);
  237. item.status = SItemStatus.Create;
  238. item.selectable = true;
  239. item.moveable = true;
  240. this.addItem(item);
  241. this.grabItem = item;
  242. this.finishCreated(item)
  243. item.connect("onContextMenu", this, this.getItem);
  244. if (this.view) {
  245. this.view.update();
  246. }
  247. } // Function addPipeUninTool()
  248. /**
  249. * 重做
  250. */
  251. redo(): void {
  252. if (this.grabItem && this.grabItem instanceof SGraphEdit) {
  253. this.grabItem.redo()
  254. } else {
  255. this.undoStack.redo();
  256. }
  257. } // Function redo()
  258. /**
  259. * 撤销
  260. */
  261. undo(): void {
  262. if (this.grabItem && this.grabItem instanceof SGraphEdit) {
  263. this.grabItem.undo()
  264. } else {
  265. this.undoStack.undo();
  266. }
  267. } // Function undo()
  268. /**
  269. * 删除
  270. *
  271. * @return 删除的图例
  272. */
  273. deleteItem(): any {
  274. if (this.selectContainer.count == 0) {
  275. return []
  276. }
  277. let itemList = this.selectContainer.itemList;
  278. // 推入 undo/redo 栈
  279. this.undoStack.push(new SGraphDeleteListCommand(this, [...itemList]))
  280. itemList.forEach((element: any) => {
  281. this.removeItem(element)
  282. });
  283. if (this.view) {
  284. this.view.update()
  285. }
  286. return itemList
  287. } // Function deleteItem()
  288. /**
  289. * 框选
  290. */
  291. addRectSelect(event: SMouseEvent): void {
  292. let point = new SPoint(event.x, event.y);
  293. let rect = new SRectSelectItem(null, point);
  294. this.addItem(rect);
  295. this.grabItem = rect;
  296. } // Function addRectSelect()
  297. /**
  298. * 计算框选交集
  299. *
  300. * @param ctrl 是否点击ctrl
  301. */
  302. groupSelect(ctrl: boolean) {
  303. // if (!ctrl) {
  304. // this.selectContainer.clear()
  305. // }
  306. if (this.grabItem instanceof SRectSelectItem) {
  307. const rect = this.grabItem.boundingRect();
  308. this.arrToSelect(this.root.children, rect)
  309. }
  310. } // Function groupSelect()
  311. /**
  312. * 选中item:框选
  313. *
  314. * @param arr 实例数组
  315. * @param rect 框选矩形区域
  316. */
  317. private arrToSelect(arr: SGraphItem[], rect: SRect) {
  318. if (Array.isArray(arr) && arr.length) {
  319. arr.forEach(t => {
  320. if (!(t instanceof SGraphSelectContainer) && t.parent) {
  321. let temp = t.boundingRect();
  322. let lefttop = t.mapToScene(temp.left, temp.top)
  323. let rightbottom = t.mapToScene(temp.right, temp.bottom)
  324. let r = new SRect(lefttop, rightbottom)
  325. if (rect.isIn(r)) {
  326. this.selectContainer.toggleItem(t)
  327. }
  328. }
  329. })
  330. }
  331. } // Function arrToSelect()
  332. /////////////////////////////////////////////////////////////////////
  333. // 鼠标事件
  334. /**
  335. * 鼠标左键按下
  336. *
  337. * @param event 鼠标事件参数
  338. */
  339. onMouseDown(event: SMouseEvent): any {
  340. if (!super.onMouseDown(event) && 1 == event.buttons) {
  341. this.addRectSelect(event);
  342. }
  343. } // Function onMouseDown()
  344. /**
  345. * 鼠标抬起
  346. *
  347. * @param event 鼠标事件参数
  348. */
  349. onMouseUp(event: SMouseEvent): boolean {
  350. if (this.grabItem) {
  351. // 鼠标抬起时,如果grabItem为框选则删除框选item
  352. if (this.grabItem instanceof SRectSelectItem) {
  353. this.removeItem(this.grabItem);
  354. this.groupSelect(false);
  355. this.grabItem = null;
  356. if (this.view) {
  357. this.view.update()
  358. }
  359. return true;
  360. }
  361. return this.grabItem.onMouseUp(event);
  362. }
  363. return super.onMouseUp(event)
  364. } // Function onMouseUp()
  365. /**
  366. * 复制
  367. */
  368. copy(): void {
  369. const itemList = this.save(false);
  370. if (itemList) {
  371. // 生成复制字符串
  372. // 删除对应得id
  373. itemList.markers.map((item: any) => {
  374. delete item.id;
  375. delete item.graphId;
  376. delete item.markerId;
  377. return item
  378. });
  379. itemList.nodes.map((item: any) => {
  380. delete item.id;
  381. delete item.graphId;
  382. delete item.markerId;
  383. return item
  384. });
  385. itemList.relations.map((item: any) => {
  386. delete item.id;
  387. delete item.graphId;
  388. delete item.markerId;
  389. return item
  390. });
  391. this.copyString = itemList
  392. // 获取input dom
  393. const input = document.createElement('input');
  394. input.setAttribute('id', 'COPYINPUT')
  395. input.value = JSON.stringify(this.copyString)
  396. sessionStorage.setItem("copyString", input.value);
  397. document.body.appendChild(input);
  398. input.select()
  399. document.execCommand('copy');
  400. input.style.display = 'none';
  401. console.log(input.value, Date.now());
  402. document.body.removeChild(input)
  403. }
  404. } // Function copy()
  405. /**
  406. * 粘贴
  407. */
  408. paste(): void {
  409. const copyList = JSON.parse(JSON.stringify(this.copyString));
  410. console.log('copyList', copyList)
  411. const parserData = new PTopoParser();
  412. parserData.parseData(copyList);
  413. parserData.markers.forEach((item: SGraphEdit) => {
  414. item.selectable = true;
  415. item.moveable = true;
  416. if (this.view) {
  417. item.pos.x += 10 / this.view.scale
  418. item.pos.y += 10 / this.view.scale
  419. }
  420. this.addItem(item);
  421. });
  422. this.view ? this.view.update() : '';
  423. } // Function paste()
  424. /**
  425. * 图例置顶、置底
  426. *
  427. * @parm type 设置类型
  428. */
  429. setOrder(type: string) {
  430. this.selectContainer.setOrder(SOrderSetType.[type])
  431. }
  432. /**
  433. * 获取item (常用与场景外的调用F)
  434. *
  435. * @params isAll 是否为全部item数据
  436. * @return obj 返回保存的数据接口
  437. */
  438. save(isAll: boolean = true): any {
  439. } // Function save()
  440. } // Class SBaseEditScene