|
@@ -24,14 +24,14 @@
|
|
|
* *********************************************************************************************************************
|
|
|
*/
|
|
|
|
|
|
-import { SGraphAddCommand, SGraphEditScene, SGraphEdit } from "./../edit/"
|
|
|
+import { SGraphDeleteListCommand, SGraphEditScene, SGraphEdit } from "./../edit/"
|
|
|
import { SMouseEvent } from "@persagy-web/base/lib";
|
|
|
import { SArrowStyleType, SPoint, SRect } from '@persagy-web/draw';
|
|
|
import { SItemStatus, SRectSelectItem } from '@persagy-web/big/lib';
|
|
|
-import { SGraphItem, SGraphSelectContainer } from "@persagy-web/graph/lib/";
|
|
|
+import { SGraphItem, SGraphSelectContainer, SOrderSetType } from "@persagy-web/graph/lib/";
|
|
|
import { uuid } from "./until";
|
|
|
import { SBaseArrow, SBaseEquipment, SBaseExpainEdit, SBasePipeUninTool, SBasePipe } from "./"
|
|
|
-
|
|
|
+import { PTopoParser } from "./../persagy-edit/"
|
|
|
|
|
|
/**
|
|
|
* big-edit 场景
|
|
@@ -89,7 +89,6 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
item.selectable = true;
|
|
|
item.moveable = true;
|
|
|
this.addItem(item);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
this.grabItem = null;
|
|
|
this.finishCreated(item);
|
|
|
} // Function addExplainItem()
|
|
@@ -119,7 +118,6 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
item.status = SItemStatus.Create;
|
|
|
item.selectable = true;
|
|
|
this.addItem(item);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
this.grabItem = item;
|
|
|
item.connect("finishCreated", this, this.finishCreated);
|
|
|
item.connect("onContextMenu", this, this.getItem);
|
|
@@ -151,18 +149,17 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
style: {
|
|
|
default: {
|
|
|
strokecolor: "#c0ccda",
|
|
|
- // url: require('./../../../assets/images/equip/' + legendObj.url),
|
|
|
+ url: require('./../../../assets/images/equip/' + legendObj.url),
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
const item = new SBaseEquipment(null, data);
|
|
|
item.status = SItemStatus.Create;
|
|
|
this.addItem(item);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
item.selectable = true;
|
|
|
item.moveable = true;
|
|
|
this.grabItem = item;
|
|
|
- item.connect("finishCreated", this, this.finishCreated);
|
|
|
+ this.finishCreated(item)
|
|
|
item.connect("onContextMenu", this, this.getItem);
|
|
|
if (this.view) {
|
|
|
this.view.update();
|
|
@@ -192,7 +189,6 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
item.status = SItemStatus.Create;
|
|
|
item.selectable = true;
|
|
|
this.addItem(item);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
this.grabItem = item;
|
|
|
item.connect("finishCreated", this, this.finishCreated);
|
|
|
item.connect("onContextMenu", this, this.getItem);
|
|
@@ -225,8 +221,7 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
type: "BasePipeUninTool",
|
|
|
},
|
|
|
style: {
|
|
|
- // uninToolType: cmdList[cmd] ? cmdList[cmd] : 2, //2,3,4 分别分二头连接器、三头连接器、四头连接器
|
|
|
- uninToolType: 2, //2,3,4 分别分二头连接器、三头连接器、四头连接器
|
|
|
+ uninToolType: cmdList[cmd] ? cmdList[cmd] : 2, //2,3,4 分别分二头连接器、三头连接器、四头连接器
|
|
|
default: {
|
|
|
strokecolor: "#c0ccda",
|
|
|
}
|
|
@@ -237,9 +232,8 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
item.selectable = true;
|
|
|
item.moveable = true;
|
|
|
this.addItem(item);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
this.grabItem = item;
|
|
|
- item.connect("finishCreated", this, this.finishCreated);
|
|
|
+ this.finishCreated(item)
|
|
|
item.connect("onContextMenu", this, this.getItem);
|
|
|
if (this.view) {
|
|
|
this.view.update();
|
|
@@ -278,6 +272,8 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
return []
|
|
|
}
|
|
|
let itemList = this.selectContainer.itemList;
|
|
|
+ // 推入 undo/redo 栈
|
|
|
+ this.undoStack.push(new SGraphDeleteListCommand(this, [...itemList]))
|
|
|
itemList.forEach((element: any) => {
|
|
|
this.removeItem(element)
|
|
|
});
|
|
@@ -375,16 +371,29 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
* 复制
|
|
|
*/
|
|
|
copy(): void {
|
|
|
- const itemList = this.selectContainer.itemList
|
|
|
- if (itemList.length) {
|
|
|
- itemList.forEach(t => {
|
|
|
- const data = JSON.parse(JSON.stringify(t.toData()))
|
|
|
- data.ID = uuid()
|
|
|
- this.copyString.push(data)
|
|
|
-
|
|
|
- })
|
|
|
+ const itemList = this.save(false);
|
|
|
+ if (itemList) {
|
|
|
// 生成复制字符串
|
|
|
- console.log(this.copyString)
|
|
|
+ // 删除对应得id
|
|
|
+ itemList.markers.map((item: any) => {
|
|
|
+ delete item.id;
|
|
|
+ delete item.graphId;
|
|
|
+ delete item.markerId;
|
|
|
+ return item
|
|
|
+ });
|
|
|
+ itemList.nodes.map((item: any) => {
|
|
|
+ delete item.id;
|
|
|
+ delete item.graphId;
|
|
|
+ delete item.markerId;
|
|
|
+ return item
|
|
|
+ });
|
|
|
+ itemList.relations.map((item: any) => {
|
|
|
+ delete item.id;
|
|
|
+ delete item.graphId;
|
|
|
+ delete item.markerId;
|
|
|
+ return item
|
|
|
+ });
|
|
|
+ this.copyString = itemList
|
|
|
// 获取input dom
|
|
|
const input = document.createElement('input');
|
|
|
input.setAttribute('id', 'COPYINPUT')
|
|
@@ -404,17 +413,36 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
*/
|
|
|
paste(): void {
|
|
|
const copyList = JSON.parse(JSON.stringify(this.copyString));
|
|
|
- copyList.forEach((t: any) => {
|
|
|
+ console.log('copyList', copyList)
|
|
|
+ const parserData = new PTopoParser();
|
|
|
+ parserData.parseData(copyList);
|
|
|
+ parserData.markers.forEach((item: SGraphEdit) => {
|
|
|
+ item.selectable = true;
|
|
|
+ item.moveable = true;
|
|
|
if (this.view) {
|
|
|
- t.Pos.X += 10,
|
|
|
- t.Pos.Y += 10
|
|
|
+ item.pos.x += 10 / this.view.scale
|
|
|
+ item.pos.y += 10 / this.view.scale
|
|
|
}
|
|
|
-
|
|
|
- t.moveable = true;
|
|
|
- console.log('t', t)
|
|
|
- this.addItem(t)
|
|
|
+ this.addItem(item);
|
|
|
});
|
|
|
- this.view ? this.view.update() : ''
|
|
|
- console.log(this.view)
|
|
|
+ this.view ? this.view.update() : '';
|
|
|
} // Function paste()
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 图例置顶、置底
|
|
|
+ *
|
|
|
+ * @parm type 设置类型
|
|
|
+ */
|
|
|
+ setOrder(type: string) {
|
|
|
+ this.selectContainer.setOrder(SOrderSetType.[type])
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取item (常用与场景外的调用F)
|
|
|
+ *
|
|
|
+ * @params isAll 是否为全部item数据
|
|
|
+ * @return obj 返回保存的数据接口
|
|
|
+ */
|
|
|
+ save(isAll: boolean = true): any {
|
|
|
+ } // Function save()
|
|
|
} // Class SBaseEditScene
|