|
@@ -7,21 +7,22 @@ import { dataItemPath, dataItem, dataSpaceItem, dataInterface, PolygonItemInterf
|
|
|
* 不规则多边形Item类
|
|
|
*
|
|
|
*/
|
|
|
-export class SGraphyPolygonItem extends SGraphyItem {
|
|
|
+export default class SGraphyPolygonItem extends SGraphyItem {
|
|
|
pointArr: SPoint[];
|
|
|
fillColor: SColor = new SColor('#F2F6FC');
|
|
|
color: SColor = SColor.Black;
|
|
|
- width: number = 0;
|
|
|
+ width: number = 200;
|
|
|
businessId: string | null;
|
|
|
id: string | null;
|
|
|
centerOfGravityPoint: { x: number, y: number };
|
|
|
businessName: null | string | undefined; //业务空间名字
|
|
|
initName: null | string | undefined; //空间名字
|
|
|
- viewText: string = '111' //绘出的文案
|
|
|
+ viewText: string = '' //绘出的文案
|
|
|
isBusiness: number = 1;
|
|
|
cacheColor: SColor = SColor.Black //需要缓存的边框
|
|
|
cacheFillColor: SColor = new SColor('#F2F6FC'); //需要缓存的填充色
|
|
|
- cacheWidth: number = 0;
|
|
|
+ cacheWidth: number = 100;
|
|
|
+ businessType: string = '' //类型
|
|
|
// actived: boolean = false; //是否激活
|
|
|
/**
|
|
|
* 构造函数
|
|
@@ -33,7 +34,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
|
|
|
* @param businessId 空间id
|
|
|
* @param businessName 空间名称
|
|
|
* @param centerOfGravityPoint 中心点
|
|
|
- * @param isBusiness 状态
|
|
|
+ * @param isBusiness 状态
|
|
|
* @param parent
|
|
|
*/
|
|
|
constructor(PolygonItemData: PolygonItemInterface) {
|
|
@@ -43,26 +44,29 @@ export class SGraphyPolygonItem extends SGraphyItem {
|
|
|
return new SPoint(item.X, item.Y)
|
|
|
});
|
|
|
this.pointArr = newSpacePaths;
|
|
|
- // // 填充色
|
|
|
- PolygonItemData.fillColor ? this.fillColor = PolygonItemData.fillColor : this.fillColor = new SColor('#F2F6FC');
|
|
|
+ // 填充色
|
|
|
+ this.fillColor = PolygonItemData.space.fillColor ? PolygonItemData.space.fillColor : new SColor('#F2F6FC');
|
|
|
// 边框色
|
|
|
- PolygonItemData.color ? this.color = PolygonItemData.color : this.color = SColor.Black;
|
|
|
+ this.color = PolygonItemData.space.color ? PolygonItemData.space.color : SColor.Black;
|
|
|
//边框宽度
|
|
|
- PolygonItemData.width ? this.width = PolygonItemData.width : this.width = 0;
|
|
|
+ this.width = PolygonItemData.space.width ? PolygonItemData.space.width : 100;
|
|
|
//中心点
|
|
|
this.centerOfGravityPoint = {
|
|
|
x: PolygonItemData.space.LocationPoint.X,
|
|
|
- y: PolygonItemData.space.LocationPoint.Y * (-1)
|
|
|
+ y: -PolygonItemData.space.LocationPoint.Y
|
|
|
};
|
|
|
//业务空间类型
|
|
|
- this.isBusiness = PolygonItemData.space.isBusiness ? PolygonItemData.space.isBusiness : this.isBusiness = 1;
|
|
|
+ this.isBusiness = PolygonItemData.space.isBusiness ? PolygonItemData.space.isBusiness : 1;
|
|
|
//业务空间id
|
|
|
- PolygonItemData.businessId ? this.businessId = PolygonItemData.businessId : this.businessId = null;
|
|
|
+ this.businessId = PolygonItemData.space.businessId ? PolygonItemData.space.businessId : null
|
|
|
//业务空间名称
|
|
|
this.businessName = PolygonItemData.space.Name;
|
|
|
this.initName = PolygonItemData.space.Name;
|
|
|
// 空间id
|
|
|
this.id = PolygonItemData.space.id;
|
|
|
+ this.viewText = PolygonItemData.space.Name;
|
|
|
+ //类型
|
|
|
+ this.businessType = PolygonItemData.businessType ? PolygonItemData.businessType : ''
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -132,6 +136,17 @@ export class SGraphyPolygonItem extends SGraphyItem {
|
|
|
return nCross % 2 === 1
|
|
|
}
|
|
|
/**
|
|
|
+ *
|
|
|
+ * @param text 修改的文字
|
|
|
+ * @param centerOfGravityPoint 文字的坐标
|
|
|
+ */
|
|
|
+ addText(text: string, centerOfGravityPoint?: { x: number, y: number }) {
|
|
|
+ this.viewText = text;
|
|
|
+ if (centerOfGravityPoint) {
|
|
|
+ this.centerOfGravityPoint = centerOfGravityPoint
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /**
|
|
|
* Item绘制操作
|
|
|
*
|
|
|
* @param painter painter对象
|
|
@@ -142,14 +157,21 @@ export class SGraphyPolygonItem extends SGraphyItem {
|
|
|
painter.pen.color = this.color;
|
|
|
painter.brush.color = this.fillColor;
|
|
|
painter.pen.lineWidth = this.width;
|
|
|
- painter.drawPolygon(this.pointArr);
|
|
|
+ painter.drawPolygon(this.pointArr)
|
|
|
+ // let text = ''
|
|
|
+ // if (this.businessName || this.businessId) {
|
|
|
+ // text = '👇 ' + this.businessName
|
|
|
+ // } else {
|
|
|
+ // text = '⬇️ ' + this.initName
|
|
|
+ // }
|
|
|
painter.font.size = this.scale * 200;
|
|
|
painter.brush.color = SColor.Black;
|
|
|
+ // painter.drawText(text,this.centerOfGravityPoint.x,this.centerOfGravityPoint.y)
|
|
|
painter.drawText(this.viewText, this.centerOfGravityPoint.x, this.centerOfGravityPoint.y)
|
|
|
}
|
|
|
}
|
|
|
onClick(event: SMouseEvent): boolean {
|
|
|
- this.$emit('click', event);
|
|
|
+ this.$emit('click', { item: this, event: event });
|
|
|
return true;
|
|
|
} // Function onClick()
|
|
|
/**
|
|
@@ -159,7 +181,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
|
|
|
* @return boolean
|
|
|
*/
|
|
|
onDoubleClick(event: SMouseEvent): boolean {
|
|
|
- this.$emit('doubleClick', { item: this, event: event });
|
|
|
+ this.$emit('doubleClick', event);
|
|
|
return true;
|
|
|
}
|
|
|
/**
|
|
@@ -169,7 +191,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
|
|
|
* @return boolean
|
|
|
*/
|
|
|
onMouseDown(event: SMouseEvent): boolean {
|
|
|
- this.$emit('mouseDown', { item: this, event: event });
|
|
|
+ this.$emit('mouseDown', event);
|
|
|
return true;
|
|
|
} // Function onMouseDown()
|
|
|
|
|
@@ -180,7 +202,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
|
|
|
* @return boolean
|
|
|
*/
|
|
|
onMouseMove(event: SMouseEvent): boolean {
|
|
|
- this.$emit('mouseMove', { item: this, event: event });
|
|
|
+ this.$emit('mouseMove', event);
|
|
|
return true;
|
|
|
} // Function onMouseMove()
|
|
|
|
|
@@ -191,7 +213,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
|
|
|
* @return boolean
|
|
|
*/
|
|
|
onMouseUp(event: SMouseEvent): boolean {
|
|
|
- this.$emit('mouseUp', { item: this, event: event });
|
|
|
+ this.$emit('mouseUp', event);
|
|
|
return true;
|
|
|
}
|
|
|
|