SImageLegendItem.ts 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. import { SGraphItem } from "@saga-web/graph/lib";
  2. import { SIconTextItem } from '@saga-web/big/lib/items/SIconTextItem';
  3. import { Legend } from '../types/Legend';
  4. import { ItemOrder } from '@saga-web/big/lib';
  5. import { SImgTextItem } from './SImgTextItem';
  6. /**
  7. * 图例节点Item(图标类型)
  8. *
  9. * * @author 张宇(taohuzy@163.com)
  10. */
  11. // export class SImageLegendItem extends SIconTextItem {
  12. export class SImageLegendItem extends SImgTextItem {
  13. /** 图例节点对象数据 */
  14. data: Legend;
  15. /** 图例数量 */
  16. _num: number = 0;
  17. get num(): number {
  18. return this._num;
  19. }
  20. set num(v: number) {
  21. if (v) {
  22. this._num = v;
  23. this.data.Num = v;
  24. } else {
  25. this._num = 1;
  26. this.data.Num = 1;
  27. }
  28. this.update();
  29. }
  30. /**
  31. * 构造函数
  32. *
  33. * @param parent 指向父对象
  34. * @param data 图例节点对象数据
  35. */
  36. constructor(parent: SGraphItem | null, data: Legend) {
  37. super(parent);
  38. this.zOrder = ItemOrder.markOrder;
  39. this.data = data;
  40. this.id = data.ID;
  41. this.name = data.Name;
  42. this.moveTo(data.Pos.X, data.Pos.Y);
  43. if (data.Num) {
  44. this._num = data.Num;
  45. }
  46. if (data.Size) {
  47. this.width = data.Size.Width;
  48. this.height = data.Size.Height;
  49. }
  50. if (data.Num) {
  51. this.text = `${data.Name}${data.Num > 1?` × ${data.Num}`:''}`;
  52. }
  53. if (data.Properties && data.Properties.Url) {
  54. this.img.url = data.Properties.Url;
  55. }
  56. }
  57. toData(): Legend {
  58. this.data.Pos = {X: this.x, Y: this.y};
  59. this.data.Size = {Width: this.width, Height: this.height};
  60. this.data.Name = this.name;
  61. this.data.Properties.Url = this.img.url;
  62. return this.data;
  63. }
  64. } // Class SImageLegendItem