SImageLegendItem.ts 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. // @ts-nocheck
  2. import { SGraphItem } from "@saga-web/graph/lib";
  3. import { SIconTextItem } from '@saga-web/big/lib/items/SIconTextItem';
  4. import { Legend } from '../types/Legend';
  5. import { ItemOrder, SItemStatus } from '@saga-web/big/lib';
  6. import { SFont, SColor, SPainter, SRect } from '@saga-web/draw/lib';
  7. import { SMouseEvent } from "@saga-web/base/lib";
  8. /**
  9. * 图例节点Item(图标类型)
  10. *
  11. * * @author 张宇(taohuzy@163.com)
  12. */
  13. export class SImageLegendItem extends SIconTextItem {
  14. /** 图例节点对象数据 */
  15. data: Legend;
  16. /** 图标缩放比例 */
  17. _iconScale: number = 0.6;
  18. /** 图例数量 */
  19. _num: number = 1;
  20. get num(): number {
  21. return this._num;
  22. }
  23. set num(v: number) {
  24. if (v) {
  25. this._num = v;
  26. this.data.Num = v;
  27. } else {
  28. this._num = 1;
  29. this.data.Num = 1;
  30. }
  31. this.data.Properties.Num = this._num;
  32. this.textItem.text = `${this.name}${this.num > 1 ? `×${this.num}` : ''}`;
  33. this.update();
  34. }
  35. get text(): string {
  36. return this.textItem.text;
  37. }
  38. set text(v: string) {
  39. this.name = v;
  40. this.data.Name = v;
  41. this.textItem.text = `${this.name}${this.num > 1 ? `×${this.num}` : ''}`;
  42. this.update();
  43. }
  44. /** 是否蒙版遮罩 */
  45. _maskFlag: boolean = false;
  46. get maskFlag(): boolean {
  47. return this._maskFlag;
  48. }
  49. set maskFlag(v: boolean) {
  50. if (v === this._maskFlag) {
  51. return
  52. }
  53. this._maskFlag = v;
  54. if (v) {
  55. this.textItem.visible = false;
  56. } else {
  57. this.textItem.visible = true;
  58. }
  59. this.update()
  60. }
  61. /**
  62. * 构造函数
  63. *
  64. * @param parent 指向父对象
  65. * @param data 图例节点对象数据
  66. */
  67. constructor(parent: SGraphItem | null, data: Legend) {
  68. super(parent, data.AnchorList);
  69. this.isTransform = false;
  70. this.zOrder = ItemOrder.markOrder;
  71. this.data = data;
  72. this.id = data.ID;
  73. this.name = data.Name;
  74. this.text = data.Name;
  75. this.moveTo(data.Pos.X, data.Pos.Y);
  76. if (data.Num) {
  77. this.num = data.Num;
  78. }
  79. if (data.Size) {
  80. this.width = data.Size.Width * this._iconScale;
  81. this.height = data.Size.Height * this._iconScale;
  82. }
  83. if (data.Properties.Zorder) {
  84. this.zOrder = data.Properties.Zorder;
  85. }
  86. if (data.Properties && data.Properties.Url) {
  87. this.img.url = data.Properties.Url;
  88. }
  89. if (data.Properties && data.Properties.Size && data.Properties.Size.Width) {
  90. this.sWidth = data.Properties.Size.Width * this._iconScale;
  91. }
  92. if (data.Properties && data.Properties.Size && data.Properties.Size.Height) {
  93. this.sHeight = data.Properties.Size.Height * this._iconScale;
  94. }
  95. if (data.Properties.ImgPos) {
  96. this.img.moveTo(data.Properties.ImgPos.X, data.Properties.ImgPos.Y);
  97. }
  98. if (data.Properties && data.Properties.ImgRotate) {
  99. this.img.rotate = data.Properties.ImgRotate;
  100. }
  101. if (data.Properties && data.Properties.font) {
  102. this.font = new SFont("sans-serif", data.Properties.font);
  103. }
  104. if (data.Properties.TextPos) {
  105. this.textItem.moveTo(data.Properties.TextPos.X, data.Properties.TextPos.Y);
  106. } else {
  107. // 偏移二分之一文本高度
  108. this.textItem.moveTo((this.img.width * 0.5), -(this.font.size * 1.25 * 0.5));
  109. }
  110. if (data.Properties && data.Properties.color) {
  111. this.color = new SColor(data.Properties.color);
  112. }
  113. if (data.Properties && data.Properties.IsActive) {
  114. this.isActive = data.Properties.IsActive;
  115. }
  116. if (data.AttachObjectIds && data.AttachObjectIds.length) {
  117. this.isActive = true;
  118. }
  119. if (data.Properties && data.Properties.FrameColor) {
  120. this.activeColor = new SColor(data.Properties.FrameColor);
  121. }
  122. }
  123. /**
  124. * 鼠标按下事件
  125. *
  126. * @param event 保存事件参数
  127. * @return boolean
  128. */
  129. onMouseDown(event: SMouseEvent): boolean {
  130. if (event.buttons == 1)
  131. this.$emit("legendItemClick", event);
  132. return super.onMouseDown(event);
  133. } // Function onMouseDown()
  134. toData(): Legend {
  135. this.data.Pos = { X: this.x, Y: this.y };
  136. this.data.Size = { Width: this.width / this._iconScale, Height: this.height/ this._iconScale };
  137. this.data.Name = this.name;
  138. this.data.Properties.Zorder = this.zOrder;
  139. this.data.Properties.Url = this.img.url;
  140. this.data.Properties.TextPos = { X: this.textItem.x, Y: this.textItem.y };
  141. this.data.Properties.ImgPos = { X: this.img.x, Y: this.img.y };
  142. this.data.Properties.ImgRotate = this.img.rotate;
  143. this.data.Properties.Size = {
  144. Width: this.sWidth / this._iconScale,
  145. Height: this.sHeight / this._iconScale
  146. };
  147. this.data.Properties.font = this.font.size;
  148. this.data.Properties.color = this.color.value;
  149. this.data.Properties.Font = this.font.size;
  150. this.data.Properties.Coler = this.color.value;
  151. this.data.Properties.FrameColor = this.activeColor.value;
  152. this.data.Properties.IsActive = this.isActive;
  153. this.data.AnchorList = this.anchorList.map(t => {
  154. return {
  155. ID: t.id,
  156. Pos: {
  157. X: t.x,
  158. Y: t.y
  159. }
  160. }
  161. })
  162. return this.data;
  163. }
  164. /**
  165. * Item绘制框架
  166. *
  167. * @param painter painter对象
  168. * @param rect 绘制区域
  169. */
  170. onPaint(painter: SPainter, rect: SRect): void {
  171. super.onPaint(painter, rect);
  172. if (this.maskFlag && this.status == SItemStatus.Normal) {
  173. painter.pen.color = SColor.Transparent;
  174. painter.brush.color = new SColor("#ffffffa1");
  175. if (this.selected) {
  176. painter.drawCircle(this.img.x, this.img.y, (this.sWidth / 2.0) * 1.25);
  177. } else {
  178. painter.drawCircle(this.img.x, this.img.y, this.sWidth / 2.0);
  179. }
  180. }
  181. } // Function onPaint()
  182. } // Class SImageLegendItem