YaolongHan před 4 roky
rodič
revize
a15a8426d1

+ 1 - 1
package.json

@@ -19,7 +19,7 @@
     "@persagy-web/big": "2.2.19",
     "@persagy-web/draw": "2.2.8",
     "@persagy-web/graph": "2.2.23",
-    "@persagy-web/big-edit": "2.2.1",
+    "@persagy-web/big-edit": "2.2.4",
     "@persagy-web/edit": "2.2.2",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",

+ 45 - 90
src/components/editClass/big-edit/SBaseEditScene.ts

@@ -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 {

+ 1 - 2
src/components/editClass/big-edit/index.ts

@@ -1,6 +1,5 @@
 import { SBaseEditScene } from "./SBaseEditScene"
 import { SBaseExpainEdit } from "./items/SBaseExpainEdit"
-import { SBasePipeUninTool } from "./items/SBasePipeUninTool"
 import { SBasePipe } from "./items/SBasePipe"
 import { SBaseArrow } from "./items/SBaseArrow"
 import { Anchor } from "./types/Anchor"
@@ -11,4 +10,4 @@ import { Relation } from "./types/Relation"
 import { BigEditFactory } from "./BigEditFactory"
 import { SBaseEquipment } from "./items/SBaseEquipment"
 import { SBaseArrowPolyEdit } from './items/SBaseArrowPolyEdit'
-export { SBaseArrow, SBasePipe, SBasePipeUninTool, SBaseEquipment, BigEditFactory, Anchor, Legend, Marker, Relation, ElementData, SBaseEditScene, SBaseExpainEdit, SBaseArrowPolyEdit }
+export { SBaseArrow, SBasePipe, SBaseEquipment, BigEditFactory, Anchor, Legend, Marker, Relation, ElementData, SBaseEditScene, SBaseExpainEdit, SBaseArrowPolyEdit }

+ 3 - 3
src/components/editClass/edit/items/SBaseLineEdit.ts

@@ -69,7 +69,7 @@ export class SBaseLineEdit extends SGraphEdit {
         this._line = arr;
         this.update();
     } // Set line
-    
+
     /** 是否垂直水平绘制 */
     private _verAndLeve: Boolean = false;
     get verAndLeve(): Boolean {
@@ -184,7 +184,7 @@ export class SBaseLineEdit extends SGraphEdit {
                 if (data.style.default.lineWidth) {
                     this.lineWidth = data.style.default.lineWidth
                 }
-    
+
                 // 线样式
                 if (data.style.default.lineStyle) {
                     this.lineStyle = data.style.default.lineStyle
@@ -439,7 +439,7 @@ export class SBaseLineEdit extends SGraphEdit {
      */
     contains(x: number, y: number): boolean {
         if (this.line.length == 2) {
-            let p = new SPoint(x, y);            
+            let p = new SPoint(x, y);
             if (
                 SMathUtil.pointToLine(p, new SLine(this.line[0], this.line[1]))
                     .MinDis < this.sceneDis

+ 7 - 1
src/components/editClass/edit/items/SBaseTextEdit.ts

@@ -372,10 +372,16 @@ export class SBaseTextEdit extends SGraphEdit {
      * @return 对象储存的相关数据
      */
     toData(): any {
-        if(!this.data) return;
+        if (!this.data) return;
+
         if (this.data.size) {
             this.data.size.width = this.width;
             this.data.size.height = this.height;
+        } else {
+            this.data.size = {
+                width: this.width,
+                height: this.height
+            }
         }
 
         this.data.pos.x = this.pos.x;

+ 1 - 1
src/components/editClass/persagy-edit/PTopoParser.ts

@@ -24,7 +24,7 @@
  * ****/
 
 import { SParser } from '@persagy-web/big/lib';
-import { BigEditFactory, Legend, Marker, Relation, ElementData } from "./../big-edit"
+import { BigEditFactory, Legend, Marker, Relation, ElementData } from "@persagy-web/big-edit"
 
 /**
  * 拓扑图解析器

+ 48 - 3
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -23,16 +23,16 @@
  *
  * ****/
 
-import { SBaseEditScene, SBasePipe, SBaseEquipment } from "./../big-edit";
+import { SBaseEditScene, SBasePipe, SBaseEquipment } from "@persagy-web/big-edit";
 import { SGraphEdit, SGraphPropertyCommand, } from "@persagy-web/edit";
 import { SMouseEvent } from "@persagy-web/base/lib";
 import { SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
 import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
-import { rgbaNum } from "./../big-edit/until";
+import { rgbaNum } from "@persagy-web/big-edit/lib/until";
 // 引入命令
 import { SGraphAddCommand } from "@persagy-web/edit/lib/commands/SGraphAddCommand"
 import { SColor, SFont, SArrowStyleType } from '@persagy-web/draw/lib';
-import { PTopoParser } from "./"
+import { PTopoParser, SBasePipeUninTool } from "./"
 
 /**
  * 拓扑图场景类
@@ -137,6 +137,51 @@ export class PTopoScene extends SBaseEditScene {
     }
 
     /**
+     * 添加基本管道联通器
+     *
+     * @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();
+        }
+    }
+
+    /**
      * 鼠标右键事件
      *
      * @param   event   鼠标事件参数

+ 2 - 1
src/components/editClass/persagy-edit/index.ts

@@ -1,5 +1,6 @@
 import { PTopoScene } from "./PTopoScene";
 import { PTopoParser } from "./PTopoParser";
 import { SPersagyImageEdit } from "./item/SPersagyImageEdit"
+import { SBasePipeUninTool } from "./items/SBasePipeUninTool"
 import { PTopoView } from './PTopoView';
-export { PTopoParser, PTopoScene, SPersagyImageEdit, PTopoView }
+export { PTopoParser, PTopoScene, SPersagyImageEdit, PTopoView, SBasePipeUninTool }

+ 1 - 1
src/components/editClass/persagy-edit/item/SPersagyImageEdit.ts

@@ -26,7 +26,7 @@
 
 import { SBaseImageEdit } from '@persagy-web/edit';
 import { SGraphItem } from "@persagy-web/graph";
-import { Marker } from "./../../big-edit/types/Marker";
+import { Marker } from "@persagy-web/big-edit/lib/types/Marker";
 import { SMouseEvent } from "@persagy-web/base/lib";
 
 /**

+ 1 - 1
src/components/editClass/persagy-edit/items/SBaseArrow.ts

@@ -27,7 +27,7 @@
 import { SColor, SFont, SPainter, SArrowStyleType } from "@persagy-web/draw/";
 import { SBasePolylineEdit } from '@persagy-web/edit';
 import { SGraphItem, SLineStyle } from "@persagy-web/graph/lib";
-import { Marker } from "./../../big-edit/types/Marker";
+import { Marker } from "@persagy-web/big-edit/lib/types/Marker";
 import { SMouseEvent } from "@persagy-web/base/lib";
 
 /**

+ 17 - 17
src/components/editClass/big-edit/items/SBasePipeUninTool.ts

@@ -26,7 +26,7 @@
 
 import { SBaseImageEdit } from "@persagy-web/edit";
 import { SGraphItem } from "@persagy-web/graph/lib";
-import { Marker } from "./../types/Marker";
+import { Marker } from "@persagy-web/edit/lib/type/Marker";
 import { SMouseEvent } from "@persagy-web/base/lib";
 
 /**
@@ -45,22 +45,22 @@ export class SBasePipeUninTool extends SBaseImageEdit {
      */
     constructor(parent: SGraphItem | null, data: Marker) {
         super(parent, data);
-        // if (data && data.style) {
-        //     switch (data.style.uninToolType) {
-        //         case 2:
-        //             this.url = require('./../../../../assets/images/leftImgs/wantou.png');
-        //             break;
-        //         case 3:
-        //             this.url = require('./../../../../assets/images/leftImgs/santong.png');
-        //             break;
-        //         case 4:
-        //             this.url = require('./../../../../assets/images/leftImgs/sitong.png');
-        //             break;
-        //         default:
-        //             this.url = require('./../../../../assets/images/leftImgs/wantou.png');
-        //             break;
-        //     }
-        // }
+        if (data && data.style) {
+            switch (data.style.uninToolType) {
+                case 2:
+                    this.url = require('./../../../../assets/images/leftImgs/wantou.png');
+                    break;
+                case 3:
+                    this.url = require('./../../../../assets/images/leftImgs/santong.png');
+                    break;
+                case 4:
+                    this.url = require('./../../../../assets/images/leftImgs/sitong.png');
+                    break;
+                default:
+                    this.url = require('./../../../../assets/images/leftImgs/wantou.png');
+                    break;
+            }
+        }
     } // Constructor
 
     /**