SBaseIconTextEdit.ts 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  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) 2009-2020. 博锐尚格科技股份有限公司
  21. * ~8888'
  22. * .!88~ All rights reserved.
  23. *
  24. * *********************************************************************************************************************
  25. */
  26. import {
  27. SImageItem,
  28. STextItem,
  29. SAnchorItem,
  30. SGraphItem,
  31. } from "@persagy-web/graph";
  32. import { SItemStatus, ItemOrder } from "@persagy-web/big";
  33. import { Anchor } from "@persagy-web/big/lib/types/topology/Anchor"
  34. import { SMouseEvent } from "@persagy-web/base";
  35. import {
  36. SSize,
  37. SRect,
  38. SPainter,
  39. SColor,
  40. SFont,
  41. SPoint
  42. } from "@persagy-web/draw";
  43. import { SGraphEdit } from "..";
  44. import { Marker } from "../type/Marker";
  45. /**
  46. * 图标
  47. *
  48. * @author 韩耀龙 <han_yao_long@163.com>
  49. */
  50. export class SBaseIconTextEdit extends SGraphEdit {
  51. /** item 数据*/
  52. _data: Marker | null = null;
  53. get data(): Marker | null {
  54. return this._data;
  55. } // Get data
  56. set data(v: Marker | null) {
  57. this._data = v;
  58. this.initData()
  59. this.update();
  60. } // Set data
  61. /** item 状态 */
  62. _status: SItemStatus = SItemStatus.Normal;
  63. get status(): SItemStatus {
  64. return this._status;
  65. } // Get status
  66. set status(v: SItemStatus) {
  67. this._status = v;
  68. if (v == SItemStatus.Normal) {
  69. this.moveable = true;
  70. this.textItem.moveable = false;
  71. this.img.moveable = false;
  72. } else if (v == SItemStatus.Edit) {
  73. this.moveable = false;
  74. this.textItem.moveable = true;
  75. this.img.moveable = true;
  76. } else if (v == SItemStatus.Create) {
  77. this.moveable = true;
  78. this.textItem.moveable = false;
  79. this.img.moveable = false;
  80. }
  81. this.update();
  82. } // Set status
  83. /** 锚点 list */
  84. anchorList: SAnchorItem[] = [];
  85. /** 是否显示文字 */
  86. _showText: boolean = true;
  87. get showText(): boolean {
  88. return this._showText;
  89. } // Get showText
  90. set showText(v: boolean) {
  91. if (v === this._showText) {
  92. return;
  93. }
  94. this._showText = v;
  95. if (v) {
  96. this.textItem.show();
  97. } else {
  98. this.textItem.hide();
  99. }
  100. } // Set showText
  101. /** 是否被选中 */
  102. get selected(): boolean {
  103. return this._selected && this.selectable && this.enabled;
  104. } // Get selected
  105. set selected(value: boolean) {
  106. // 如果选择状态未变更
  107. if (this.selected == value) {
  108. return;
  109. }
  110. this._selected = value;
  111. if (value) {
  112. this.img.scale = 1.25;
  113. this.zOrder = ItemOrder.highLightOrder;
  114. } else {
  115. this.img.scale = 1;
  116. this.zOrder = ItemOrder.markOrder;
  117. }
  118. this.update();
  119. } // Set selected
  120. /** 是否激活 */
  121. _isActive: boolean = false;
  122. get isActive(): boolean {
  123. return this._isActive;
  124. } // Get isActive
  125. set isActive(v: boolean) {
  126. this._isActive = v;
  127. if (v) {
  128. this.cursor = "pointer";
  129. this.textItem.cursor = "pointer";
  130. this.img.cursor = "pointer";
  131. } else {
  132. this.cursor = "auto";
  133. this.textItem.cursor = "auto";
  134. this.img.cursor = "auto";
  135. }
  136. this.update();
  137. } // Set isActive
  138. /** 激活显示颜色 */
  139. _activeColor: SColor = new SColor("#00000033");
  140. get activeColor(): SColor {
  141. return this._activeColor;
  142. } // Get activeColor
  143. set activeColor(v: SColor) {
  144. this._activeColor = v;
  145. this.update();
  146. } // Set activeColor
  147. /** X 轴坐标 */
  148. get x(): number {
  149. return this.pos.x;
  150. } // Get x
  151. set x(v: number) {
  152. this.pos.x = v;
  153. this.$emit("changePos");
  154. this.update();
  155. } // Set x
  156. /** Y 轴坐标 */
  157. get y(): number {
  158. return this.pos.y;
  159. } // Get y
  160. set y(v: number) {
  161. this.pos.y = v;
  162. this.$emit("changePos");
  163. this.update();
  164. } // Set y
  165. /** icon 宽 */
  166. get sWidth(): number {
  167. return this.img.width;
  168. } // Get sWidth
  169. set sWidth(v: number) {
  170. this.img.width = v;
  171. this.img.origin = new SPoint(
  172. this.img.width * 0.5,
  173. this.img.height * 0.5
  174. );
  175. this.changeAnchorPoint();
  176. this.update();
  177. } // Set sWidth
  178. /** icon 高 */
  179. get sHeight(): number {
  180. return this.img.height;
  181. } // Get sHeight
  182. set sHeight(v: number) {
  183. this.img.height = v;
  184. this.img.origin = new SPoint(
  185. this.img.width * 0.5,
  186. this.img.height * 0.5
  187. );
  188. this.changeAnchorPoint();
  189. this.update();
  190. } // Set sHeight
  191. /** 是否显示锚点 */
  192. private _showAnchor: boolean = false;
  193. get showAnchor(): boolean {
  194. return this._showAnchor;
  195. } // Get showAnchor
  196. set showAnchor(v: boolean) {
  197. this._showAnchor = v;
  198. this.anchorList.forEach(t => {
  199. t.visible = v;
  200. });
  201. } // Set showAnchor
  202. /** 文本内容 */
  203. get text(): string {
  204. return this.textItem.text;
  205. } // Get text
  206. set text(v: string) {
  207. this.textItem.text = v;
  208. this.update();
  209. } // Set text
  210. /** 文本颜色 */
  211. get color(): SColor {
  212. return this.textItem.color;
  213. } // Get color
  214. set color(v: SColor) {
  215. this.textItem.color = v;
  216. this.update();
  217. } // Set color
  218. /** 文本字体 */
  219. get font(): SFont {
  220. return this.textItem.font;
  221. } // Get font
  222. set font(v: SFont) {
  223. this.textItem.font = v;
  224. this.update();
  225. } // Set font
  226. /** 图像 */
  227. img: SImageItem = new SImageItem(this);
  228. /** 文本 */
  229. textItem: STextItem = new STextItem(this);
  230. /**
  231. * 构造体
  232. *
  233. * @param parent 父节点
  234. * @param data 锚点数据
  235. */
  236. constructor(parent: SGraphItem | null, data: Marker | null = null) {
  237. super(parent);
  238. this.data = data;
  239. } // Constructor
  240. /**
  241. * 计算并移动锚点的位置
  242. */
  243. initData() {
  244. if (!this.data) return;
  245. if (this.data.size) {
  246. this.sWidth = this.data.size.width;
  247. this.sHeight = this.data.size.height;
  248. }
  249. this.img.connect("onMove", this, this.changeAnchorPoint.bind(this));
  250. const anchorPoint = [
  251. { x: this.img.x, y: this.img.y, id: "" },
  252. ];
  253. this.anchorList = anchorPoint.map(t => {
  254. let item = new SAnchorItem(this);
  255. if (t.id) {
  256. item.id = t.id;
  257. }
  258. item.moveTo(t.x, t.y);
  259. return item;
  260. });
  261. this.showAnchor = false;
  262. this.textItem.text = this.data.style.default.text || '';
  263. this.textItem.font.size = this.data.style.default.font || 12;
  264. this.img.url = this.data.style.default.url;
  265. // this.img.width = 100;
  266. // this.img.height = 100;
  267. this.x = this.data.pos.x;
  268. this.y = this.data.pos.y
  269. // 偏移二分之一文本高度
  270. this.textItem.moveTo(
  271. this.img.width * 0.5,
  272. -(this.font.size * 1.25 * 0.5)
  273. );
  274. this.moveable = true;
  275. this.selectable = true;
  276. }// Function initData()
  277. /**
  278. * 计算并移动锚点的位置
  279. */
  280. private changeAnchorPoint(): void {
  281. // 判断是否有锚点
  282. if (this.anchorList.length) {
  283. let anchorPoint = [
  284. { x: this.img.x, y: this.img.y },
  285. { x: this.img.x, y: this.img.y },
  286. { x: this.img.x, y: this.img.y },
  287. { x: this.img.x, y: this.img.y }
  288. ];
  289. this.anchorList.forEach((item, index) => {
  290. item.moveTo(anchorPoint[index].x, anchorPoint[index].y);
  291. });
  292. }
  293. } // Function changeAnchorPoint()
  294. /**
  295. * 鼠标按下事件
  296. *
  297. * @param event 事件对象
  298. * @return 是否处理事件
  299. */
  300. onMouseDown(event: SMouseEvent): boolean {
  301. if (this.status == SItemStatus.Normal) {
  302. return super.onMouseDown(event);
  303. } else if (this.status == SItemStatus.Edit) {
  304. return super.onMouseDown(event);
  305. }
  306. return true;
  307. } // Function onMouseDown()
  308. /**
  309. * 宽高发发生变化
  310. *
  311. * @param oldSize 改之前的大小
  312. * @param newSize 改之后大小
  313. */
  314. onResize(oldSize: SSize, newSize: SSize) {
  315. console.log(arguments);
  316. } // Function onResize()
  317. /**
  318. * 鼠标双击事件
  319. *
  320. * @param event 鼠标事件
  321. * @return 是否处理事件
  322. */
  323. onDoubleClick(event: SMouseEvent): boolean {
  324. // 如果位show状态 双击改对象则需改为编辑状态
  325. if (SItemStatus.Normal == this.status) {
  326. this.status = SItemStatus.Edit;
  327. this.grabItem(this);
  328. } else if (SItemStatus.Edit == this.status) {
  329. this.status = SItemStatus.Normal;
  330. this.releaseItem();
  331. }
  332. this.update();
  333. return true;
  334. } // Function onDoubleClick()
  335. /**
  336. * 宽高发生变化
  337. *
  338. * @return SRect 所有子对象的并集
  339. */
  340. boundingRect(): SRect {
  341. let rect = this.img
  342. .boundingRect()
  343. .adjusted(this.img.pos.x, this.img.pos.y, 0, 0);
  344. if (this.showText) {
  345. rect = rect.unioned(
  346. this.textItem
  347. .boundingRect()
  348. .adjusted(this.textItem.pos.x, this.textItem.pos.y, 0, 0)
  349. );
  350. }
  351. return rect.adjusted(-5, -5, 10, 10);
  352. } // Function boundingRect()
  353. /**
  354. * Item 绘制操作
  355. *
  356. * @param painter 绘制对象
  357. */
  358. onDraw(painter: SPainter): void {
  359. if (this.status == SItemStatus.Edit) {
  360. painter.pen.lineWidth = painter.toPx(1);
  361. painter.pen.lineDash = [painter.toPx(3), painter.toPx(7)];
  362. painter.pen.color = SColor.Black;
  363. painter.brush.color = SColor.Transparent;
  364. painter.drawRect(this.boundingRect());
  365. }
  366. if (this.isActive) {
  367. painter.pen.color = SColor.Transparent;
  368. painter.brush.color = this.activeColor;
  369. if (this.selected) {
  370. painter.shadow.shadowBlur = 10;
  371. painter.shadow.shadowColor = this.activeColor;
  372. painter.shadow.shadowOffsetX = 5;
  373. painter.shadow.shadowOffsetY = 5;
  374. painter.drawCircle(
  375. this.img.x,
  376. this.img.y,
  377. (this.sWidth / 2.0 + 3) * 1.25
  378. );
  379. } else {
  380. painter.drawCircle(
  381. this.img.x,
  382. this.img.y,
  383. this.sWidth / 2.0 + 3
  384. );
  385. }
  386. } else {
  387. if (this.selected) {
  388. painter.pen.color = SColor.Transparent;
  389. painter.brush.color = SColor.Transparent;
  390. painter.shadow.shadowBlur = 10;
  391. painter.shadow.shadowColor = new SColor(`#00000033`);
  392. painter.shadow.shadowOffsetX = 5;
  393. painter.shadow.shadowOffsetY = 5;
  394. painter.drawCircle(this.img.x, this.img.y, this.sWidth / 2.0);
  395. }
  396. }
  397. } // Function onDraw()
  398. /**
  399. * 返回对象储存的相关数据
  400. *
  401. * @return 相关数据
  402. */
  403. toData(): any {
  404. if (this.data) {
  405. if (this.data.size) {
  406. this.data.size.width = this.sWidth;
  407. this.data.size.height = this.sHeight;
  408. }
  409. this.data.style.default.text = this.textItem.text;
  410. this.data.pos.x = this.pos.x;
  411. this.data.pos.y = this.pos.y;
  412. this.data.style.default.zorder = this.zOrder;
  413. this.data.style.default.url = this.img.url;
  414. }
  415. const anchorPoint = [
  416. { x: this.img.x, y: this.img.y, id: "" },
  417. ];
  418. this.anchorList = anchorPoint.map(t => {
  419. let item = new SAnchorItem(this);
  420. if (t.id) {
  421. item.id = t.id;
  422. }
  423. item.moveTo(t.x, t.y);
  424. return item;
  425. });
  426. this.textItem.font.size = this.data.style.default.font || 12;
  427. this.img.url = this.data.style.default.url;
  428. // this.img.width = 100;
  429. // this.img.height = 100;
  430. this.x = this.data.pos.x;
  431. this.y = this.data.pos.y
  432. // 偏移二分之一文本高度
  433. this.textItem.moveTo(
  434. this.img.width * 0.5,
  435. -(this.font.size * 1.25 * 0.5)
  436. );
  437. this.moveable = true;
  438. this.selectable = true;
  439. } // Function toData()
  440. } // Class SBaseIconTextEdit