PTopoScene.ts 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. import { SBaseEditScene, SBaseLineEdit, SBaseTextEdit, SBaseImageEdit, SBaseExpainEdit } from "./../big-edit";
  2. import { SPersagyImageEdit } from "./"
  3. // import { SGraphItem } from "@persagy-web/graph/";
  4. import { SGraphEdit } from "./../edit"
  5. import { SMouseEvent, SUndoStack } from "@persagy-web/base/lib";
  6. import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
  7. import { uuid } from "./../big-edit/until";
  8. // 引入命令
  9. import { SGraphAddCommand } from "./../edit/commands/SGraphAddCommand"
  10. export class PTopoScene extends SBaseEditScene {
  11. undoStack = new SUndoStack();
  12. constructor() {
  13. super()
  14. // // 选择绑定选额item事件
  15. this.selectContainer.connect("listChange", this, this.listChange);
  16. }
  17. /**
  18. * 选中返回的选中item回调方法
  19. *
  20. * @param event 鼠标事件参数
  21. */
  22. listChange(list: any): void {
  23. this.emitChoice(list.itemList)
  24. }
  25. /**
  26. * 选中返回的选中item回调方法(用于场景的外部调用)
  27. *
  28. * @param list 选中的item数组
  29. */
  30. emitChoice(list: any) {
  31. }
  32. /**
  33. * 鼠标左键按下
  34. *
  35. * @param event 鼠标事件参数
  36. */
  37. onMouseDown(event: SMouseEvent): any {
  38. if (this.editCmd == "EditBaseLine") {
  39. this.addLine(event)
  40. this.clearCmdStatus();
  41. } else if (this.editCmd == "EditBasetext") {
  42. this.addTextItem(event);
  43. this.clearCmdStatus();
  44. } else if (this.editCmd == "EditBaseImage") {
  45. this.addImageItem(event)
  46. this.clearCmdStatus();
  47. } else if (this.editCmd == "EditBasePostil") {
  48. this.addExplainItem(event)
  49. this.clearCmdStatus();
  50. } else if (this.editCmd == "EditBasePolygon") {
  51. console.log('编辑多边形')
  52. } else if (this.editCmd == "EditBaseTriangle") {
  53. console.log('编辑三角形')
  54. } else if (this.editCmd == "EditBaseCircle") {
  55. console.log('编辑圆')
  56. } else if (this.editCmd == "EditBaseArrows") {
  57. console.log('编辑箭头')
  58. } else if (this.editCmd == "") {
  59. super.onMouseDown(event);
  60. }
  61. }
  62. /**
  63. * 鼠标右键事件
  64. *
  65. * @param event 鼠标事件参数
  66. */
  67. onContextMenu(event: SMouseEvent): boolean {
  68. if (!super.onContextMenu(event)) {
  69. this.getItem(event, null)
  70. }
  71. return true
  72. }
  73. /////////////////////////////////////////////////////////////////////////////////////////////////
  74. //新增 item 类方法;
  75. /**
  76. * 新增基础类直线
  77. *
  78. * @param event 鼠标事件参数
  79. */
  80. addLine(event: SMouseEvent): void {
  81. const data = {
  82. /** ID */
  83. ID: uuid(),
  84. /** 名称 */
  85. Name: '基础直线',
  86. /** 图标(Image),线类型(Line) */
  87. Type: "BaseLine",
  88. /** 位置 */
  89. Pos: { X: 0, Y: 0 },
  90. /** 由应用自己定义 */
  91. Properties: {
  92. },
  93. Style: {
  94. Line: [{ X: event.x, Y: event.y }],
  95. }
  96. }
  97. const lineItem = new SBaseLineEdit(null, data);
  98. lineItem.status = SItemStatus.Create;
  99. this.addItem(lineItem);
  100. this.undoStack.push(new SGraphAddCommand(this, lineItem));
  101. lineItem.selectable = true;
  102. this.grabItem = lineItem;
  103. lineItem.connect("finishCreated", this, this.finishCreated);
  104. if (this.view) {
  105. this.view.update();
  106. }
  107. }
  108. /**
  109. * 新增基础类文本
  110. *
  111. * @param event 鼠标事件参数
  112. */
  113. addTextItem(event: SMouseEvent): void {
  114. const data = {
  115. /** ID */
  116. ID: uuid(),
  117. /** 名称 */
  118. Name: '基础文本',
  119. /** 图标 */
  120. Type: "BaseText",
  121. /** 位置 */
  122. Pos: { X: event.x, Y: event.y },
  123. /** 由应用自己定义 */
  124. Properties: {
  125. // IconUrl: require(`../../assets/images/t-text-hover.png`),
  126. Text: '请在右侧属性栏输入文字!',
  127. Color: "#646c73",
  128. Font: 14,
  129. BackgroundColor: "#f7f9facc"
  130. },
  131. Style: {}
  132. }
  133. const item = new SBaseExpainEdit(null, data);
  134. item.moveTo(event.x, event.y);
  135. item.selectable = true;
  136. item.moveable = true;
  137. this.addItem(item);
  138. this.undoStack.push(new SGraphAddCommand(this, item));
  139. // this.Markers.push(item);
  140. this.grabItem = null;
  141. // this.focusItem = item;
  142. this.finishCreated(item);
  143. // this.scenceUpdate(this);
  144. }
  145. /**
  146. * 新增基础类注释
  147. *
  148. * @param event 鼠标事件参数
  149. */
  150. addExplainItem(event: SMouseEvent): void {
  151. const data = {
  152. /** ID */
  153. ID: uuid(),
  154. /** 名称 */
  155. Name: '基础注释文本',
  156. /** 图标 */
  157. Type: "BaseExplain",
  158. /** 位置 */
  159. Pos: { X: event.x, Y: event.y },
  160. /** 由应用自己定义 */
  161. Properties: {
  162. // IconUrl: require(`../../assets/images/t-text-hover.png`),
  163. Text: '请在右侧属性栏输入文字!',
  164. Color: "#646c73",
  165. Font: 14,
  166. BackgroundColor: "#f7f9facc"
  167. },
  168. Style: {}
  169. }
  170. const item = new SBaseTextEdit(null, data);
  171. item.moveTo(event.x, event.y);
  172. item.selectable = true;
  173. item.moveable = true;
  174. this.addItem(item);
  175. this.undoStack.push(new SGraphAddCommand(this, item));
  176. // this.Markers.push(item);
  177. this.grabItem = null;
  178. // this.focusItem = item;
  179. this.finishCreated(item);
  180. // this.scenceUpdate(this);
  181. }
  182. /**
  183. * 新增基础类图片
  184. *
  185. * @param event 鼠标事件参数
  186. */
  187. addImageItem(event: SMouseEvent): void {
  188. const data = {
  189. /** ID */
  190. ID: uuid(),
  191. /** 名称 */
  192. Name: '基础图片',
  193. Num: 1,
  194. /** 图标(Image),线类型(Line) */
  195. Type: "BaseImage",
  196. /** 位置 */
  197. Pos: { X: event.x, Y: event.y },
  198. /** 由应用自己定义 */
  199. Properties: {
  200. // IconUrl: require(`../../assets/images/t-img-hover.png`),
  201. StrokeColor: "#c0ccda",
  202. Url: '',
  203. },
  204. Style: {}
  205. }
  206. const item = new SPersagyImageEdit(null, data);
  207. item.selectable = true;
  208. item.moveable = true;
  209. this.addItem(item);
  210. this.undoStack.push(new SGraphAddCommand(this, item));
  211. this.Markers.push(item);
  212. this.finishCreated(item);
  213. }
  214. /////////////////////////////////////////////////////////////////////////////////////////////////
  215. //修改 item 样式,数据等方法;
  216. updateStyle(): void {
  217. // 修改样式
  218. }
  219. /**
  220. * item 创建完成后回调
  221. *
  222. * @param event 鼠标事件参数
  223. */
  224. finishCreated(item: SGraphEdit): void {
  225. this.grabItem = null;
  226. item.status = SItemStatus.Normal;
  227. }
  228. /**
  229. * 修改 cmdstatus 函数;常在在业务中调用
  230. *
  231. */
  232. clearCmdStatus() {
  233. }
  234. /**
  235. * 获取item (常用与场景外的调用F)
  236. * @param event SMouseEvent 鼠标事件
  237. * @param item SGraphEdit|null 返回item
  238. *
  239. */
  240. getItem(event: SMouseEvent, item: SGraphEdit | null) {
  241. }
  242. /**
  243. * 重做
  244. *
  245. * @return any
  246. */
  247. redo(): void {
  248. if (this.grabItem && this.grabItem.redo) {
  249. this.grabItem.redo()
  250. } else {
  251. this.undoStack.redo();
  252. }
  253. }
  254. /**
  255. * 撤销
  256. *
  257. * @return any
  258. */
  259. undo(): void {
  260. if (this.grabItem && this.grabItem.undo) {
  261. this.grabItem.undo()
  262. } else {
  263. this.undoStack.undo();
  264. }
  265. }
  266. }