SGraphEditScene.ts 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  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 { SGraphScene, SGraphItem, SAnchorItem, SImageItem } from "@persagy-web/graph";
  27. import { SPoint } from "@persagy-web/draw";
  28. import { SMouseEvent, SUndoStack, } from "@persagy-web/base";
  29. import { SRectSelectItem, SItemStatus } from "@persagy-web/big";
  30. import { SBaseArrowEdit, SBasePolygonEdit, SBaseCircleEdit, SBaseLineEdit, SGraphAddCommand, SGraphEdit, SBaseIconTextEdit, SBasePolylineEdit, SBaseTextEdit, SBaseImageEdit, SBaseRectEdit, SBaseTriangleEdit } from './'
  31. import { SMathUtil } from "@persagy-web/big/lib/utils/SMathUtil"
  32. import { SBasePipe } from "./../big-edit"
  33. /**
  34. * Graph 图形引擎编辑场景类
  35. *
  36. * @author 韩耀龙 <han_yao_long@126.com>
  37. */
  38. export class SGraphEditScene extends SGraphScene {
  39. /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  40. //属性
  41. /** undo/redo 存储栈 */
  42. protected undoStack = new SUndoStack();
  43. // get undoStack(): SUndoStack {
  44. // return this._undoStack
  45. // }
  46. // // set undoStack(val: SUndoStack) {
  47. // // this._undoStack = val
  48. // // }
  49. /** 编辑命令 */
  50. _editCmd: string = ""
  51. get editCmd(): string {
  52. return this._editCmd
  53. } // Get editCmd
  54. set editCmd(val: string) {
  55. this._editCmd = val;
  56. } // Set editCmd
  57. /** 是否可编辑 */
  58. _isEditStatus: Boolean = true;
  59. set isEditStatus(bol: Boolean) {
  60. this._isEditStatus = bol;
  61. } // Get isEditStatus
  62. get isEditStatus(): Boolean {
  63. return this._isEditStatus;
  64. } // Set isEditStatus
  65. /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  66. //函数
  67. /**
  68. * 构造函数
  69. */
  70. constructor() {
  71. super()
  72. // // 选择绑定选额item事件
  73. this.selectContainer.connect("selectChange", this, this.selectChange);
  74. } // Constructor
  75. /**
  76. * 选中 item 触发方法
  77. *
  78. * @param obj 变化后的对象
  79. */
  80. selectChange(obj: any) {
  81. // do nothing
  82. } // Function selectChange
  83. /**
  84. * 新增基础类直线
  85. *
  86. * @param event 鼠标事件参数
  87. */
  88. addLine(event: SMouseEvent): void {
  89. const data = {
  90. /** 名称 */
  91. name: '基础直线',
  92. /** 图标(Image),线类型(Line) */
  93. type: "Line",
  94. /** 缩放比例(Image),线类型(Line) */
  95. scale: { x: 1, y: 1, z: 1 },
  96. /** 缩放比例(Image),线类型(Line) */
  97. rolate: { x: 0, y: 0, z: 0 },
  98. /** 位置 */
  99. pos: { x: 0, y: 0 },
  100. /** 由应用自己定义 */
  101. properties: {
  102. type: "BaseLine" // 自定义类型用于区分mark与node
  103. },
  104. style: {
  105. line: [{ x: event.x, y: event.y }],
  106. default: {
  107. }
  108. }
  109. }
  110. const lineItem = new SBaseLineEdit(null, data);
  111. lineItem.status = SItemStatus.Create;
  112. this.addItem(lineItem);
  113. // this.undoStack.push(new SGraphAddCommand(this, lineItem));
  114. lineItem.selectable = true;
  115. this.grabItem = lineItem;
  116. lineItem.connect("finishCreated", this, this.finishCreated);
  117. lineItem.connect("onContextMenu", this, this.getItem);
  118. if (this.view) {
  119. this.view.update();
  120. }
  121. } // Function addLine()
  122. /**
  123. * 新增折线
  124. *
  125. * @param event 鼠标事件
  126. */
  127. addPolyLine(event: SMouseEvent): void {
  128. const data = {
  129. name: '基础折线',
  130. type: "line",
  131. pos: { x: 0, y: 0 },
  132. properties: {
  133. type: "BasePolyline",
  134. },
  135. style: {
  136. outLine: [{ x: event.x, y: event.y }],
  137. default: {
  138. }
  139. }
  140. }
  141. const item = new SBasePolylineEdit(null, data);
  142. item.status = SItemStatus.Create;
  143. item.selectable = true;
  144. this.addItem(item);
  145. this.grabItem = item;
  146. item.connect("finishCreated", this, this.finishCreated);
  147. item.connect("onContextMenu", this, this.getItem);
  148. if (this.view) {
  149. this.view.update();
  150. }
  151. } // Function addPolyLine()
  152. /**
  153. * 新增基础类图片
  154. *
  155. * @param event 鼠标事件参数
  156. */
  157. addImageItem(event: SMouseEvent): void {
  158. const data = {
  159. /** 名称 */
  160. name: '基础图片',
  161. num: 1,
  162. /** 图标(Image),线类型(Line) */
  163. type: "Image",
  164. /** 位置 */
  165. pos: { x: event.x, y: event.y },
  166. /** 由应用自己定义 */
  167. properties: {
  168. type: "BaseImage",
  169. },
  170. style: {
  171. default: {
  172. strokecolor: "#c0ccda",
  173. url: '',
  174. }
  175. }
  176. }
  177. const item = new SBaseImageEdit(null, data);
  178. item.selectable = true;
  179. item.moveable = true;
  180. this.addItem(item);
  181. item.connect("onContextMenu", this, this.getItem);
  182. this.finishCreated(item);
  183. } // Function addImageItem()
  184. /**
  185. * 新增基础类文本
  186. *
  187. * @param event 鼠标事件参数
  188. */
  189. addTextItem(event: SMouseEvent): void {
  190. const data = {
  191. /** 名称 */
  192. name: '基础文本',
  193. /** 图标 */
  194. type: "Text",
  195. /** 位置 */
  196. pos: { x: event.x, y: event.y },
  197. size: { width: 0, height: 0 },
  198. /** 由应用自己定义 */
  199. properties: {
  200. type: "BaseText" // 自定义类型用于区分mark与node
  201. },
  202. style: {
  203. default: {
  204. text: '请在右侧属性栏输入文字!',
  205. color: "#646c73",
  206. font: 14,
  207. backgroundcolor: "#f7f9facc",
  208. }
  209. }
  210. };
  211. const item = new SBaseTextEdit(null, data);
  212. item.moveTo(event.x, event.y);
  213. item.moveable = true;
  214. this.addItem(item);
  215. this.grabItem = null;
  216. item.connect("onContextMenu", this, this.getItem);
  217. this.finishCreated(item);
  218. } // Function addTextItem()
  219. /**
  220. * 添加基本矩形 item
  221. *
  222. * @param event 鼠标事件
  223. */
  224. addRectItem(event: SMouseEvent): void {
  225. const data = {
  226. name: '基础矩形',
  227. /** 图标(Image),线类型(Line) */
  228. type: "Zone",
  229. /** 位置 */
  230. pos: { x: 0, y: 0 },
  231. properties: {
  232. type: "BaseRect",
  233. },
  234. style: {
  235. default: {
  236. line: [{ x: event.x, y: event.y }],
  237. }
  238. }
  239. }
  240. const rectItem = new SBaseRectEdit(null, data);
  241. rectItem.status = SItemStatus.Create;
  242. this.addItem(rectItem);
  243. // this.undoStack.push(new SGraphAddCommand(this, rectItem));
  244. rectItem.selectable = true;
  245. rectItem.moveable = true;
  246. this.grabItem = rectItem;
  247. rectItem.isTransform = true
  248. rectItem.connect("finishCreated", this, this.finishCreated);
  249. rectItem.connect("onContextMenu", this, this.getItem);
  250. if (this.view) {
  251. this.view.update();
  252. }
  253. } // Function addRectItem()
  254. /**
  255. * 添加基本三角形 item
  256. *
  257. * @param event 鼠标事件
  258. */
  259. addTriangleItem(event: SMouseEvent): void {
  260. const data = {
  261. name: '基础三角形',
  262. type: "Zone",
  263. pos: { x: 0, y: 0 },
  264. properties: {
  265. type: "BaseTriangle",
  266. },
  267. style: {
  268. default: {
  269. line: [{ x: event.x, y: event.y }],
  270. }
  271. }
  272. }
  273. const triangleItem = new SBaseTriangleEdit(null, data);
  274. triangleItem.status = SItemStatus.Create;
  275. this.addItem(triangleItem);
  276. // this.undoStack.push(new SGraphAddCommand(this, triangleItem));
  277. triangleItem.selectable = true;
  278. triangleItem.moveable = true;
  279. this.grabItem = triangleItem;
  280. triangleItem.connect("finishCreated", this, this.finishCreated);
  281. triangleItem.connect("onContextMenu", this, this.getItem);
  282. if (this.view) {
  283. this.view.update();
  284. }
  285. } // Function addTriangleItem()
  286. /**
  287. * 添加基本圆
  288. *
  289. * @param event 鼠标事件
  290. */
  291. addCircleItem(event: SMouseEvent): void {
  292. const data = {
  293. name: '基础圆形',
  294. type: "Zone",
  295. pos: { x: 0, y: 0 },
  296. properties: {
  297. type: "BaseCircle",
  298. },
  299. style: {
  300. default: {
  301. },
  302. line: [{ x: event.x, y: event.y }],
  303. }
  304. }
  305. const circleItem = new SBaseCircleEdit(null, data);
  306. circleItem.status = SItemStatus.Create;
  307. circleItem.selectable = true;
  308. this.grabItem = circleItem;
  309. this.addItem(circleItem);
  310. // this.undoStack.push(new SGraphAddCommand(this, circleItem));
  311. circleItem.connect("finishCreated", this, this.finishCreated);
  312. circleItem.connect("onContextMenu", this, this.getItem);
  313. if (this.view) {
  314. this.view.update();
  315. }
  316. } // Function addCircleItem()
  317. /**
  318. * 添加基本多边形
  319. *
  320. * @param event 鼠标事件
  321. */
  322. addPolygonItem(event: SMouseEvent): void {
  323. const data = {
  324. name: '基础多边形',
  325. type: "Zone",
  326. pos: { x: 0, y: 0 },
  327. properties: {
  328. type: "BasePolygon",
  329. },
  330. style: {
  331. outLine: [{ x: event.x, y: event.y }],
  332. default: {
  333. }
  334. }
  335. };
  336. const polygonItem = new SBasePolygonEdit(null, data);
  337. polygonItem.status = SItemStatus.Create;
  338. polygonItem.selectable = true;
  339. this.addItem(polygonItem);
  340. // this.undoStack.push(new SGraphAddCommand(this, polygonItem));
  341. this.grabItem = polygonItem;
  342. polygonItem.connect("finishCreated", this, this.finishCreated);
  343. polygonItem.connect("onContextMenu", this, this.getItem);
  344. if (this.view) {
  345. this.view.update();
  346. };
  347. } // Function addPolygonItem()
  348. /**
  349. * 添加基本箭头 item (直线类)
  350. *
  351. * @param event 鼠标事件
  352. */
  353. addBaseArrowsItem(event: SMouseEvent): void {
  354. const data = {
  355. name: '基础箭头',
  356. type: "Zone",
  357. pos: { x: 0, y: 0 },
  358. properties: {
  359. type: "BaseArrow",
  360. },
  361. style: {
  362. default: {
  363. line: [{ x: event.x, y: event.y }],
  364. }
  365. }
  366. }
  367. const arrowItem = new SBaseArrowEdit(null, data);
  368. arrowItem.status = SItemStatus.Create;
  369. arrowItem.moveable = true;
  370. this.addItem(arrowItem);
  371. // this.undoStack.push(new SGraphAddCommand(this, arrowItem));
  372. arrowItem.selectable = true;
  373. this.grabItem = arrowItem;
  374. arrowItem.connect("finishCreated", this, this.finishCreated);
  375. arrowItem.connect("onContextMenu", this, this.getItem);
  376. if (this.view) {
  377. this.view.update();
  378. }
  379. } // Function addBaseArrowsItem()
  380. /**
  381. * 添加Icon类 item
  382. *
  383. * @param event 鼠标事件
  384. */
  385. addBaseIconTextItem(event: SMouseEvent): void {
  386. const data = {
  387. /** 名称 */
  388. name: 'icon',
  389. /** 图标 */
  390. type: "Text",
  391. /** 位置 */
  392. pos: { x: event.x, y: event.y },
  393. size: { width: 50, height: 50 },
  394. /** 由应用自己定义 */
  395. properties: {
  396. type: "BaseText" // 自定义类型用于区分mark与node
  397. },
  398. style: {
  399. default: {
  400. textList: [{
  401. text: '文本一',
  402. color: "#646c73",
  403. font: 14,
  404. pos: {
  405. x: 0,
  406. y: 0
  407. }
  408. },
  409. {
  410. text: '文本二',
  411. color: "#646c73",
  412. font: 14,
  413. pos: {
  414. x: 100,
  415. y: 100
  416. }
  417. }, {
  418. text: '文本三',
  419. color: "#ccc",
  420. font: 18,
  421. pos: {
  422. x: 100,
  423. y: 500
  424. }
  425. }
  426. ],
  427. url: "data:image/png;base64,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",
  428. }
  429. }
  430. };
  431. const icon = new SBaseIconTextEdit(null, data);
  432. icon.status = SItemStatus.Create;
  433. icon.moveable = true;
  434. this.addItem(icon);
  435. icon.selectable = true;
  436. this.grabItem = icon;
  437. icon.connect("finishCreated", this, this.finishCreated);
  438. icon.connect("onContextMenu", this, this.getItem);
  439. icon.$emit('finishCreated');
  440. if (this.view) {
  441. this.view.update();
  442. }
  443. } // Function addBaseIconTextItem()
  444. /**
  445. * 划线时点击位置是否是锚点
  446. *
  447. * @param event 事件
  448. * @param len 限制距离
  449. * @return 点击的锚点
  450. */
  451. clickIsAnchor(event: SMouseEvent): SAnchorItem | null {
  452. let minAnchor = null;
  453. let len: number = -1;
  454. this.root.children.forEach(item => {
  455. if (item instanceof SBaseIconTextEdit && item.anchorList && item.anchorList.length) {
  456. if (item.img && item.img instanceof SBaseImageEdit) {
  457. let scenePoint = item.img.mapFromScene(event.x, event.y);
  458. if (item.img.contains(scenePoint.x, scenePoint.y)) {
  459. let anchor = item.anchorList[0]
  460. let anchorPoint = anchor.mapToScene(0, 0);
  461. let dis = SMathUtil.pointDistance(
  462. event.x,
  463. event.y,
  464. anchorPoint.x,
  465. anchorPoint.y
  466. );
  467. if (len < 0) {
  468. minAnchor = anchor;
  469. len = dis;
  470. }
  471. if (dis < len) {
  472. minAnchor = anchor;
  473. len = dis;
  474. }
  475. }
  476. }
  477. }
  478. })
  479. console.log('-----------------------')
  480. console.log(minAnchor)
  481. console.log('-----------------------')
  482. return minAnchor;
  483. } // Function clickIsAnchor()
  484. /**
  485. * 设置管线结束锚点
  486. */
  487. setTipeEndanchor(event: SMouseEvent): void {
  488. if (this.grabItem instanceof SBasePipe) {
  489. const anc = this.clickIsAnchor(event);
  490. if (anc) {
  491. const p = anc.mapToScene(0, 0)
  492. anc.isConnected = true;
  493. event.x = p.x;
  494. event.y = p.y;
  495. if (this.grabItem.status == SItemStatus.Create) {
  496. if (this.grabItem.pointList.length) {
  497. this.grabItem.endAnchor = anc;
  498. anc.parent?.connect('changePos', this.grabItem, this.grabItem.changePos)
  499. }
  500. this.grabItem.anchor2Id = anc.id
  501. this.grabItem.node2Id = anc.parent.id
  502. this.grabItem.onMouseDown(event)
  503. this.grabItem.status = SItemStatus.Normal;
  504. this.finishCreated(this.grabItem)
  505. return
  506. }
  507. }
  508. this.grabItem.onMouseDown(event)
  509. }
  510. }
  511. /**
  512. * 对齐指定 item
  513. *
  514. * @param v 对齐类型
  515. */
  516. changeAlignItem(v: any): void {
  517. this.selectContainer.layout(v);
  518. } // Function changeAlignItem()
  519. /**
  520. * 保存数据
  521. *
  522. * @return 返回需要保存的数据
  523. */
  524. saveMsgItem(): any {
  525. // do nothing
  526. } // Function saveMsgItem()
  527. /**
  528. * 重做
  529. */
  530. redo(): void {
  531. // do nothing
  532. } // Function redo()
  533. /**
  534. * 撤销
  535. */
  536. undo(): void {
  537. // do nothing
  538. } // Function undo()
  539. /**
  540. * 完成创建的回调函数
  541. *
  542. * @param item 完成创建的item
  543. */
  544. finishCreated(item: SGraphItem): void {
  545. // do nothing
  546. } // Function finishCreated()
  547. /**
  548. * 复制
  549. */
  550. copy(): void {
  551. // do nothing
  552. } // Function copy()
  553. /**
  554. * 粘贴
  555. */
  556. paste(): void { } // Function paste()
  557. /**
  558. * 选中状态方法
  559. *
  560. * @param item 选中的 item
  561. */
  562. toggleItem(item: SGraphItem): void {
  563. this.selectContainer.clear()
  564. this.selectContainer.toggleItem(item)
  565. } // Function toggleItem()
  566. /**
  567. * 框选
  568. */
  569. addRectSelect(event: SMouseEvent) {
  570. let point = new SPoint(event.x, event.y);
  571. let rect = new SRectSelectItem(null, point);
  572. this.addItem(rect);
  573. this.grabItem = rect;
  574. } // Function addRectSelect()
  575. /**
  576. * 获取 item (常用与场景外的调用)
  577. *
  578. * @param event SMouseEvent 鼠标事件
  579. * @param item SGraphEdit|null 返回 item
  580. *
  581. */
  582. getItem(item: SGraphEdit | null, event: SMouseEvent[]) {
  583. } // Function getItem()
  584. }// Class SGraphEditScene