Browse Source

Merge branch 'dev' of http://39.106.8.246:3003/web/persagy-plan-editer into dev

yunxing 4 years ago
parent
commit
5cc4c274ce

+ 1 - 1
package.json

@@ -22,7 +22,7 @@
     "@persagy-web/draw": "2.2.8",
     "@persagy-web/graph": "2.2.31",
     "@persagy-web/big-edit": "2.2.4",
-    "@persagy-web/edit": "2.2.2",
+    "@persagy-web/edit": "2.2.3",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",

+ 54 - 19
src/components/editview/basePlanEditer.vue

@@ -25,32 +25,42 @@ import { publishGraph } from "@/api/home";
 export default {
     components: { topoTooltip },
     props: {
+        elements: {
+            type: Object,
+            default: () => {
+                return {
+                    objExtInfo: [],
+                    markers: [],
+                    relations: []
+                }
+            }
+        },
         // 1.底图颜色
         baseMapStyle: {
             type: Object,
             default: () => {
                 return {
                     default: {
-                        stroke: "#F0F3F7",
-                        fill: "#F0F3F7",
+                        strokeColor: "#F0F3F7",
+                        fillColor: "#F0F3F7",
                         lineWidth: 1,
                         effect: {},
                     },
                     selected: {
-                        stroke: "#000000",
-                        fill: "#e1f3fe",
+                        strokeColor: "#000000",
+                        fillColor: "#ff0000",
                         lineWidth: 100,
                         effect: {},
                     },
                     disabled: {
-                        stroke: "#2b2b2b",
-                        fill: "#afafaf",
+                        strokeColor: "#2b2b2b",
+                        fillColor: "#afafaf",
                         lineWidth: 1,
                         effect: {},
                     },
                     highlight: {
-                        stroke: "#2b2b2b",
-                        fill: "#fbb029",
+                        strokeColor: "#2b2b2b",
+                        fillColor: "#fbb029",
                         lineWidth: 1,
                         effect: {},
                     },
@@ -76,9 +86,6 @@ export default {
         ...mapState(["editCmd", "legendObj", "graphId", "id", "isPub", "categoryId", "projectId", "version"]),
     },
     created() {
-        this.SETPROJECT(this.$route.query);
-        this.SETISPUB(this.$route.query.isPub);
-        this.categoryName = decodeURI(this.$route.query.categoryName);
         this.clearImg();
     },
     mounted() {
@@ -130,7 +137,9 @@ export default {
             // 获取压缩包数据并解压
             this.getMapBlob();
             // 读取底图
-            this.readtopoMsg();
+            // this.readtopoMsg();
+            // 加载基本元素
+            this.loadBasElements();
         },
         // 请求获取地图的压缩包
         getMapBlob() {
@@ -164,9 +173,9 @@ export default {
                 //是否显示空间
                 // t.visible = this.isSpaceSelectable;
                 //设置样式
-                t = { ...this.baseMapStyle.selected };
+                Object.assign(t, this.baseMapStyle.default)
                 //是否展示名称
-                // t.showBaseName = this.showBaseName;
+                // t.showBaseName = true;
                 // 是否可选
                 // t.selectable = true;
                 // t.connect("onMouseDown", this, this.clickSpaceItem);
@@ -175,35 +184,35 @@ export default {
                 this.scene.addItem(t);
             });
             parser.wallList.forEach((t) => {
-                //是否显示
+                // 是否显示
                 // t.visible = this.isShowWall;
                 // 是否可选
                 // t.selectable = true;
                 this.scene.addItem(t);
             });
             parser.virtualWallList.forEach((t) => {
-                //是否显示
+                // 是否显示
                 // t.visible = this.isShowVirtualWall;
                 // 是否可选
                 // t.selectable = true;
                 this.scene.addItem(t);
             });
             parser.doorList.forEach((t) => {
-                //是否显示
+                // 是否显示
                 // t.visible = this.isShowDoor;
                 // 是否可选
                 // t.selectable = true;
                 this.scene.addItem(t);
             });
             parser.columnList.forEach((t) => {
-                //是否显示
+                // 是否显示
                 // t.visible = this.isShowColumn;
                 // 是否可选
                 // t.selectable = true;
                 this.scene.addItem(t);
             });
             parser.casementList.forEach((t) => {
-                //是否显示
+                // 是否显示
                 // t.visible = this.isShowWindow;
                 // 是否可选
                 // t.selectable = true;
@@ -360,6 +369,9 @@ export default {
                     this.ADDEQUIPITEM(item);
                 }
             });
+            /**
+             * 管线元素最后添加
+             */
             parse.relations.forEach((t) => {
                 // 设置锚点
                 if (t.anchor1Id) {
@@ -395,6 +407,23 @@ export default {
                 this.scene.addItem(t);
             });
         },
+
+        // 加载基本元素
+        loadBasElements() {
+            const parse = new SPlanParser();
+            parse.parseData(this.elements);
+            parse.markers.forEach((item) => {
+                item.selectable = true;
+                item.moveable = true;
+                item.connect("finishCreated", this.scene, this.scene.finishCreated);
+                item.connect("onContextMenu", this, this.scene.getItem);
+                this.scene.addItem(item);
+            });
+        },
+
+
+
+
         // 生成快照并保存草稿
         saveTopoDraft() {
             const uuid = uuidv1();
@@ -567,6 +596,12 @@ export default {
             },
             deep: true,
         },
+        elements:{
+            handler(){
+                this.loadBasElements()
+            },
+            deep: true
+        }
     },
     beforeDestroy() {
         clearInterval(this.autoSave);

+ 147 - 0
src/components/editview/planEditer.vue

@@ -0,0 +1,147 @@
+<template>
+    <div class="topo-editer">
+        <div class="top-bar">
+            <topToolBar></topToolBar>
+        </div>
+        <div class="contents">
+            <div class="left-bar">
+                <leftToolBar :equipData="equipData" :zoneData="zoneData"></leftToolBar>
+            </div>
+            <div class="base-topo-editer">
+                <!-- <baseTopoEditer></baseTopoEditer> -->
+                <basePlanEditer :elements="elements"></basePlanEditer>
+            </div>
+            <div class="right-bar">
+                <rightPropertyBar></rightPropertyBar>
+            </div>
+        </div>
+    </div>
+</template>
+<script>
+import { mapState, mapMutations } from "vuex";
+import leftToolBar from "./leftToolBar";
+import rightPropertyBar from "./rightPropertyBar";
+// import baseTopoEditer from "./baseTopoEditer";
+import basePlanEditer from "./basePlanEditer";
+import topToolBar from "./topToolBar";
+import { readGroup, readPubGroup } from "@/api/editer";
+import { SPlanParser } from "@/lib";
+export default {
+    // components: {baseTopoEditer },
+    components: { leftToolBar, rightPropertyBar, topToolBar, basePlanEditer },
+    data() {
+        return {
+            elements: {}, // 平面图数据
+            ruleList: [], // 规则列表
+            style: {
+                dykgg: {
+                    name: "",
+                    strokeColor: "",
+                    fillColor: "",
+                    lineWidth: "",
+                    effect: {},
+                },
+                Eq1254: {
+                    strokeColor: "",
+                    fillColor: "",
+                    lineWidth: "",
+                    effect: {},
+                },
+            }, // 样式
+            equipData: {}, //设备列表
+            zoneData: {}, // 空间列表
+        };
+    },
+    computed: {
+        ...mapState(["editCmd", "legendObj", "graphId", "id", "isPub", "categoryId", "projectId", "version"]),
+    },
+    created() {
+        this.SETPROJECT(this.$route.query);
+        this.SETISPUB(this.$route.query.isPub);
+        this.categoryName = decodeURI(this.$route.query.categoryName);
+        this.readtopoMsg();
+    },
+    methods: {
+        ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ", "SETPROJECT", "SETCATEGROY", "SETISPUB", "ADDEQUIPITEM", "EDITEQUIPITEM", "SETVERSION"]),
+        // 读取平面图
+        readtopoMsg() {
+            const obj = {
+                graphId: this.graphId,
+                id: this.id,
+            };
+            if (this.isPub == 1) {
+                // 已发布
+                readPubGroup(obj).then((res) => {
+                    this.getDataSuc(res);
+                });
+            } else {
+                readGroup(obj).then((res) => {
+                    this.getDataSuc(res);
+                });
+            }
+        },
+        // 读图成功回调
+        getDataSuc(res) {
+            if (res.result == "failure") return;
+            this.SETCATEGROY(res.content);
+            this.elements = res.content.elements;
+            if (res.content.ruleList && res.content.ruleList.length) {
+                this.ruleList = res.content.ruleList;
+                this.ruleList.forEach((rule) => {
+                    if (rule.commond && rule.commond === "query") {
+                        if (rule.returnType && rule.returnType === "equip") {
+                            setTimeout(() =>{
+                                console.log("请求设备数据")
+                            }, parseInt(Math.random()*10+1,10) * 100)
+                        } else if (rule.returnType && rule.returnType === "zone") {
+                            setTimeout(() => {
+                                console.log("请求空间数据");
+                            }, 1000);
+                        } else if (rule.returnType && rule.returnType === "equipGroup") {
+                            setTimeout(() => {
+                                console.log("请求设备组数据");
+                            }, 1000);
+                        }
+                    } else if (rule.commond && rule.commond === "delete") {
+                        console.log("删除命令!!!", rule);
+                    }
+                });
+            }
+        },
+        // 解析设备数据
+        mergeData(list) {
+            const addEquip = [];
+            list.forEach((item) => {
+                if (!this.equipData[item.id]) {
+                    this.equipData[item.id] = item;
+                    addEquip.push(item);
+                }
+            });
+        },
+    },
+};
+</script>
+<style lang="less">
+.topo-editer {
+    width: 100%;
+    height: 100%;
+    .top-bar {
+        width: 100%;
+        z-index: 99;
+    }
+    .contents {
+        width: 100%;
+        height: calc(~"100% - 48px");
+        display: flex;
+        justify-content: flex-start;
+        .right-bar {
+            // width: 240px;
+            height: 100%;
+        }
+        .base-topo-editer {
+            flex: 1;
+            height: 100%;
+        }
+    }
+}
+</style>

+ 0 - 0
src/data/equipData.json


+ 4 - 3
src/lib/SPlanParser.ts

@@ -34,7 +34,8 @@ import { BigEditFactory, Legend, Marker, Relation, ElementData } from "@persagy-
 export class SPlanParser extends SParser {
     /**图例节点 */
     nodes: any = []; // 图例节点,所有与工程信息化相关的图例(图标类型与区域) // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
-    /**图例节点 */ markers: any = [];
+    /**图例节点 */
+    markers: any = [];
     /**  管线对象 */
     relations: any = [];
     constructor() {
@@ -129,9 +130,9 @@ export class SPlanParser extends SParser {
     }
 
     /**
-     * 添加生成 Re 实例
+     * 添加生成 Relation 实例
      *
-     * @param data Legend   图例类型数据
+     * @param data Relation   图例类型数据
      */
     addRelation(data: Relation) {
         let relation = null;

+ 31 - 1
src/lib/SPlanScene.ts

@@ -24,7 +24,7 @@
  * ****/
 
 import { SBaseEditScene, SBasePipe, SBaseEquipment } from "@persagy-web/big-edit";
-import { SGraphEdit, SGraphPropertyCommand } from "@persagy-web/edit";
+import { SGraphEdit, SGraphPropertyCommand, SBaseImageEdit } from "@persagy-web/edit";
 import { SMouseEvent } from "@persagy-web/base";
 import { SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
 import { SItemStatus, ItemColor } from "@persagy-web/big";
@@ -129,6 +129,36 @@ export class SPlanScene extends SBaseEditScene {
     }
 
     /**
+     * 重载添加图片-可以根据底图缩放的图片
+     * @param event 
+     */
+    addImageItem(event: SMouseEvent):void {
+        const data = {
+            name: '基础图片',
+            num: 1,
+            type: "Image",
+            pos: { x: event.x, y: event.y },
+            properties: {
+                type: "BaseImage",
+            },
+            style: {
+                default: {
+                    strokecolor: "#c0ccda",
+                    url: '',
+                }
+            }
+        };
+        const item = new SBaseImageEdit(null, data);
+        item.isTransform = false;
+        item.showSelect = false;
+        item.selectable = true;
+        item.moveable = true;
+        this.addItem(item);
+        item.connect("onContextMenu", this, this.getItem);
+        this.finishCreated(item);
+    }
+
+    /**
      * 鼠标右键事件
      *
      * @param   event   鼠标事件参数

+ 232 - 0
src/lib/item/SPlanEquipment.ts

@@ -0,0 +1,232 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .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 { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib";
+import { Legend } from "@persagy-web/big-edit";
+import { SBaseIconTextEdit, SBaseTextEdit } from "@persagy-web/edit";
+import { SColor } from '@persagy-web/draw/lib';
+import { svgTobase64, uuid } from "@persagy-web/big-edit/lib/until"
+/**
+ * 编辑基础设备类
+ *
+ * @author 张宇 <taohuzy@163.com>
+ */
+export class SPlanEquipment extends SBaseIconTextEdit {
+    /** 设备图例 */
+    private _legendData: Legend | null = null;
+    set legendData(val) {
+        this._legendData = val;
+        this.initData()
+    } // set legendData()
+    get legendData(): Legend | null {
+        return this._legendData
+    } // get legendData()
+
+    /** 信息点存储 */
+    private _infoPointList: any[] = []
+    set infoPointList(val) {
+        this._infoPointList = val;
+    } // set infoPointList()
+    get infoPointList(): any[] {
+        return this._infoPointList
+    } // get infoPointList()
+
+    /** 图例url */
+    private _url: string = '';
+    set url(val) {
+        this._url = val;
+        this.initUrl()
+    } // set infoPointList()
+    get url(): string {
+        return this._url
+    } // get infoPointList()
+
+    //  设备附加数据
+    anotherMsg: string = ''
+
+    /**
+     * 构造函数
+     *
+     * @param parent    指向父对象
+     * @param data      数据
+     */
+    constructor(parent: SGraphItem | null, data: Legend) {
+        super(parent);
+        this.legendData = data;
+    } // Constructor
+
+    /**
+     * 设置 legendData 时对 item 做设置
+     */
+    initData() {
+        if (!this.legendData) return;
+        if (this.legendData.size) {
+            this.sWidth = this.legendData.size.width;
+            this.sHeight = this.legendData.size.height;
+        }
+
+        this.img.connect("onMove", this, this.changeAnchorPoint.bind(this));
+
+        // 存储信息点
+        if (this.legendData.properties && this.legendData.properties.infoPointList) {
+            const infoPointList = this.legendData.properties.infoPointList;
+            if (infoPointList.length) {
+                this.infoPointList = infoPointList;
+                this.infoPointList.forEach((obj, i) => {
+                    this.setTextItem(obj, i)
+                })
+            } else {
+                this.infoPointList = []
+            }
+        } else {
+            this.infoPointList = []
+        }
+
+        this.showAnchor = false;
+        this.url = this.legendData.style.default.base64Url ? this.legendData.style.default.base64Url : this.legendData.style.default.url
+        this.anotherMsg = this.legendData.properties.anotherMsg ? this.legendData.properties.anotherMsg : '';
+        this.x = this.legendData.pos.x;
+        this.y = this.legendData.pos.y;
+        this.moveable = true;
+        this.selectable = true;
+    }
+
+    initUrl() {
+        svgTobase64(this.url).then((res) => {
+            this.img.url = res ? res : '';
+        }).catch((res) => {
+            this.img.url = res;
+        })
+    }
+
+    /**
+     * 设置信息点
+     *
+     * @params	obj 设置的信息点
+     */
+    setMsgPoint(val: any) {
+        // 根据是否勾选来判断是够增加或删除
+        if (val.checked) {
+            this._infoPointList.push(val);
+            this.setTextItem(val, (this._infoPointList.length - 1))
+        } else {
+            let deleteItemIndex: number = -1;
+            this._infoPointList.forEach((item, index) => {
+                if (val.id == item.id) {
+                    deleteItemIndex = index;
+                }
+            });
+            this._infoPointList.splice(deleteItemIndex, 1);
+            this.setTextItem(val, deleteItemIndex)
+        }
+    }
+
+    /**
+     * 根据选中状态增加 textItem
+     *
+     * @params obj	textItem 文本信息
+     * @params index 文本索引
+     */
+    setTextItem(val: any, index: number): void {
+        if (val.checked) {
+            let item = new SBaseTextEdit(this, null);
+            item.propertyData = val;
+            item.text = val.name;
+            if (val.pos) {
+                item.moveTo(val.pos.x, val.pos.x)
+            } else {
+                item.moveTo(
+                    this.img.width * 0.5,
+                    -(this.font.size * 1.25 * 0.5) + (index) * 10
+                );
+            }
+
+            item.font.size = val.font ? val.font : 12;
+            item.isTransform = false;
+            item.showSelect = false;
+            item.color = val.color ? new SColor(val.color) : new SColor('#000000');
+            item.connect('textSelect', this, this.textSelectChange)
+            this.textItemList.push(item)
+        } else {
+            this.textItemList.splice(index, 1)
+            this.scene?.removeItem(this.textItemList[index]);
+        }
+    }
+
+    /**
+     * 返回对象储存的相关数据
+     *
+     * @return	对象储存的相关数据
+     */
+    toData(): any {
+        if (this.legendData) {
+            const list = this.anchorList.map((item) => {
+                return {
+                    anchorId: item.id,
+                    pos: {
+                        x: item.x,
+                        y: item.y
+                    }
+                }
+            })
+            this.legendData.anchorList = list;
+            // 反馈大小
+            if (this.legendData.size) {
+                this.legendData.size.width = this.sWidth;
+                this.legendData.size.height = this.sHeight
+            } else {
+                this.legendData.size = {
+                    width: this.sWidth,
+                    height: this.sHeight
+                }
+            }
+
+            // 位置
+            this.legendData.pos = {
+                x: this.x,
+                y: this.y
+            };
+            // 存储信息点
+            const infoPoinList: any[] = []
+            this.textItemList.forEach(item => {
+                let obj = Object.assign(item.propertyData, {
+                    pos: { x: item.x, y: item.y },
+                    font: item.font.size,
+                    color: item.color.value
+                })
+                delete obj.currentEquipMsg
+                infoPoinList.push(obj)
+            });
+
+            this.legendData.properties.infoPointList = infoPoinList;
+            this.legendData.properties.anotherMsg = this.anotherMsg;
+            this.legendData.style.default.base64Url = "";
+            this.legendData.style.default.url = this.url;
+            return this.legendData
+        }
+    }
+
+}

+ 2 - 0
src/store/index.ts

@@ -12,6 +12,7 @@ export default new Vuex.Store({
     isPub: 0,     // 用于读图 区分读取 已发布 or 未发布
     projectId: 'Pj1101050029',  // projectId
     categoryId: '',   //类型id 用于读图
+    folderId: '',// 文件夹id
     tupoName: '',  //拓扑图名称
     version: "", //版本号
     equipmentItemList: [], // 图上相关的设备实例
@@ -39,6 +40,7 @@ export default new Vuex.Store({
     // 设置类型id
     SETCATEGROY(state, val) {
       state.categoryId = val.categoryId;
+    //   state.folderId = val.folderId;
       state.tupoName = val.name;  //拓扑图名称
       state.version = val.version; //版本号
     },

+ 4 - 3
src/views/editer.vue

@@ -18,15 +18,16 @@
                 </el-tooltip>
             </div>
         </div>
-        <topo-editer></topo-editer>
+        <plan-editer></plan-editer>
     </div>
 </template>
 <script>
-import topoEditer from "@/components/editview/topoEditer.vue";
+// import topoEditer from "@/components/editview/topoEditer.vue";
+import planEditer from "@/components/editview/planEditer.vue";
 import bus from "@/bus/bus";
 import { mapState } from "vuex";
 export default {
-    components: { topoEditer },
+    components: { planEditer },
     data() {
         return {
             categoryName: "", //项目分类

+ 4 - 4
vue.config.js

@@ -10,17 +10,17 @@ module.exports = {
         open: true,
         proxy: {
             "/labsl": {
-                target: "http://60.205.177.43:8080",
+                target: "http://60.205.177.43:28888",
                 changeOrigin: true,
                 secure: false,
             },
             "/meiku": {
-                target: "http://60.205.177.43:8080",
+                target: "http://60.205.177.43:28888",
                 changeOrigin: true,
                 secure: false,
             },
             "/datacenter": {
-                target: "http://60.205.177.43:8080",
+                target: "http://60.205.177.43:28888",
                 changeOrigin: true,
                 secure: false,
             },
@@ -30,7 +30,7 @@ module.exports = {
                 secure: false,
             },
             "/equip-componnet": {
-                target: "http://60.205.177.43:8080",
+                target: "http://60.205.177.43:28888",
                 changeOrigin: true,
                 secure: false,
             },