1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import { SGraphItem } from "@saga-web/graph/lib";
- import { SIconTextItem } from '@saga-web/big/lib/items/SIconTextItem';
- import { Legend } from '../types/Legend';
- import { ItemOrder } from '@saga-web/big/lib';
- import { SImgTextItem } from './SImgTextItem';
- /**
- * 图例节点Item(图标类型)
- *
- * * @author 张宇(taohuzy@163.com)
- */
- // export class SImageLegendItem extends SIconTextItem {
- export class SImageLegendItem extends SImgTextItem {
- /** 图例节点对象数据 */
- data: Legend;
- /** 图例数量 */
- _num: number = 0;
- get num(): number {
- return this._num;
- }
- set num(v: number) {
- if (v) {
- this._num = v;
- this.data.Num = v;
- } else {
- this._num = 1;
- this.data.Num = 1;
- }
- this.update();
- }
- /**
- * 构造函数
- *
- * @param parent 指向父对象
- * @param data 图例节点对象数据
- */
- constructor(parent: SGraphItem | null, data: Legend) {
- super(parent);
- this.zOrder = ItemOrder.markOrder;
- this.data = data;
- this.id = data.ID;
- this.name = data.Name;
- this.moveTo(data.Pos.X, data.Pos.Y);
- if (data.Num) {
- this._num = data.Num;
- }
- if (data.Size) {
- this.width = data.Size.Width;
- this.height = data.Size.Height;
- }
- if (data.Num) {
- this.text = `${data.Name}${data.Num > 1?` × ${data.Num}`:''}`;
- }
- if (data.Properties && data.Properties.Url) {
- this.img.url = data.Properties.Url;
- }
- }
- toData(): Legend {
- this.data.Pos = {X: this.x, Y: this.y};
- this.data.Size = {Width: this.width, Height: this.height};
- this.data.Name = this.name;
- this.data.Properties.Url = this.img.url;
- return this.data;
- }
- } // Class SImageLegendItem
|