|
@@ -1,15 +1,43 @@
|
|
|
import { SBaseEditScene, SBaseLineEdit, SBaseTextEdit, SBaseImageEdit, SBaseExpainEdit } from "./../big-edit";
|
|
|
+import { SPersagyImageEdit } from "./"
|
|
|
// import { SGraphItem } from "@persagy-web/graph/";
|
|
|
import { SGraphEdit } from "./../edit"
|
|
|
-import { SMouseEvent } from "@persagy-web/base/lib";
|
|
|
+import { SMouseEvent, SUndoStack } from "@persagy-web/base/lib";
|
|
|
import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
|
|
|
import { uuid } from "./../big-edit/until";
|
|
|
+
|
|
|
+// 引入命令
|
|
|
+import { SGraphAddCommand } from "./../edit/commands/SGraphAddCommand"
|
|
|
export class PTopoScene extends SBaseEditScene {
|
|
|
+ undoStack = new SUndoStack();
|
|
|
constructor() {
|
|
|
super()
|
|
|
+ // // 选择绑定选额item事件
|
|
|
+ this.selectContainer.connect("listChange", this, this.listChange);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 选中返回的选中item回调方法
|
|
|
+ *
|
|
|
+ * @param event 鼠标事件参数
|
|
|
+ */
|
|
|
+ listChange(list: any): void {
|
|
|
+ this.emitChoice(list.itemList)
|
|
|
+ }
|
|
|
|
|
|
+ /**
|
|
|
+ * 选中返回的选中item回调方法(用于场景的外部调用)
|
|
|
+ *
|
|
|
+ * @param list 选中的item数组
|
|
|
+ */
|
|
|
+ emitChoice(list: any) {
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 鼠标左键按下
|
|
|
+ *
|
|
|
+ * @param event 鼠标事件参数
|
|
|
+ */
|
|
|
onMouseDown(event: SMouseEvent): any {
|
|
|
if (this.editCmd == "EditBaseLine") {
|
|
|
this.addLine(event)
|
|
@@ -34,10 +62,26 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
} else if (this.editCmd == "") {
|
|
|
super.onMouseDown(event);
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
-
|
|
|
- addLine(event: SMouseEvent) {
|
|
|
+ /**
|
|
|
+ * 鼠标右键事件
|
|
|
+ *
|
|
|
+ * @param event 鼠标事件参数
|
|
|
+ */
|
|
|
+ onContextMenu(event: SMouseEvent): boolean {
|
|
|
+ if (!super.onContextMenu(event)) {
|
|
|
+ this.getItem(event, null)
|
|
|
+ }
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ /////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
+ //新增 item 类方法;
|
|
|
+ /**
|
|
|
+ * 新增基础类直线
|
|
|
+ *
|
|
|
+ * @param event 鼠标事件参数
|
|
|
+ */
|
|
|
+ addLine(event: SMouseEvent): void {
|
|
|
const data = {
|
|
|
/** ID */
|
|
|
ID: uuid(),
|
|
@@ -57,13 +101,21 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
const lineItem = new SBaseLineEdit(null, data);
|
|
|
lineItem.status = SItemStatus.Create;
|
|
|
this.addItem(lineItem);
|
|
|
+ this.undoStack.push(new SGraphAddCommand(this, lineItem));
|
|
|
+ lineItem.selectable = true;
|
|
|
this.grabItem = lineItem;
|
|
|
lineItem.connect("finishCreated", this, this.finishCreated);
|
|
|
if (this.view) {
|
|
|
this.view.update();
|
|
|
}
|
|
|
}
|
|
|
- addTextItem(event: SMouseEvent) {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增基础类文本
|
|
|
+ *
|
|
|
+ * @param event 鼠标事件参数
|
|
|
+ */
|
|
|
+ addTextItem(event: SMouseEvent): void {
|
|
|
const data = {
|
|
|
/** ID */
|
|
|
ID: uuid(),
|
|
@@ -88,13 +140,20 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
item.selectable = true;
|
|
|
item.moveable = true;
|
|
|
this.addItem(item);
|
|
|
+ this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
// this.Markers.push(item);
|
|
|
this.grabItem = null;
|
|
|
// this.focusItem = item;
|
|
|
this.finishCreated(item);
|
|
|
// this.scenceUpdate(this);
|
|
|
}
|
|
|
- addExplainItem(event: SMouseEvent) {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增基础类注释
|
|
|
+ *
|
|
|
+ * @param event 鼠标事件参数
|
|
|
+ */
|
|
|
+ addExplainItem(event: SMouseEvent): void {
|
|
|
const data = {
|
|
|
/** ID */
|
|
|
ID: uuid(),
|
|
@@ -119,13 +178,20 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
item.selectable = true;
|
|
|
item.moveable = true;
|
|
|
this.addItem(item);
|
|
|
+ this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
// this.Markers.push(item);
|
|
|
this.grabItem = null;
|
|
|
// this.focusItem = item;
|
|
|
this.finishCreated(item);
|
|
|
// this.scenceUpdate(this);
|
|
|
}
|
|
|
- addImageItem(event: SMouseEvent) {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增基础类图片
|
|
|
+ *
|
|
|
+ * @param event 鼠标事件参数
|
|
|
+ */
|
|
|
+ addImageItem(event: SMouseEvent): void {
|
|
|
const data = {
|
|
|
/** ID */
|
|
|
ID: uuid(),
|
|
@@ -144,20 +210,67 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
},
|
|
|
Style: {}
|
|
|
}
|
|
|
- const item = new SBaseImageEdit(null, data);
|
|
|
+ const item = new SPersagyImageEdit(null, data);
|
|
|
item.selectable = true;
|
|
|
item.moveable = true;
|
|
|
this.addItem(item);
|
|
|
+ this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
this.Markers.push(item);
|
|
|
this.finishCreated(item);
|
|
|
}
|
|
|
+ /////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
+ //修改 item 样式,数据等方法;
|
|
|
+ updateStyle(): void {
|
|
|
+ // 修改样式
|
|
|
+ }
|
|
|
|
|
|
+ /**
|
|
|
+ * item 创建完成后回调
|
|
|
+ *
|
|
|
+ * @param event 鼠标事件参数
|
|
|
+ */
|
|
|
finishCreated(item: SGraphEdit): void {
|
|
|
- console.log('finishCreated', item)
|
|
|
this.grabItem = null;
|
|
|
item.status = SItemStatus.Normal;
|
|
|
}
|
|
|
+ /**
|
|
|
+ * 修改 cmdstatus 函数;常在在业务中调用
|
|
|
+ *
|
|
|
+ */
|
|
|
clearCmdStatus() {
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 获取item (常用与场景外的调用F)
|
|
|
+ * @param event SMouseEvent 鼠标事件
|
|
|
+ * @param item SGraphEdit|null 返回item
|
|
|
+ *
|
|
|
+ */
|
|
|
+ getItem(event: SMouseEvent, item: SGraphEdit | null) {
|
|
|
+ }
|
|
|
|
|
|
+ /**
|
|
|
+ * 重做
|
|
|
+ *
|
|
|
+ * @return any
|
|
|
+ */
|
|
|
+ redo(): void {
|
|
|
+ if (this.grabItem && this.grabItem.redo) {
|
|
|
+ this.grabItem.redo()
|
|
|
+ } else {
|
|
|
+ this.undoStack.redo();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 撤销
|
|
|
+ *
|
|
|
+ * @return any
|
|
|
+ */
|
|
|
+ undo(): void {
|
|
|
+ if (this.grabItem && this.grabItem.undo) {
|
|
|
+ this.grabItem.undo()
|
|
|
+ } else {
|
|
|
+ this.undoStack.undo();
|
|
|
+ }
|
|
|
}
|
|
|
}
|