YaolongHan 4 年之前
父节点
当前提交
7aabbe607b

+ 4 - 4
package.json

@@ -16,11 +16,11 @@
   },
   "dependencies": {
     "@persagy-web/base": "2.2.1",
-    "@persagy-web/big": "2.2.55",
+    "@persagy-web/big": "2.2.58",
     "@persagy-web/draw": "2.2.14",
-    "@persagy-web/graph": "2.2.46",
-    "@persagy-web/big-edit": "2.2.34",
-    "@persagy-web/edit": "2.2.28",
+    "@persagy-web/graph": "2.2.49",
+    "@persagy-web/big-edit": "2.2.38",
+    "@persagy-web/edit": "2.2.31",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",

+ 5 - 0
src/App.vue

@@ -30,4 +30,9 @@ html {
   height: 100%;
 
 }
+.el-color-dropdown__btns{
+  .el-color-dropdown__link-btn{
+    display: none;
+  }
+}
 </style>

+ 500 - 0
src/components/editClass/big-edit/SBaseEditScene.ts

@@ -0,0 +1,500 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .F88X
+ *        X8888Y
+ *      .}888888N;
+ *        i888888N;        .:!              .I$WI:
+ *          R888888I      .'N88~            i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
+ *          .R888888I    .;N8888~          .X8'  "8I.!,/8"  !%NY8`"8I8~~8>,88I
+ *            +888888N;  .8888888Y                                  "&&8Y.}8,
+ *            ./888888N;  .R888888Y        .'}~    .>}'.`+>  i}!    "i'  +/'  .'i~  !11,.:">,  .~]!  .i}i
+ *              ~888888%:  .I888888l      .]88~`1/iY88Ii+1'.R$8$8]"888888888>  Y8$  W8E  X8E  W8888'188Il}Y88$*
+ *              18888888    E8888881    .]W%8$`R8X'&8%++N8i,8N%N8+l8%`  .}8N:.R$RE%N88N%N$K$R  188,FE$8%~Y88I
+ *            .E888888I  .i8888888'      .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
+ *            8888888I  .,N888888~        ~88i"8W,!N8*.I88.}888%F,i$88"F88"  888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
+ *          i888888N'      I888Y          ]88;/EX*IFKFK88X  K8R  .l8W  88Y  ~88}'88E&%8W.X8N``]88!.$8K  .:W8I
+ *        .i888888N;        I8Y          .&8$  .X88!  i881.:%888>I88  ;88]  +88+.';;;;:.Y88X  18N.,88l  .+88/
+ *      .:R888888I
+ *      .&888888I                                          Copyright (c) 2016-2020.  博锐尚格科技股份有限公司
+ *        ~8888'
+ *        .!88~                                                                     All rights reserved.
+ *
+ * *********************************************************************************************************************
+ */
+
+import { SGraphDeleteListCommand, SGraphEditScene, SGraphEdit } from "@persagy-web/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, SOrderSetType } from "@persagy-web/graph/lib/";
+import { SBaseArrow, SBaseExpainEdit, SBasePipe } from "./"
+import { SBaseArrowPolyEdit } from './items/SBaseArrowPolyEdit';
+import { SGraphAddListCommand } from '@persagy-web/edit/lib/';
+
+/**
+ * big-edit 场景
+ *
+ * @author 韩耀龙 <han_yao_long@163.com>
+ */
+export class SBaseEditScene extends SGraphEditScene {
+    /** 图例节点 */
+    Nodes: any = [];  // 图例节点,所有与工程信息化相关的图例(图标类型与区域)
+    /** 图例节点 */  // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
+    Markers: any = [];
+    /** 管线对象 */
+    Relations: any = [];
+    /** 复制的对象 */
+    copyString: any[] = [];
+    /** 选中的对象 */
+    grabItem: null | SGraphEdit | SGraphItem = null;
+
+    /**
+     * 构造函数
+     *
+     */
+    constructor() {
+        super()
+    } // Constructor
+
+    /**
+     * 新增基础类注释
+     *
+     * @param event   鼠标事件参数
+     */
+    addExplainItem(event: SMouseEvent): void {
+        const data = {
+            /** 名称 */
+            name: '基础注释文本',
+            /** 图标 */
+            type: "Text",
+            /** 位置 */
+            pos: { x: event.x, y: event.y },
+            /** 由应用自己定义 */
+            properties: {
+                type: "BaseExplain",
+            },
+            style: {
+                default: {
+                    text: '请在右侧属性栏输入文字!',
+                    color: "#646c73",
+                    font: 14,
+                    backgroundcolor: "#f7f9facc",
+                }
+            }
+        };
+
+        const item = new SBaseExpainEdit(null, data);
+        item.moveTo(event.x, event.y);
+        item.selectable = true;
+        item.moveable = true;
+        this.addItem(item);
+        this.grabItem = null;
+        item.connect("onContextMenu", this, this.getItem);
+        this.finishCreated(item);
+    }
+
+    /**
+     * 新增基础箭头(折线)
+     *
+     * @param event 鼠标事件
+     */
+    addPolyLineArrow(event: SMouseEvent): void {
+        const data = {
+            name: '基础箭头',
+            type: "Arrow",
+            pos: { x: 0, y: 0 },
+            properties: {
+                type: "BaseArrow",
+            },
+            style: {
+                outLine: [{ x: event.x, y: event.y }],
+                begin: SArrowStyleType.None,  //开端箭头样式
+                end: SArrowStyleType.None,    //结尾箭头样式
+                isMove: true,                 //是否可以移动
+                default: {}
+            }
+        };
+
+        const item = new SBaseArrow(null, data);
+        item.status = SItemStatus.Create;
+        item.selectable = true;
+        this.addItem(item);
+        this.grabItem = item;
+        item.connect("finishCreated", this, this.finishCreated);
+        item.connect("onContextMenu", this, this.getItem);
+        if (this.view) {
+            this.view.update();
+        }
+    }
+
+    /**
+     * 新增基础箭头(多边形)
+     *
+     * @param event 鼠标事件
+     */
+    addPolygonArrow(event: SMouseEvent): void {
+        const data = {
+            /** 名称 */
+            name: '多边形箭头',
+            /** 图标(Image),线类型(Line) */
+            type: "ArrowPolygon",
+            /** 缩放比例(Image),线类型(Line) */
+            scale: { x: 1, y: 1, z: 1 },
+            /** 缩放比例(Image),线类型(Line) */
+            rolate: { x: 0, y: 0, z: 0 },
+            /** 位置 */
+            pos: { x: 0, y: 0 },
+            /** 由应用自己定义 */
+            properties: {
+                type: "BaseArrowPolygon"           // 自定义类型用于区分mark与node
+            },
+            style: {
+                line: [{ x: event.x, y: event.y }],
+                default: {
+                }
+            }
+        };
+        const item = new SBaseArrowPolyEdit(null, data);
+        item.status = SItemStatus.Create;
+        item.selectable = true;
+        this.addItem(item);
+        this.grabItem = item;
+        item.connect("finishCreated", this, this.finishCreated);
+        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();
+    //     }
+    // }
+
+    /**
+     * 新增管道
+     *
+     * @param event 鼠标事件
+     */
+    addBasePipe(event: SMouseEvent, legendObj: any) {
+        const anc = this.clickIsAnchor(event);
+        if (anc) {
+            const p = anc.mapToScene(0, 0)
+            anc.isConnected = true;
+            event.x = p.x;
+            event.y = p.y;
+        };
+        const data = {
+            name: legendObj.name,
+            graphElementId: legendObj.id,
+            lineType: '',
+            node1Id: '',
+            node2Id: '',
+            anchor1Id: '',
+            anchor2Id: '',
+            pointList: [{ x: event.x, y: event.y }],
+            properties: {
+                type: "BasePipe",
+            },
+            style: {
+                default: {
+                    strokeColor: legendObj.color,
+                    lineWidth: 4
+                }
+            }
+        };
+        const item = new SBasePipe(null, data);
+        item.status = SItemStatus.Create;
+        item.selectable = true;
+        this.addItem(item);
+        this.grabItem = item;
+        // 起始锚点
+        item.startAnchor = anc;
+        if (anc) {
+            anc.parent?.connect('changePos', item, item.changePos)
+            item.anchor1Id = anc.id;
+            item.node1Id = anc.parent ? anc.parent.nodeId : '';
+        }
+
+        console.log('anc', anc)
+        item.connect("finishCreated", this, this.finishCreated);
+        item.connect("onContextMenu", this, this.getItem);
+        if (this.view) {
+            this.view.update();
+        }
+    }
+
+    /**
+     * 重做
+     */
+    redo(): void {
+        if (this.grabItem && this.grabItem instanceof SGraphEdit) {
+            this.grabItem.redo()
+        } else {
+            this.undoStack.redo();
+        }
+    }
+
+    /**
+     * 撤销
+     */
+    undo(): void {
+        if (this.grabItem && this.grabItem instanceof SGraphEdit) {
+            this.grabItem.undo()
+        } else {
+            this.undoStack.undo();
+        }
+    }
+
+    /**
+     * 删除
+     *
+     * @return 删除的图例
+     */
+    deleteItem(itemArr: SGraphItem[] = []): any {
+        let itemList = null;
+        if (itemArr && itemArr.length && itemArr[0]) {
+            itemList = [...itemArr]
+        } else {
+            if (this.selectContainer.count == 0) {
+                return []
+            }
+            itemList = this.selectContainer.itemList;
+            this.undoStack.push(new SGraphDeleteListCommand(this, [...itemList]))
+        }
+        // 推入 undo/redo 栈
+        itemList.forEach((element: any) => {
+            this.removeItem(element)
+        });
+        if (this.view) {
+            this.view.update()
+        }
+        return itemList
+    }
+
+    /**
+     * 框选
+     */
+    addRectSelect(event: SMouseEvent): void {
+        let point = new SPoint(event.x, event.y);
+        let rect = new SRectSelectItem(null, point);
+        this.addItem(rect);
+        this.grabItem = rect;
+    }
+
+    /**
+     * 计算框选交集
+     *
+     * @param ctrl  是否点击ctrl
+     */
+    groupSelect(ctrl: boolean) {
+        if (this.grabItem instanceof SRectSelectItem) {
+            const rect = this.grabItem.boundingRect();
+            this.arrToSelect(this.root.children, rect)
+        }
+    }
+
+    /**
+     * 选中item:框选
+     *
+     * @param arr       实例数组
+     * @param rect      框选矩形区域
+     */
+    private arrToSelect(arr: SGraphItem[], rect: SRect) {
+        if (Array.isArray(arr) && arr.length) {
+            arr.forEach(t => {
+                if (!(t instanceof SGraphSelectContainer) && t.parent) {
+                    let temp = t.boundingRect();
+                    let lefttop = t.mapToScene(temp.left, temp.top)
+                    let rightbottom = t.mapToScene(temp.right, temp.bottom)
+                    let r = new SRect(lefttop, rightbottom)
+                    if (rect.isIn(r)) {
+                        this.selectContainer.toggleItem(t)
+                    }
+                }
+            })
+        }
+    }
+
+    /////////////////////////////////////////////////////////////////////
+    // 鼠标事件
+    /**
+     * 鼠标左键按下
+     *
+     * @param event   鼠标事件参数
+     */
+    onMouseDown(event: SMouseEvent): any {
+        if (!super.onMouseDown(event) && 1 == event.buttons) {
+            this.addRectSelect(event);
+        }
+    }
+
+    /**
+     * 鼠标抬起
+     *
+     * @param event   鼠标事件参数
+     */
+    onMouseUp(event: SMouseEvent): boolean {
+        if (this.grabItem) {
+            // 鼠标抬起时,如果grabItem为框选则删除框选item
+            if (this.grabItem instanceof SRectSelectItem) {
+                this.removeItem(this.grabItem);
+                this.groupSelect(false);
+                this.grabItem = null;
+
+                if (this.view) {
+                    this.view.update()
+                }
+                return true;
+            }
+
+            return this.grabItem.onMouseUp(event);
+        }
+
+        return super.onMouseUp(event)
+    }
+
+    /**
+     * 复制
+     */
+    copy(): void {
+        const itemList = this.save(false);
+        if (itemList) {
+            // 删除对应得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')
+            input.value = JSON.stringify(this.copyString)
+            sessionStorage.setItem("copyString", input.value);
+            document.body.appendChild(input);
+            input.select()
+            document.execCommand('copy');
+            input.style.display = 'none';
+            console.log(input.value, Date.now());
+            document.body.removeChild(input)
+        }
+    }
+
+
+
+    /**
+     * 添加多个item命令
+     *
+     *  @param itemList    鼠标事件对象
+     */
+    addListCommand(itemList: SGraphEdit[]): void {
+        this.undoStack.push(new SGraphAddListCommand(this, itemList));
+    }
+
+    /**
+     * 图例置顶、置底
+     *
+     * @parm type   设置类型
+     */
+    setOrder(type: string) {
+        this.selectContainer.setOrder(SOrderSetType[type])
+    }
+
+    /**
+   * 设置管线结束锚点
+   */
+    setTipeEndanchor(event: SMouseEvent): void {
+        if (this.grabItem instanceof SBasePipe) {
+            const anc = this.clickIsAnchor(event);
+            if (anc) {
+                const p = anc.mapToScene(0, 0)
+                anc.isConnected = true;
+                event.x = p.x;
+                event.y = p.y;
+                if (this.grabItem.status == SItemStatus.Create) {
+                    if (this.grabItem.pointList.length) {
+                        this.grabItem.endAnchor = anc;
+                        anc.parent?.connect('changePos', this.grabItem, this.grabItem.changePos)
+                    }
+
+                    this.grabItem.anchor2Id = anc.id
+                    this.grabItem.node2Id = anc.parent.nodeId
+                    this.grabItem.onMouseDown(event)
+                    this.grabItem.status = SItemStatus.Normal;
+                    this.finishCreated(this.grabItem)
+                    return
+                }
+            }
+
+            this.grabItem.onMouseDown(event)
+        }
+    }
+
+    /**
+     * 获取item (常用与场景外的调用F)
+     *
+     * @params isAll    是否为全部item数据
+     * @return obj      返回保存的数据接口
+     */
+    save(isAll: boolean = true): any {
+    }
+}

+ 42 - 27
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -26,13 +26,12 @@
 import { SBaseEditScene, SBasePipe, SBaseEquipment } from "@persagy-web/big-edit";
 import { SGraphEdit } from "@persagy-web/edit";
 import { SMouseEvent } from "@persagy-web/base/lib";
-import { SGraphAddCommand, SGraphPropertyCommand, SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
-import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
+import { SGraphAddCommand, SGraphItem, SGraphMoveCommand, SGraphPropertyCommand, SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
 import { rgbaNum } from "@persagy-web/big-edit/lib/until";
 // 引入命令
-import { SColor, SFont, SArrowStyleType } from '@persagy-web/draw/lib';
+import { SColor, SFont, SArrowStyleType, SPoint } from '@persagy-web/draw/lib';
 import { PTopoParser, SBasePipeUninTool, SBaseEquation, SBaseInfoPoint, SBaseBtns } from "./"
-import { ItemOrder } from '@persagy-web/big/lib';
+import { ItemOrder, SItemStatus } from '@persagy-web/big/lib';
 
 /**
  * 拓扑图场景类
@@ -73,7 +72,7 @@ export class PTopoScene extends SBaseEditScene {
             } else {
                 const colorlist: any = rgbaNum(val);
                 if (!colorlist) return
-                this.view.backgroundColor = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255))
+                this.view.backgroundColor = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255)
             }
             this.view.update()
 
@@ -119,7 +118,7 @@ export class PTopoScene extends SBaseEditScene {
             return this.grabItem.onMouseDown(event);
         }
         if (this.editCmd == "EditBaseLine") {
-            this.addPolyLineArrow(event);
+            const item = this.addPolyLineArrow(event);
             this.clearCmdStatus();
         } else if (this.editCmd == "EditBasePolyLine") {
             this.addPolyLine(event);
@@ -127,40 +126,37 @@ export class PTopoScene extends SBaseEditScene {
         } else if (this.editCmd == "EditBasetext") {
             this.addTextItem(event);
             this.clearCmdStatus();
-        }
-        else if (this.editCmd == "BaseExplain") {
+        } else if (this.editCmd == "BaseExplain") {
             this.addExplainItem(event);
             this.clearCmdStatus();
         } else if (this.editCmd == "EditBaseImage") {
             this.addImageItem(event)
             this.clearCmdStatus();
-        }
-        else if (this.editCmd == "EditBasePolygon") {
+        } else if (this.editCmd == "EditBasePolygon") { //
             this.addPolygonItem(event);
             this.clearCmdStatus();
-        } else if (this.editCmd == "EditBaseRect") {
-            this.addRectItem(event)
+        } else if (this.editCmd == "EditBaseRect") { // 设置层级与多边形一致
+            const item = this.addRectItem(event)
+            item.zOrder = ItemOrder.polygonOrder;
             this.clearCmdStatus();
         } else if (this.editCmd == "EditBaseTriangle") {
             this.addTriangleItem(event)
             this.clearCmdStatus();
-        } else if (this.editCmd == "EditBaseCircle") {
-            this.addCircleItem(event)
+        } else if (this.editCmd == "EditBaseCircle") { // 设置层级与多边形一致
+            const item = this.addCircleItem(event)
+            item.zOrder = ItemOrder.polygonOrder
             this.clearCmdStatus();
-        }
-        else if (this.editCmd == "EditBaseArrows") {
-            this.addPolygonArrow(event)
+        } else if (this.editCmd == "EditBaseArrows") { // 设置层级与多边形一致
+            const item = this.addPolygonArrow(event)
+            item.zOrder = ItemOrder.polygonOrder
             this.clearCmdStatus();
-        }
-        else if (this.editCmd == "wantou" || this.editCmd == "santong" || this.editCmd == "sitong") {
+        } else if (this.editCmd == "wantou" || this.editCmd == "santong" || this.editCmd == "sitong") {
             this.addPipeUninTool(event, this.editCmd)
             this.clearCmdStatus();
-        }
-        else if (this.editCmd == "EditBasePipe") {
+        } else if (this.editCmd == "EditBasePipe") {
             this.addBasePipe(event, this.legendObj);
             this.clearCmdStatus();
-        }
-        else if (this.editCmd == "equation") {
+        } else if (this.editCmd == "equation") {
             // 添加公式
             this.addEquation(event, this.editCmd);
             this.clearCmdStatus();
@@ -202,7 +198,7 @@ export class PTopoScene extends SBaseEditScene {
      * @param event     鼠标事件
      * @param cmd       命令
      */
-    addPipeUninTool(event: SMouseEvent, cmd: string): void {
+    addPipeUninTool(event: SMouseEvent, cmd: string): SBasePipeUninTool {
         const data = {
             /** 名称 */
             name: '基础管道接头',
@@ -234,13 +230,14 @@ export class PTopoScene extends SBaseEditScene {
         if (this.view) {
             this.view.update();
         }
+        return item;
     }
 
     /**
      * 添加公式
      * @param event
      */
-    addEquation(event: SMouseEvent, cmd: string) {
+    addEquation(event: SMouseEvent, cmd: string): SBaseEquation {
         const data = {
             /** 名称 */
             name: '公式',
@@ -269,13 +266,14 @@ export class PTopoScene extends SBaseEditScene {
         this.grabItem = null;
         item.connect("onContextMenu", this, this.getItem);
         this.finishCreated(item);
+        return item;
     }
 
     /**
      * 添加信息点
      * @param event
      */
-    addInfoPoint(event: SMouseEvent, cmd: string) {
+    addInfoPoint(event: SMouseEvent, cmd: string): SBaseInfoPoint {
         const data = {
             /** 名称 */
             name: '信息点',
@@ -304,13 +302,14 @@ export class PTopoScene extends SBaseEditScene {
         this.grabItem = null;
         item.connect("onContextMenu", this, this.getItem);
         this.finishCreated(item);
+        return item;
     }
 
     /**
      * 添加按钮
      * @param event
      */
-    SBaseBtn(event: SMouseEvent) {
+    SBaseBtn(event: SMouseEvent): SBaseBtns {
         const data = {
             /** 名称 */
             name: '按钮',
@@ -342,6 +341,7 @@ export class PTopoScene extends SBaseEditScene {
         this.grabItem = null;
         item.connect("onContextMenu", this, this.getItem);
         this.finishCreated(item);
+        return item;
     }
 
 
@@ -551,4 +551,19 @@ export class PTopoScene extends SBaseEditScene {
         this.addListCommand(graphItemList);
         this.view ? this.view.update() : '';
     }
+
+    /**
+     * 覆盖底层添加 item 方法,增加绑定移动事件
+    */
+    addItem(item: SGraphItem): void {
+        super.addItem(item);
+        item.connect('onMove', this, this.onItemMove.bind(this));
+    }
+
+    /**
+     * 添加移动命令到命令栈
+    */
+    onItemMove(item: SGraphItem, arg: SPoint[]) {
+        this.undoStack.push(new SGraphMoveCommand(this, item, arg[0], arg[1]));
+    }
 }

+ 4 - 5
src/components/editClass/persagy-edit/items/SBaseBtns.ts

@@ -24,11 +24,10 @@
 * *********************************************************************************************************************
 */
 
-import { SBaseTextEdit, SGraphEdit } from "@persagy-web/edit";
-import { SGraphItem, STextItem, SLineStyle } from "@persagy-web/graph/lib";
-import { Marker } from "@persagy-web/big-edit/lib/types/Marker";
-import { SMouseEvent } from "@persagy-web/base/lib";
-import { SColor, SPainter, SSize, SRect } from '@persagy-web/draw/lib';
+import { SBaseTextEdit } from "@persagy-web/edit";
+import { SGraphItem } from "@persagy-web/graph/lib";
+import { SColor, SPainter } from '@persagy-web/draw/lib';
+import { Marker } from "@persagy-web/big/lib";
 
 /**
   * 编辑基础按钮类

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

@@ -26,8 +26,8 @@
 
 import { SBaseImageEdit } from "@persagy-web/edit";
 import { SGraphItem } from "@persagy-web/graph/lib";
-import { Marker } from "@persagy-web/edit/lib/type/Marker";
 import { SMouseEvent } from "@persagy-web/base/lib";
+import { Marker } from "@persagy-web/big/lib";
 
 /**
  * 编辑鼠标图例

+ 2 - 4
src/components/editClass/persagy-edit/items/SBaseEquation.ts

@@ -25,10 +25,8 @@
  */
 
 import { SBaseTextEdit } from "@persagy-web/edit"
-import { SColor, SFont, SPainter } from "@persagy-web/draw/";
-import { SGraphItem, SLineStyle } from "@persagy-web/graph/lib";
-import { Marker } from "@persagy-web/big-edit/lib/types/Marker";
-import { SMouseEvent } from "@persagy-web/base/lib";
+import { SGraphItem } from "@persagy-web/graph/lib";
+import { Marker } from "@persagy-web/big/lib";
 
 /**
  * 公式类

+ 2 - 4
src/components/editClass/persagy-edit/items/SBaseInfoPoint.ts

@@ -24,11 +24,9 @@
  * *********************************************************************************************************************
  */
 
+import { Marker } from "@persagy-web/big/lib";
 import { SBaseTextEdit } from "@persagy-web/edit"
-import { SColor, SFont, SPainter } from "@persagy-web/draw/";
-import { SGraphItem, SLineStyle } from "@persagy-web/graph/lib";
-import { Marker } from "@persagy-web/big-edit/lib/types/Marker";
-import { SMouseEvent } from "@persagy-web/base/lib";
+import { SGraphItem } from "@persagy-web/graph/lib";
 
 /**
  * 信息点

+ 31 - 9
src/components/editview/rightPropertyBar/baseTextPro.vue

@@ -10,9 +10,9 @@
             <div class="cololorSelect">
               <el-color-picker
                 show-alpha
-                @change="changeColor"
+                @change="changeStrokeColor"
                 class="fix-box-1"
-                v-model="color"
+                v-model="strokecolor"
               ></el-color-picker>
             </div>
             <span>颜色</span>
@@ -25,7 +25,7 @@
               @change="changeFontSize"
               size="mini"
               :min="1"
-              :max="20"
+              :max="60"
               :maxlength="100"
             ></el-input-number>
             <span>字号</span>
@@ -52,19 +52,35 @@
         ></el-input>
         <span>文本</span>
       </li>
+      <li>
+        <div class="property" style="justify-content:flex-start">
+          <div class="color-box">
+            <div class="cololorSelect">
+              <el-color-picker
+                show-alpha
+                @change="changeColor"
+                class="fix-box-1"
+                v-model="color"
+              ></el-color-picker>
+            </div>
+            <span>文本颜色</span>
+          </div>
+        </div>
+      </li>
     </ul>
   </div>
 </template>
 <script>
 import bus from "@/bus/bus";
 export default {
-  props: ["strokeColor", "fontSize", "backgroundColor", "textMsg"],
+  props: ["strokeColor", "fontSize", "backgroundColor", "textMsg", "fontColor"],
   data() {
     return {
       size: 0, //font-size
       text: "", //文本
-      color: "",
+      color: "", // 文本颜色
       backgroundcolor: "",
+      strokecolor: '', // 边框颜色
       borderLineOption: [
         {
           id: "solid",
@@ -87,9 +103,9 @@ export default {
     changeText(val) {
       bus.$emit("updateStyle", "text", val);
     },
-    // 改变颜色
+    // 改变字体颜色
     changeColor(val) {
-      bus.$emit("updateStyle", "strokeColor", val);
+      bus.$emit("updateStyle", "color", val);
     },
     // 改变背景颜色
     changeBackground(val) {
@@ -99,13 +115,17 @@ export default {
     changeFontSize(val) {
       bus.$emit("updateStyle", "font", val);
     },
+    // 改变边框颜色
+    changeStrokeColor(val) {
+      bus.$emit("updateStyle", "strokeColor", val);
+    }
   },
   mounted() {
     // console.log(Select)
   },
   watch: {
     strokeColor(val) {
-      this.color = val;
+      this.strokecolor = val;
     },
     fontSize(val) {
       this.size = val;
@@ -113,10 +133,12 @@ export default {
     backgroundColor(val) {
       this.backgroundcolor = val;
     },
-
     textMsg(val) {
       this.text = val;
     },
+    fontColor(val) {
+      this.color = val;
+    }
   },
 };
 </script>

+ 3 - 1
src/components/editview/rightPropertyBar/property.vue

@@ -6,6 +6,7 @@
       :fontSize="fontSize"
       :textMsg="textMsg"
       :backgroundColor="backgroundColor"
+      :fontColor="color"
       v-show="itemType == 'BaseText' || itemType == 'BaseExplain'"
     ></baseTextPro>
     <BaseBtn
@@ -205,10 +206,11 @@ export default {
         this.itemType == "BaseText" ||
         this.itemType == "BaseExplain"
       ) {
-        this.strokeColor = item.color.toRgba();
+        this.strokeColor = item.strokeColor.toRgba();
         this.backgroundColor = item.backgroundColor.toRgba();
         this.textMsg = item.text;
         this.fontSize = item.font.size;
+        this.color = item.color.toRgba();
       } else if (
         this.itemType == "BaseImage" ||
         this.itemType == "BasePipeUninTool"

+ 17 - 5
src/components/homeView/graphTypeDialog.vue

@@ -12,7 +12,7 @@
       <div class="right content">
         <p>设备分类参考</p>
         <div class="treeContainer">
-          <el-tree :data="treeData" :props="defaultProps" accordion @current-change="changeNode"></el-tree>
+          <el-tree :data="treeData" :props="defaultProps" accordion></el-tree>
         </div>
       </div>
     </div>
@@ -23,7 +23,7 @@
   </el-dialog>
 </template>
 <script>
-import { queryCategoryGraph } from "@/api/home"
+import { mapState } from "vuex";
 export default {
   data() {
     return {
@@ -37,14 +37,26 @@ export default {
       selectNode: {}
     }
   },
+  computed: {
+    ...mapState(["categoryGraph"]),
+  },
   mounted() {
     this.init()
   },
+  watch: {
+    categoryGraph: {
+      handler: function(v) {
+        this.treeData = v;
+      },
+      immediate: true,
+      deep: true
+    }
+  },
   methods: {
     init() {
-      queryCategoryGraph({ switch: true }).then(res => {
-        this.treeData = res.content;
-      })
+      // queryCategoryGraph({ switch: true }).then(res => {
+      //   this.treeData = this.categoryGraph;
+      // })
     },
     showDialog() {
       this.innerVisible = true

+ 2 - 0
src/components/homeView/leftAsideTree.vue

@@ -52,6 +52,8 @@ export default {
         this.treeData = res.content;
         if (!res.content.length) {
           this.$emit("noTree");
+        } else {
+          this.$emit("getDataSuc")
         }
       });
     },

+ 17 - 4
src/components/homeView/move.vue

@@ -11,7 +11,8 @@
 </template>
 
 <script>
-import { queryCategoryGraph, updateDraftsGraph, updatePubGraph } from "@/api/home"
+import { updateDraftsGraph, updatePubGraph } from "@/api/home"
+import { mapState } from "vuex";
 export default {
   props: {
     isPub: {
@@ -32,14 +33,26 @@ export default {
       data: []
     };
   },
+  computed: {
+    ...mapState(["categoryGraph"]),
+  },
   mounted() {
     this.init()
   },
+  watch: {
+    categoryGraph: {
+      handler: function(v) {
+        this.treeData = v;
+      },
+      immediate: true,
+      deep: true
+    }
+  },
   methods: {
     init() {
-      queryCategoryGraph({ switch: true }).then(res => {
-        this.treeData = res.content;
-      })
+      // queryCategoryGraph({ switch: true }).then(res => {
+      //   this.treeData = res.content;
+      // })
     },
     showDialog(data) {
       this.dialogVisible = true;

+ 1 - 1
src/components/homeView/recycle.vue

@@ -12,7 +12,7 @@
     </div>
     <div class="main-body" :class="{'no-data': !cardList.length}" v-loading="recycleLoading">
       <template v-for="t in cardList">
-        <topoImageCard :isRecycle="true" :data="t" :key="t.id" @recover="recover" @deleteRecycle="deleteRecycle"></topoImageCard>
+        <topoImageCard :isRecycle="true" :data="t" :key="t.graphId" @recover="recover" @deleteRecycle="deleteRecycle"></topoImageCard>
       </template>
       <div v-if="!cardList.length" style="margin-top: 112px;">
         <img :src="require('@/assets/images/no-data.png')" style="width: 116px;height:116px;">

+ 34 - 2
src/components/homeView/recycleDialog.vue

@@ -10,13 +10,37 @@
 
 <script>
 import { recoveryGraph, queryDraftsGraph } from "@/api/home"
+import { mapState } from "vuex"
+function changeArr(list, map) {
+  for (let i = 0; i < list.length; i++) {
+    const ele = list[i];
+    if (ele.categoryList) {
+      changeArr(ele.categoryList, map);
+    }
+    map[ele.code] = ele;
+    delete map[ele.code].categoryList
+  }
+}
 export default {
   data() {
     return {
       dialogVisible: false,
-      data: {}
+      data: {},
+      codeToName: {}
     };
   },
+  computed: {
+    ...mapState(["categoryGraph"])
+  },
+  watch: {
+    categoryGraph: {
+      handler: function(v) {
+        changeArr(v, this.codeToName)
+      },
+      immediate: true,
+      deep: true
+    }
+  },
   methods: {
     showDialog(data) {
       this.data = data;
@@ -50,10 +74,18 @@ export default {
       if (res.result == "success") {
         this.dialogVisible = false;
         this.$emit("recoverSuc");
-        this.$message.success('恢复成功');
+        this.$message.success(`已恢复至${this.getCategoryName(this.data.categoryId) || ''}`);
       } else {
         this.$message(res.message)
       }
+    },
+    // 获取恢复的图的分类
+    getCategoryName(id) {
+      if (!this.codeToName[id].parentId) {
+        return this.codeToName[id].name
+      } else {
+        return this.getCategoryName(this.codeToName[id].parentId) + '-' + this.codeToName[id].name
+      }
     }
   }
 };

+ 5 - 1
src/components/homeView/tagDialog.vue

@@ -17,7 +17,7 @@
 </template>
 
 <script>
-import { updatePubGraph } from "@/api/home"
+import { updatePubGraph, updateDraftsGraph } from "@/api/home"
 export default {
   props: {
     isPub: {
@@ -73,6 +73,10 @@ export default {
         updatePubGraph(pa).then(res => {
           this.updateCall(res)
         })
+      } else {
+        updateDraftsGraph(pa).then(res => {
+          this.updateCall(res)
+        })
       }
     },
     // 更新成功回调

+ 1 - 1
src/components/homeView/topoImageCard.vue

@@ -96,7 +96,7 @@ export default {
         { name: "rename", label: "重命名", show: "any" }, // 类型为 未发布/已发布 时出现
         { name: "publish", label: "发布", show: 0 }, // 类型为 未发布 时出现
         { name: "download", label: "下载", show: 1 }, // 类型为 已发布 时出现
-        { name: "editTag", label: "修改标签", show: 1 }, // 类型为 已发布 时出现
+        { name: "editTag", label: "修改标签", show: "any" }, // 类型为 未发布/已发布 时出现
         { name: "moveTo", label: "移动到", show: "any" }, // 类型为 未发布/已发布 时出现
         { name: "delete", label: "删除", show: "any" }, // 类型为 未发布/已发布 时出现
         { name: "editGraph", label: "编辑", show: "any" }, // 类型为 未发布/已发布 时出现

+ 14 - 2
src/store/index.ts

@@ -1,5 +1,6 @@
 import Vue from 'vue'
 import Vuex from 'vuex'
+import { queryCategoryGraph } from "@/api/home"
 
 Vue.use(Vuex)
 
@@ -14,9 +15,10 @@ export default new Vuex.Store({
     categoryId: '',   //类型id 用于读图
     tupoName: '',  //拓扑图名称
     version: "", //版本号
-    viewBackground:'',
+    viewBackground: '',
     equipmentItemList: [], // 图上相关的设备实例
-    equipmentItemNum: 0 //图上相关的设备实例的数量
+    equipmentItemNum: 0, //图上相关的设备实例的数量
+    categoryGraph: [], // 拓扑图所属分类-所有分类list
   },
   mutations: {
     // 修改编辑器命令
@@ -71,9 +73,19 @@ export default new Vuex.Store({
       };
       state.equipmentItemList = arr1;
       state.equipmentItemNum = state.equipmentItemList.length
+    },
+    // 获取完成所有分类后
+    SETCATEGORYGRAPH(state, val): void {
+      state.categoryGraph = val;
+      
     }
   },
   actions: {
+    async getAllCategoryType({ commit }) {
+      await queryCategoryGraph({ switch: true }).then(res => {
+        commit('SETCATEGORYGRAPH', res.content)
+      })
+    }
   },
   modules: {
   }

+ 11 - 4
src/views/home.vue

@@ -41,6 +41,7 @@
           ref="leftAsideTree"
           @changeNode="changeNode"
           @noTree="(noTreeFlag = false), (popVisible = true)"
+          @getDataSuc="getTreeSuc"
         ></leftAsideTree>
         <div
           class="recycle"
@@ -107,7 +108,7 @@
               <topoImageCard
                 :isPub="isPub"
                 :data="t"
-                :key="t.id"
+                :key="t.graphId"
                 @changeCheck="changeCheck"
                 @rename="rename"
                 @publishSuc="updateSuc"
@@ -165,7 +166,7 @@ import tagDialog from "@/components/homeView/tagDialog";
 import recycle from "@/components/homeView/recycle";
 import createGraphDialog from "@/components/homeView/createGraphDialog";
 import { SNetUtil } from "@persagy-web/base";
-import { mapMutations, mapState } from "vuex";
+import { mapMutations, mapState, mapActions } from "vuex";
 ////////////////////////////////
 // 常量
 // 图服务路径
@@ -203,6 +204,7 @@ export default {
   },
   methods: {
     ...mapMutations(["SETPROJECTID"]),
+    ...mapActions(['getAllCategoryType']),
     getProject(data) {
       this.SETPROJECTID(data.id);
       // 判断垃圾箱是否可以点击
@@ -290,7 +292,6 @@ export default {
     },
     // 删除成功
     deleteSuc() {
-      this.queryGraph();
       this.$refs.leftAsideTree.getCategoryGraph();
     },
     // 选中节点变化
@@ -300,6 +301,12 @@ export default {
       this.categoryName = data.name;
       this.queryGraph();
     },
+    // 树数据获取成功
+    getTreeSuc() {
+      this.noTreeFlag = true;
+      this.cardList = [];
+      this.queryGraph();
+    },
     // 发布修改
     changePub() {
       this.queryGraph();
@@ -321,7 +328,6 @@ export default {
     },
     // 回收站关闭
     recycleDialogClose() {
-      this.queryGraph();
       this.$refs.leftAsideTree.getCategoryGraph();
     },
     // 新建拓扑图成功
@@ -492,6 +498,7 @@ export default {
 
     // 判断垃圾箱是否可以点击
     this.getRecycleData();
+    this.getAllCategoryType()
   },
 };
 </script>