|
@@ -197,7 +197,7 @@ export class EditScence extends SGraphScene {
|
|
|
// 起始item点
|
|
|
item.startItem = clickItem;
|
|
|
if (clickItem) {
|
|
|
- clickItem.connect('onMove', item, item.changePos);
|
|
|
+ clickItem.connect("onMove", item, item.changePos);
|
|
|
}
|
|
|
this.scenceUpdate(this);
|
|
|
// this.undoStack.push(new SGraphAddCommand(this, item));
|
|
@@ -567,11 +567,11 @@ export class EditScence extends SGraphScene {
|
|
|
let oldMsg = null;
|
|
|
const newMsg = width;
|
|
|
if (this.focusItem.data && this.focusItem.data.GraphElementType && this.focusItem.data.GraphElementType == "Image") {
|
|
|
- oldMsg = this.focusItem.sWidth
|
|
|
+ oldMsg = this.focusItem.sWidth;
|
|
|
this.focusItem.sWidth = width;
|
|
|
this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "sWidth", oldMsg, newMsg));
|
|
|
} else {
|
|
|
- oldMsg = this.focusItem.width
|
|
|
+ oldMsg = this.focusItem.width;
|
|
|
this.focusItem.width = width;
|
|
|
this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "width", oldMsg, newMsg));
|
|
|
}
|
|
@@ -595,7 +595,6 @@ export class EditScence extends SGraphScene {
|
|
|
this.focusItem.height = height;
|
|
|
this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "height", oldMsg, newMsg));
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -721,7 +720,7 @@ export class EditScence extends SGraphScene {
|
|
|
// 重新选中focusitem
|
|
|
const item = this.focusItem;
|
|
|
this.selectContainer.clear();
|
|
|
- this.selectContainer.toggleItem(item)
|
|
|
+ this.selectContainer.toggleItem(item);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -741,7 +740,7 @@ export class EditScence extends SGraphScene {
|
|
|
) {
|
|
|
this.focusItem.deletePoint(this.focusItem.curIndex);
|
|
|
} else {
|
|
|
- this.undoStack.push(new SGraphDeleteCommand(this, this.focusItem));
|
|
|
+ // this.undoStack.push(new SGraphDeleteCommand(this, this.focusItem));
|
|
|
this.removeItem(this.focusItem);
|
|
|
let a = -1;
|
|
|
this.Nodes.forEach((item: any, index: number) => {
|
|
@@ -771,7 +770,7 @@ export class EditScence extends SGraphScene {
|
|
|
this.Relations.splice(c, 1);
|
|
|
}
|
|
|
// HACK: 删除设备对象
|
|
|
- this.equipmentItem = this.equipmentItem.filter((item: any) => item.id !== this.focusItem?.id);
|
|
|
+ // this.equipmentItem = this.equipmentItem.filter((item: any) => item.id !== this.focusItem?.id);
|
|
|
this.focusItem = null;
|
|
|
if (this.view) {
|
|
|
this.view.update();
|
|
@@ -781,15 +780,15 @@ export class EditScence extends SGraphScene {
|
|
|
} else {
|
|
|
//批量删除
|
|
|
if (!this.focusItemList) {
|
|
|
- return
|
|
|
+ return;
|
|
|
}
|
|
|
- this.undoStack.push(new SGraphDeleteListCommand(this,this.focusItemList))
|
|
|
+ this.undoStack.push(new SGraphDeleteListCommand(this, this.focusItemList));
|
|
|
this.focusItemList.forEach((focusItem) => {
|
|
|
this.removeItem(focusItem);
|
|
|
- let a = -1
|
|
|
+ let a = -1;
|
|
|
this.Nodes.forEach((item: any, index: number) => {
|
|
|
if (item.id == focusItem.id) {
|
|
|
- a = index
|
|
|
+ a = index;
|
|
|
}
|
|
|
});
|
|
|
if (a > -1) {
|
|
@@ -798,7 +797,7 @@ export class EditScence extends SGraphScene {
|
|
|
let b = -1;
|
|
|
this.Markers.forEach((item: any, index: number) => {
|
|
|
if (item.id == focusItem.id) {
|
|
|
- b = index
|
|
|
+ b = index;
|
|
|
}
|
|
|
});
|
|
|
if (b > -1) {
|
|
@@ -807,7 +806,7 @@ export class EditScence extends SGraphScene {
|
|
|
let c = -1;
|
|
|
this.Relations.forEach((item: any, index: number) => {
|
|
|
if (item.id == focusItem.id) {
|
|
|
- c = index
|
|
|
+ c = index;
|
|
|
}
|
|
|
});
|
|
|
if (c > -1) {
|
|
@@ -855,9 +854,9 @@ export class EditScence extends SGraphScene {
|
|
|
Relations.push(e.toData());
|
|
|
});
|
|
|
// TODO: 保存equipmentItem
|
|
|
- this.equipmentItem.map((item: any) => {
|
|
|
- Nodes.push(item.toData());
|
|
|
- });
|
|
|
+ // this.equipmentItem.map((item: any) => {
|
|
|
+ // Nodes.push(item.toData());
|
|
|
+ // });
|
|
|
let element = {
|
|
|
Nodes,
|
|
|
Markers,
|
|
@@ -875,11 +874,10 @@ export class EditScence extends SGraphScene {
|
|
|
*/
|
|
|
redo(): void {
|
|
|
if (this.grabItem && this.grabItem.redo) {
|
|
|
- this.grabItem.redo()
|
|
|
+ this.grabItem.redo();
|
|
|
} else {
|
|
|
this.undoStack.redo();
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -887,7 +885,7 @@ export class EditScence extends SGraphScene {
|
|
|
*/
|
|
|
undo(): void {
|
|
|
if (this.grabItem && this.grabItem.undo) {
|
|
|
- this.grabItem.undo()
|
|
|
+ this.grabItem.undo();
|
|
|
} else {
|
|
|
this.undoStack.undo();
|
|
|
}
|
|
@@ -916,7 +914,7 @@ export class EditScence extends SGraphScene {
|
|
|
this.setTipeEndanchor(event);
|
|
|
return true;
|
|
|
} else if (this.grabItem instanceof SLineMarkerItem && this.grabItem.status == SItemStatus.Create) {
|
|
|
- this.setLineItem(event)
|
|
|
+ this.setLineItem(event);
|
|
|
return true;
|
|
|
}
|
|
|
return this.grabItem.onMouseDown(event);
|
|
@@ -972,15 +970,15 @@ export class EditScence extends SGraphScene {
|
|
|
onMouseUp(event: SMouseEvent): boolean {
|
|
|
if (this.grabItem) {
|
|
|
if (this.grabItem instanceof SLineMarkerItem && this.grabItem.status == SItemStatus.Edit) {
|
|
|
- this.setLineItem(event)
|
|
|
+ this.setLineItem(event);
|
|
|
return true;
|
|
|
- } else if (this.grabItem instanceof TipelineItem){
|
|
|
+ } else if (this.grabItem instanceof TipelineItem) {
|
|
|
this.updateTipeAnc(event);
|
|
|
return true;
|
|
|
}
|
|
|
return this.grabItem.onMouseUp(event);
|
|
|
}
|
|
|
- return super.onMouseUp(event)
|
|
|
+ return super.onMouseUp(event);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -1011,7 +1009,6 @@ export class EditScence extends SGraphScene {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* 鼠标双击事件
|
|
|
*
|
|
@@ -1020,11 +1017,10 @@ export class EditScence extends SGraphScene {
|
|
|
*/
|
|
|
onDoubleClick(event: SMouseEvent): boolean {
|
|
|
if (!this.isEditStatus) {
|
|
|
- return true
|
|
|
+ return true;
|
|
|
} else {
|
|
|
return super.onDoubleClick(event);
|
|
|
}
|
|
|
-
|
|
|
} // Function onDoubleClick()
|
|
|
|
|
|
/**
|
|
@@ -1057,65 +1053,65 @@ export class EditScence extends SGraphScene {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 管线item修改锚点
|
|
|
- *
|
|
|
- */
|
|
|
+ * 管线item修改锚点
|
|
|
+ *
|
|
|
+ */
|
|
|
updateTipeAnc(event: SMouseEvent): void {
|
|
|
- if (this.grabItem instanceof TipelineItem){
|
|
|
+ if (this.grabItem instanceof TipelineItem) {
|
|
|
const anc = this.clickIsAnchor(event);
|
|
|
if (anc) {
|
|
|
- const p = anc.mapToScene(0, 0)
|
|
|
+ const p = anc.mapToScene(0, 0);
|
|
|
event.x = p.x;
|
|
|
event.y = p.y;
|
|
|
if (this.grabItem.status == SItemStatus.Edit) {
|
|
|
if (this.grabItem.curIndex == 0) {
|
|
|
- if (this.grabItem.startAnchor){
|
|
|
- this.grabItem.startAnchor.isConnected = false
|
|
|
- this.grabItem.startAnchor.parent.disconnect('changePos',this.grabItem);
|
|
|
+ if (this.grabItem.startAnchor) {
|
|
|
+ this.grabItem.startAnchor.isConnected = false;
|
|
|
+ this.grabItem.startAnchor.parent.disconnect("changePos", this.grabItem);
|
|
|
}
|
|
|
anc.isConnected = true;
|
|
|
this.grabItem.startAnchor = anc;
|
|
|
- this.grabItem.anchor1ID = anc.id
|
|
|
- this.grabItem.node1Id = anc.parent.id
|
|
|
- anc.parent.connect('changePos', this.grabItem, this.grabItem.changePos)
|
|
|
+ this.grabItem.anchor1ID = anc.id;
|
|
|
+ this.grabItem.node1Id = anc.parent.id;
|
|
|
+ anc.parent.connect("changePos", this.grabItem, this.grabItem.changePos);
|
|
|
}
|
|
|
- if (this.grabItem.curIndex == this.grabItem.pointList.length-1) {
|
|
|
- if (this.grabItem.endAnchor){
|
|
|
- this.grabItem.endAnchor.isConnected = false
|
|
|
- this.grabItem.endAnchor.parent.disconnect('changePos',this.grabItem);
|
|
|
+ if (this.grabItem.curIndex == this.grabItem.pointList.length - 1) {
|
|
|
+ if (this.grabItem.endAnchor) {
|
|
|
+ this.grabItem.endAnchor.isConnected = false;
|
|
|
+ this.grabItem.endAnchor.parent.disconnect("changePos", this.grabItem);
|
|
|
}
|
|
|
anc.isConnected = true;
|
|
|
this.grabItem.endAnchor = anc;
|
|
|
- this.grabItem.anchor2ID = anc.id
|
|
|
- this.grabItem.node2Id = anc.parent.id
|
|
|
- anc.parent.connect('changePos', this.grabItem, this.grabItem.changePos)
|
|
|
+ this.grabItem.anchor2ID = anc.id;
|
|
|
+ this.grabItem.node2Id = anc.parent.id;
|
|
|
+ anc.parent.connect("changePos", this.grabItem, this.grabItem.changePos);
|
|
|
}
|
|
|
}
|
|
|
- this.grabItem.onMouseUp(event)
|
|
|
- return
|
|
|
+ this.grabItem.onMouseUp(event);
|
|
|
+ return;
|
|
|
} else {
|
|
|
if (this.grabItem.status == SItemStatus.Edit) {
|
|
|
if (this.grabItem.curIndex == 0) {
|
|
|
- if (this.grabItem.startAnchor){
|
|
|
- this.grabItem.startAnchor.isConnected = false
|
|
|
- this.grabItem.startAnchor.parent.disconnect('changePos',this.grabItem);
|
|
|
+ if (this.grabItem.startAnchor) {
|
|
|
+ this.grabItem.startAnchor.isConnected = false;
|
|
|
+ this.grabItem.startAnchor.parent.disconnect("changePos", this.grabItem);
|
|
|
this.grabItem.startAnchor = null;
|
|
|
- this.grabItem.anchor1ID = ''
|
|
|
- this.grabItem.node1Id = ''
|
|
|
+ this.grabItem.anchor1ID = "";
|
|
|
+ this.grabItem.node1Id = "";
|
|
|
}
|
|
|
}
|
|
|
- if (this.grabItem.curIndex == this.grabItem.pointList.length-1) {
|
|
|
- if (this.grabItem.endAnchor){
|
|
|
- this.grabItem.endAnchor.isConnected = false
|
|
|
- this.grabItem.endAnchor.parent.disconnect('changePos',this.grabItem);
|
|
|
+ if (this.grabItem.curIndex == this.grabItem.pointList.length - 1) {
|
|
|
+ if (this.grabItem.endAnchor) {
|
|
|
+ this.grabItem.endAnchor.isConnected = false;
|
|
|
+ this.grabItem.endAnchor.parent.disconnect("changePos", this.grabItem);
|
|
|
this.grabItem.endAnchor = null;
|
|
|
- this.grabItem.anchor2ID = ''
|
|
|
- this.grabItem.node2Id = ''
|
|
|
+ this.grabItem.anchor2ID = "";
|
|
|
+ this.grabItem.node2Id = "";
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- this.grabItem.onMouseUp(event)
|
|
|
- return
|
|
|
+ this.grabItem.onMouseUp(event);
|
|
|
+ return;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1123,7 +1119,7 @@ export class EditScence extends SGraphScene {
|
|
|
/**
|
|
|
* 设置直线结束Item
|
|
|
*
|
|
|
- */
|
|
|
+ */
|
|
|
setLineItem(event: SMouseEvent): void {
|
|
|
if (this.grabItem instanceof SLineMarkerItem) {
|
|
|
const item = this.clickIsItem(event);
|
|
@@ -1136,34 +1132,35 @@ export class EditScence extends SGraphScene {
|
|
|
if (this.grabItem.status == SItemStatus.Create) {
|
|
|
// 点击在item内、创建状态且端点列表不为空时将直线结束端点和item绑定
|
|
|
if (this.grabItem.line.length) {
|
|
|
- if (this.grabItem.startItem ?.id == item.id) {
|
|
|
+ if (this.grabItem.startItem?.id == item.id) {
|
|
|
this.grabItem.endItem = null;
|
|
|
} else {
|
|
|
this.grabItem.endItem = item;
|
|
|
this.grabItem.line[1] = new SPoint(event.x, event.y);
|
|
|
- item.connect('onMove', this.grabItem, this.grabItem.changePos);
|
|
|
+ item.connect("onMove", this.grabItem, this.grabItem.changePos);
|
|
|
}
|
|
|
}
|
|
|
this.grabItem.onMouseDown(event);
|
|
|
- return
|
|
|
+ return;
|
|
|
} else if (this.grabItem.status == SItemStatus.Edit) {
|
|
|
// 点击在item内、编辑状态且点击的为结束端点时
|
|
|
if (this.grabItem.curIndex == 1) {
|
|
|
// 直线关联的起始item是直线结束端点所在的item时,不吸附在点击item中心并将直线关联的结束item置为null
|
|
|
- if (this.grabItem.startItem ?.id == item.id) {
|
|
|
+ if (this.grabItem.startItem?.id == item.id) {
|
|
|
this.grabItem.endItem = null;
|
|
|
- } else {// 反正吸附,关联
|
|
|
+ } else {
|
|
|
+ // 反正吸附,关联
|
|
|
this.grabItem.endItem = item;
|
|
|
this.grabItem.line[1] = new SPoint(event.x, event.y);
|
|
|
- item.connect('onMove', this.grabItem, this.grabItem.changePos);
|
|
|
+ item.connect("onMove", this.grabItem, this.grabItem.changePos);
|
|
|
}
|
|
|
} else if (this.grabItem.curIndex == 0) {
|
|
|
- if (this.grabItem.endItem ?.id == item.id) {
|
|
|
+ if (this.grabItem.endItem?.id == item.id) {
|
|
|
this.grabItem.startItem = null;
|
|
|
} else {
|
|
|
this.grabItem.startItem = item;
|
|
|
this.grabItem.line[0] = new SPoint(event.x, event.y);
|
|
|
- item.connect('onMove', this.grabItem, this.grabItem.changePos);
|
|
|
+ item.connect("onMove", this.grabItem, this.grabItem.changePos);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1177,7 +1174,7 @@ export class EditScence extends SGraphScene {
|
|
|
}
|
|
|
} else {
|
|
|
this.grabItem.onMouseDown(event);
|
|
|
- return
|
|
|
+ return;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1260,13 +1257,15 @@ export class EditScence extends SGraphScene {
|
|
|
let minIten = null;
|
|
|
let len: number = -1;
|
|
|
let itemList = this.Nodes.concat(this.Markers);
|
|
|
+ console.log(itemList);
|
|
|
itemList.forEach((item) => {
|
|
|
if (
|
|
|
item instanceof STextMarkerItem ||
|
|
|
item instanceof SImageMarkerItem ||
|
|
|
item instanceof SZoneLegendItem ||
|
|
|
item instanceof SFHFQZoneLegendItem ||
|
|
|
- item instanceof SSCPZZoneLegendItem
|
|
|
+ item instanceof SSCPZZoneLegendItem ||
|
|
|
+ item instanceof SEquipmentItem
|
|
|
) {
|
|
|
let scenePoint = item.mapFromScene(event.x, event.y);
|
|
|
if (item.contains(scenePoint.x, scenePoint.y)) {
|