SBaseIconTextEdit.ts 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  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, SBaseTextEdit, SBaseImageEdit } 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.textItemList.map(item => {
  71. item.moveable = false
  72. });
  73. this.img.moveable = false;
  74. } else if (v == SItemStatus.Edit) {
  75. this.moveable = false;
  76. this.textItemList.map(item => {
  77. item.moveable = true
  78. });
  79. this.img.moveable = true;
  80. } else if (v == SItemStatus.Create) {
  81. this.moveable = true;
  82. this.textItemList.map(item => {
  83. item.moveable = false
  84. });
  85. this.img.moveable = false;
  86. }
  87. this.update();
  88. } // Set status
  89. /** 锚点 list */
  90. anchorList: SAnchorItem[] = [];
  91. /** 是否显示文字 */
  92. _showText: boolean = true;
  93. get showText(): boolean {
  94. return this._showText;
  95. } // Get showText
  96. set showText(v: boolean) {
  97. if (v === this._showText) {
  98. return;
  99. }
  100. this._showText = v;
  101. if (v) {
  102. this.textItemList.map(item => {
  103. item.show()
  104. });
  105. } else {
  106. this.textItemList.map(item => {
  107. item.hide()
  108. });
  109. }
  110. } // Set showText
  111. /** 是否被选中 */
  112. get selected(): boolean {
  113. return this._selected && this.selectable && this.enabled;
  114. } // Get selected
  115. set selected(value: boolean) {
  116. // 如果选择状态未变更
  117. if (this.selected == value) {
  118. return;
  119. }
  120. this._selected = value;
  121. if (value) {
  122. this.img.scale = 1.25;
  123. this.zOrder = ItemOrder.highLightOrder;
  124. } else {
  125. this.img.scale = 1;
  126. this.zOrder = ItemOrder.markOrder;
  127. }
  128. this.update();
  129. } // Set selected
  130. /** 是否激活 */
  131. _isActive: boolean = false;
  132. get isActive(): boolean {
  133. return this._isActive;
  134. } // Get isActive
  135. set isActive(v: boolean) {
  136. this._isActive = v;
  137. if (v) {
  138. this.cursor = "pointer";
  139. this.textItemList.map(item => {
  140. item.cursor = "pointer"
  141. });
  142. this.img.cursor = "pointer";
  143. } else {
  144. this.cursor = "auto";
  145. this.textItemList.map(item => {
  146. item.cursor = "auto"
  147. });
  148. this.img.cursor = "auto";
  149. }
  150. this.update();
  151. } // Set isActive
  152. /** 激活显示颜色 */
  153. _activeColor: SColor = new SColor("#00000033");
  154. get activeColor(): SColor {
  155. return this._activeColor;
  156. } // Get activeColor
  157. set activeColor(v: SColor) {
  158. this._activeColor = v;
  159. this.update();
  160. } // Set activeColor
  161. /** X 轴坐标 */
  162. get x(): number {
  163. return this.pos.x;
  164. } // Get x
  165. set x(v: number) {
  166. this.pos.x = v;
  167. this.$emit("changePos");
  168. this.update();
  169. } // Set x
  170. /** Y 轴坐标 */
  171. get y(): number {
  172. return this.pos.y;
  173. } // Get y
  174. set y(v: number) {
  175. this.pos.y = v;
  176. this.$emit("changePos");
  177. this.update();
  178. } // Set y
  179. /** icon 宽 */
  180. get sWidth(): number {
  181. return this.img.width;
  182. } // Get sWidth
  183. set sWidth(v: number) {
  184. this.img.width = v;
  185. this.img.origin = new SPoint(
  186. this.img.width * 0.5,
  187. this.img.height * 0.5
  188. );
  189. this.changeAnchorPoint();
  190. this.update();
  191. } // Set sWidth
  192. /** icon 高 */
  193. get sHeight(): number {
  194. return this.img.height;
  195. } // Get sHeight
  196. set sHeight(v: number) {
  197. this.img.height = v;
  198. this.img.origin = new SPoint(
  199. this.img.width * 0.5,
  200. this.img.height * 0.5
  201. );
  202. this.changeAnchorPoint();
  203. this.update();
  204. } // Set sHeight
  205. /** 是否显示锚点 */
  206. private _showAnchor: boolean = true;
  207. get showAnchor(): boolean {
  208. return this._showAnchor;
  209. } // Get showAnchor
  210. set showAnchor(v: boolean) {
  211. this._showAnchor = v;
  212. this.anchorList.forEach(t => {
  213. t.visible = v;
  214. });
  215. } // Set showAnchor
  216. /** 文本颜色 */
  217. get color(): SColor {
  218. if (this.textItemList.length) {
  219. return this.textItemList[0].color;
  220. } else {
  221. return new SColor();
  222. }
  223. } // Get color
  224. set color(v: SColor) {
  225. this.textItemList.forEach(item => {
  226. item.color = v;
  227. })
  228. this.update();
  229. } // Set color
  230. /** 文本字体 */
  231. get font(): SFont {
  232. if (this.textItemList.length) {
  233. return this.textItemList[0].font
  234. } else {
  235. return new SFont
  236. }
  237. } // Get font
  238. set font(v: SFont) {
  239. this.textItemList.forEach(item => {
  240. item.font = v
  241. })
  242. this.update();
  243. } // Set font
  244. /** 图像 */
  245. img: SBaseImageEdit = new SBaseImageEdit(this);
  246. /** 文本数组 */
  247. textItemList: SBaseTextEdit[] = [];
  248. /** 当前选中的文本item */
  249. curTextItem: SBaseTextEdit | null = null;
  250. /**
  251. * 构造体
  252. *
  253. * @param parent 父节点
  254. * @param data 锚点数据
  255. */
  256. constructor(parent: SGraphItem | null, data: Marker | null = null) {
  257. super(parent);
  258. this.showSelect = false;
  259. this.img.showSelect = false;
  260. this.data = data;
  261. } // Constructor
  262. /**
  263. * 如果 data 设置;初始化data
  264. */
  265. initData() {
  266. if (!this.data) return;
  267. if (this.data.size) {
  268. this.sWidth = this.data.size.width;
  269. this.sHeight = this.data.size.height;
  270. }
  271. this.img.connect("onMove", this, this.changeAnchorPoint.bind(this));
  272. const anchorPoint = [
  273. { x: this.img.x, y: this.img.y, id: "" },
  274. ];
  275. this.anchorList = anchorPoint.map(t => {
  276. let item = new SAnchorItem(this);
  277. if (t.id) {
  278. item.id = t.id;
  279. }
  280. item.moveTo(t.x, t.y);
  281. return item;
  282. });
  283. this.showAnchor = false;
  284. // 对文本数据进行处理
  285. if (this.data.style && this.data.style.default && this.data.style.default.textList) {
  286. const textList = this.data.style.default.textList;
  287. if (textList.length) {
  288. const textItemList: any[] = [];
  289. textList.forEach((item: any, index: number) => {
  290. let obj = new SBaseTextEdit(this, null);
  291. obj.propertyData = item;
  292. obj.text = item.text;
  293. if (item.pos) {
  294. obj.moveTo(item.pos.x, item.pos.x)
  295. } else {
  296. obj.moveTo(
  297. this.img.width * 0.5,
  298. -(this.font.size * 1.25 * 0.5) + (index) * 10
  299. );
  300. }
  301. obj.font.size = item.font;
  302. obj.isTransform = false;
  303. obj.showSelect = false;
  304. obj.color = new SColor(item.color);
  305. obj.connect('textSelect', this, this.textSelectChange)
  306. textItemList.push(obj)
  307. })
  308. this.textItemList = textItemList;
  309. }
  310. }
  311. this.img.url = this.data.style.default.url;
  312. this.x = this.data.pos.x;
  313. this.y = this.data.pos.y
  314. this.moveable = true;
  315. this.selectable = true;
  316. }// Function initData()
  317. /**
  318. * 添加文本
  319. *
  320. * @param item 文本图例
  321. */
  322. addTextItem(item: SBaseTextEdit) {
  323. this.textItemList.push(item)
  324. }// Function addTextItem
  325. /**
  326. * 删除文本
  327. *
  328. * @param index 索引
  329. */
  330. removeTextItem(index: number) {
  331. let [delteItem] = this.textItemList.splice(index, 1);
  332. if (this.scene) {
  333. this.scene.removeItem(delteItem)
  334. }
  335. }// Function removeTextItem
  336. /**
  337. * 计算并移动锚点的位置
  338. */
  339. changeAnchorPoint(): void {
  340. // 判断是否有锚点
  341. if (this.anchorList.length) {
  342. let anchorPoint = [
  343. { x: this.img.x, y: this.img.y },
  344. { x: this.img.x, y: this.img.y },
  345. { x: this.img.x, y: this.img.y },
  346. { x: this.img.x, y: this.img.y }
  347. ];
  348. this.anchorList.forEach((item, index) => {
  349. item.moveTo(anchorPoint[index].x, anchorPoint[index].y);
  350. });
  351. }
  352. } // Function changeAnchorPoint()
  353. /**
  354. * 选中的文本item变化
  355. */
  356. textSelectChange(item: SBaseTextEdit): void {
  357. this.curTextItem = item;
  358. } // Function textSelectChange()
  359. /**
  360. * 鼠标按下事件
  361. *
  362. * @param event 事件对象
  363. * @return 是否处理事件
  364. */
  365. onMouseDown(event: SMouseEvent): boolean {
  366. this.curTextItem = null;
  367. if (this.status == SItemStatus.Normal) {
  368. super.onMouseDown(event)
  369. return true;
  370. } else if (this.status == SItemStatus.Edit) {
  371. return super.onMouseDown(event);
  372. }
  373. return true;
  374. } // Function onMouseDown()
  375. /**
  376. * 宽高发发生变化
  377. *
  378. * @param oldSize 改之前的大小
  379. * @param newSize 改之后大小
  380. */
  381. onResize(oldSize: SSize, newSize: SSize) {
  382. // console.log(arguments);
  383. } // Function onResize()
  384. /**
  385. * 鼠标双击事件
  386. *
  387. * @param event 鼠标事件
  388. * @return 是否处理事件
  389. */
  390. onDoubleClick(event: SMouseEvent): boolean {
  391. // 如果位show状态 双击改对象则需改为编辑状态
  392. if (SItemStatus.Normal == this.status) {
  393. this.status = SItemStatus.Edit;
  394. this.grabItem(this);
  395. } else if (SItemStatus.Edit == this.status) {
  396. this.status = SItemStatus.Normal;
  397. this.releaseItem();
  398. }
  399. this.update();
  400. return true;
  401. } // Function onDoubleClick()
  402. /**
  403. * 宽高发生变化
  404. *
  405. * @return SRect 所有子对象的并集
  406. */
  407. boundingRect(): SRect {
  408. let rect = this.img
  409. .boundingRect()
  410. .adjusted(this.img.pos.x, this.img.pos.y, 0, 0);
  411. if (this.showText) {
  412. this.textItemList.forEach(item => {
  413. rect = rect.unioned(
  414. item
  415. .boundingRect()
  416. .adjusted(item.pos.x, item.pos.y, 0, 0)
  417. );
  418. })
  419. }
  420. return rect.adjusted(-5, -5, 10, 10);
  421. } // Function boundingRect()
  422. /**
  423. * Item 绘制操作
  424. *
  425. * @param painter 绘制对象
  426. */
  427. onDraw(painter: SPainter): void {
  428. const rect = this.boundingRect();
  429. const lw = painter.toPx(1);
  430. // 编辑态和选中态出现绘制区域
  431. if (this.status == SItemStatus.Edit || this.selected) {
  432. // doto 如果子元素被选中
  433. painter.pen.lineWidth = lw;
  434. painter.pen.lineDash = [3 * lw, 7 * lw];
  435. painter.pen.color = SColor.Black;
  436. painter.brush.color = SColor.Transparent;
  437. painter.drawRect(rect);
  438. }
  439. // 编辑态出现四个角的圆点
  440. if (this.status == SItemStatus.Edit) {
  441. painter.pen.lineDash = [];
  442. painter.brush.color = SColor.White;
  443. painter.drawCircle(rect.x, rect.y, 5 * lw)
  444. painter.drawCircle(rect.right, rect.bottom, 5 * lw)
  445. painter.drawCircle(rect.x, rect.bottom, 5 * lw)
  446. painter.drawCircle(rect.right, rect.y, 5 * lw)
  447. }
  448. if (this.isActive) {
  449. painter.pen.color = SColor.Transparent;
  450. painter.brush.color = this.activeColor;
  451. if (this.selected) {
  452. painter.shadow.shadowBlur = 10;
  453. painter.shadow.shadowColor = this.activeColor;
  454. painter.shadow.shadowOffsetX = 5;
  455. painter.shadow.shadowOffsetY = 5;
  456. painter.drawCircle(
  457. this.img.x,
  458. this.img.y,
  459. (this.sWidth / 2.0 + 3) * 1.25
  460. );
  461. } else {
  462. painter.drawCircle(
  463. this.img.x,
  464. this.img.y,
  465. this.sWidth / 2.0 + 3
  466. );
  467. }
  468. } else {
  469. if (this.selected) {
  470. painter.pen.color = SColor.Transparent;
  471. painter.brush.color = SColor.Transparent;
  472. painter.shadow.shadowBlur = 10;
  473. painter.shadow.shadowColor = new SColor(`#00000033`);
  474. painter.shadow.shadowOffsetX = 5;
  475. painter.shadow.shadowOffsetY = 5;
  476. painter.drawCircle(this.img.x, this.img.y, this.sWidth / 2.0);
  477. }
  478. }
  479. } // Function onDraw()
  480. /**
  481. * 返回对象储存的相关数据
  482. *
  483. * @return 相关数据
  484. */
  485. toData(): any {
  486. if (this.data) {
  487. if (this.data.size) {
  488. this.data.size.width = this.sWidth;
  489. this.data.size.height = this.sHeight;
  490. }
  491. this.data.style.default.text = JSON.stringify(this.textItemList);
  492. this.data.pos.x = this.pos.x;
  493. this.data.pos.y = this.pos.y;
  494. this.data.style.default.zorder = this.zOrder;
  495. this.data.style.default.url = this.img.url;
  496. }
  497. const anchorPoint = [
  498. { x: this.img.x, y: this.img.y, id: "" },
  499. ];
  500. this.anchorList = anchorPoint.map(t => {
  501. let item = new SAnchorItem(this);
  502. if (t.id) {
  503. item.id = t.id;
  504. }
  505. item.moveTo(t.x, t.y);
  506. return item;
  507. });
  508. // this.textItemList.font.size = this.data.style.default.font || 12;
  509. // this.img.url = this.data.style.default.url;
  510. if (this.data) {
  511. this.x = this.data.pos.x;
  512. this.y = this.data.pos.y
  513. }
  514. } // Function toData()
  515. } // Class SBaseIconTextEdit