|
@@ -162,7 +162,7 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
this.addItem(item);
|
|
|
this.grabItem = item;
|
|
|
console.log(this.grabItem);
|
|
|
-
|
|
|
+
|
|
|
item.connect("finishCreated", this, this.finishCreated);
|
|
|
item.connect("onContextMenu", this, this.getItem);
|
|
|
if (this.view) {
|
|
@@ -193,7 +193,7 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
/** 由应用自己定义 */
|
|
|
properties: {
|
|
|
type: "BaseEquipment",
|
|
|
- infoMsgList:[{
|
|
|
+ infoMsgList: [{
|
|
|
|
|
|
}]
|
|
|
},
|
|
@@ -331,19 +331,31 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
*
|
|
|
* @return 删除的图例
|
|
|
*/
|
|
|
- deleteItem(): any {
|
|
|
- if (this.selectContainer.count == 0) {
|
|
|
- return []
|
|
|
- }
|
|
|
- let itemList = this.selectContainer.itemList;
|
|
|
- // 推入 undo/redo 栈
|
|
|
- this.undoStack.push(new SGraphDeleteListCommand(this, [...itemList]))
|
|
|
- itemList.forEach((element: any) => {
|
|
|
- this.removeItem(element)
|
|
|
- });
|
|
|
- if (this.view) {
|
|
|
- this.view.update()
|
|
|
+ deleteItem(itemArr: SGraphItem[] = []): any {
|
|
|
+ let itemList = null;
|
|
|
+ if (itemArr && itemArr.length) {
|
|
|
+ itemList = itemArr
|
|
|
+ itemArr.forEach((element: any) => {
|
|
|
+ this.removeItem(element)
|
|
|
+ });
|
|
|
+ if (this.view) {
|
|
|
+ this.view.update()
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if (this.selectContainer.count == 0) {
|
|
|
+ return []
|
|
|
+ }
|
|
|
+ itemList = this.selectContainer.itemList;
|
|
|
+ // 推入 undo/redo 栈
|
|
|
+ this.undoStack.push(new SGraphDeleteListCommand(this, [...itemList]))
|
|
|
+ itemList.forEach((element: any) => {
|
|
|
+ this.removeItem(element)
|
|
|
+ });
|
|
|
+ if (this.view) {
|
|
|
+ this.view.update()
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
return itemList
|
|
|
} // Function deleteItem()
|
|
|
|
|
@@ -496,7 +508,7 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
|
|
|
/**
|
|
|
* 添加多个item命令
|
|
|
- *
|
|
|
+ *
|
|
|
* @param itemList 鼠标事件对象
|
|
|
*/
|
|
|
addListCommand(itemList: SGraphEdit[]): void {
|