|
@@ -30,7 +30,7 @@ import { SArrowStyleType, SPoint, SRect } from '@persagy-web/draw';
|
|
|
import { SItemStatus, SRectSelectItem } from '@persagy-web/big/lib';
|
|
|
import { SGraphItem, SGraphSelectContainer, SOrderSetType } from "@persagy-web/graph/lib/";
|
|
|
import { uuid } from "./until";
|
|
|
-import { SBaseArrow, SBaseEquipment, SBaseExpainEdit, SBasePipeUninTool, SBasePipe } from "./"
|
|
|
+import { SBaseArrow, SBaseEquipment, SBaseExpainEdit, SBasePipe } from "./"
|
|
|
import { SBaseArrowPolyEdit } from './items/SBaseArrowPolyEdit';
|
|
|
import { SGraphAddListCommand } from '@persagy-web/edit/lib/commands/SGraphAddListCommand';
|
|
|
|
|
@@ -169,50 +169,50 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 添加基本设备 item
|
|
|
- *
|
|
|
- * @param event 鼠标事件
|
|
|
- * @param legendObj 图例样式
|
|
|
- */
|
|
|
- addEuqipment(event: SMouseEvent, legendObj: any): void {
|
|
|
- const data = {
|
|
|
- nodeId: uuid(),
|
|
|
- /** 名称 */
|
|
|
- name: '基础设备',
|
|
|
- /** 返回物理世界对象 ID 列表 */
|
|
|
- attachObjectIds: [],
|
|
|
- size: { width: 50, height: 50 },
|
|
|
- /** 图标 (Image),线类型 (Line) */
|
|
|
- type: "Image",
|
|
|
- /** 位置 */
|
|
|
- pos: { x: event.x, y: event.y },
|
|
|
- /** 由应用自己定义 */
|
|
|
- properties: {
|
|
|
- type: "BaseEquipment",
|
|
|
- infoMsgList: [{
|
|
|
-
|
|
|
- }]
|
|
|
- },
|
|
|
- style: {
|
|
|
- default: {
|
|
|
- strokecolor: "#c0ccda",
|
|
|
- url: require('./../../../assets/images/equip/' + legendObj.url),
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const item = new SBaseEquipment(null, data);
|
|
|
- item.status = SItemStatus.Create;
|
|
|
- this.addItem(item);
|
|
|
- item.selectable = true;
|
|
|
- item.moveable = true;
|
|
|
- this.grabItem = item;
|
|
|
- this.finishCreated(item)
|
|
|
- item.connect("onContextMenu", this, this.getItem);
|
|
|
- if (this.view) {
|
|
|
- this.view.update();
|
|
|
- }
|
|
|
- }
|
|
|
+ // /**
|
|
|
+ // * 添加基本设备 item
|
|
|
+ // *
|
|
|
+ // * @param event 鼠标事件
|
|
|
+ // * @param legendObj 图例样式
|
|
|
+ // */
|
|
|
+ // addEuqipment(event: SMouseEvent, legendObj: any): void {
|
|
|
+ // const data = {
|
|
|
+ // nodeId: uuid(),
|
|
|
+ // /** 名称 */
|
|
|
+ // name: '基础设备',
|
|
|
+ // /** 返回物理世界对象 ID 列表 */
|
|
|
+ // attachObjectIds: [],
|
|
|
+ // size: { width: 50, height: 50 },
|
|
|
+ // /** 图标 (Image),线类型 (Line) */
|
|
|
+ // type: "Image",
|
|
|
+ // /** 位置 */
|
|
|
+ // pos: { x: event.x, y: event.y },
|
|
|
+ // /** 由应用自己定义 */
|
|
|
+ // properties: {
|
|
|
+ // type: "BaseEquipment",
|
|
|
+ // infoMsgList: [{
|
|
|
+
|
|
|
+ // }]
|
|
|
+ // },
|
|
|
+ // style: {
|
|
|
+ // default: {
|
|
|
+ // strokecolor: "#c0ccda",
|
|
|
+ // url: require('./../../../assets/images/equip/' + legendObj.url),
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // const item = new SBaseEquipment(null, data);
|
|
|
+ // item.status = SItemStatus.Create;
|
|
|
+ // this.addItem(item);
|
|
|
+ // item.selectable = true;
|
|
|
+ // item.moveable = true;
|
|
|
+ // this.grabItem = item;
|
|
|
+ // this.finishCreated(item)
|
|
|
+ // item.connect("onContextMenu", this, this.getItem);
|
|
|
+ // if (this.view) {
|
|
|
+ // this.view.update();
|
|
|
+ // }
|
|
|
+ // }
|
|
|
|
|
|
/**
|
|
|
* 新增管道
|
|
@@ -268,51 +268,6 @@ export class SBaseEditScene extends SGraphEditScene {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 添加基本管道联通器
|
|
|
- *
|
|
|
- * @param event 鼠标事件
|
|
|
- * @param cmd 命令
|
|
|
- */
|
|
|
- addPipeUninTool(event: SMouseEvent, cmd: string): void {
|
|
|
- const cmdList = {
|
|
|
- 'wantou': 2,
|
|
|
- 'santong': 3,
|
|
|
- 'sitong': 4,
|
|
|
- }
|
|
|
-
|
|
|
- const data = {
|
|
|
- /** 名称 */
|
|
|
- name: '基础管道接头',
|
|
|
- /** 图标 (Image),线类型 (Line) */
|
|
|
- type: "Image",
|
|
|
- /** 位置 */
|
|
|
- pos: { x: event.x, y: event.y },
|
|
|
- /** 由应用自己定义 */
|
|
|
- properties: {
|
|
|
- type: "BasePipeUninTool",
|
|
|
- },
|
|
|
- style: {
|
|
|
- uninToolType: cmdList[cmd] ? cmdList[cmd] : 2, //2,3,4 分别分二头连接器、三头连接器、四头连接器
|
|
|
- default: {
|
|
|
- strokecolor: "#c0ccda",
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- const item = new SBasePipeUninTool(null, data);
|
|
|
- item.status = SItemStatus.Create;
|
|
|
- item.selectable = true;
|
|
|
- item.moveable = true;
|
|
|
- this.addItem(item);
|
|
|
- this.grabItem = item;
|
|
|
- this.finishCreated(item)
|
|
|
- item.connect("onContextMenu", this, this.getItem);
|
|
|
- if (this.view) {
|
|
|
- this.view.update();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
* 重做
|
|
|
*/
|
|
|
redo(): void {
|