Forráskód Böngészése

'vuex添加设备数据'

zhangyu 4 éve
szülő
commit
517b6b8b8d

+ 35 - 16
src/components/editview/basePlanEditer.vue

@@ -69,7 +69,19 @@ export default {
         };
     },
     computed: {
-        ...mapState(["editCmd", "legendObj", "graphId", "id", "state", "projectId", "floorMap", "equipItemList", "buildingId", "floorId", "objExtInfo"]),
+        ...mapState([
+            "editCmd",
+            "legendObj",
+            "graphId",
+            "id",
+            "state",
+            "projectId",
+            "floorMap",
+            "equipItemMap",
+            "buildingId",
+            "floorId",
+            "objExtInfo",
+        ]),
     },
     mounted() {
         // 获取 canvas 的宽高
@@ -377,6 +389,11 @@ export default {
                 // 拼接设备默认样式
                 res.content.style.defaultEquipStyle = this.defaultEquipStyle;
                 this.INITSTYLE(res.content.style);
+            } else {
+                const style = {
+                    defaultEquipStyle: this.defaultEquipStyle
+                }
+                this.INITSTYLE(style);
             }
 
             // parse.nodes.forEach((item) => {
@@ -430,9 +447,9 @@ export default {
                 res.content.ruleList.forEach(async (rule) => {
                     if (rule.commond && rule.commond === "query") {
                         if (rule.returnType && rule.returnType === "equip") {
-                            const params = {...rule.params, buildingId: this.buildingId, floorId: this.floorId}
+                            const params = { ...rule.params, buildingId: this.buildingId, floorId: this.floorId };
                             const res = await equipQuery(params);
-                            this.mergeEquipData(res.content);
+                            if (res.result === "success") this.mergeEquipData(res.content);
                         } else if (rule.returnType && rule.returnType === "zone") {
                             setTimeout(() => {
                                 console.error("请求空间数据");
@@ -454,33 +471,35 @@ export default {
         // 解析设备数据
         mergeEquipData(equipList) {
             equipList.forEach((equip) => {
-                if (!this.equipItemList[equip.id]) {
+                if (!this.equipItemMap[equip.id]) {
                     if (this.objExtInfo[equip.id]) {
-                        equip = {...this.objExtInfo[equip.id], ...equip}
+                        equip = { ...this.objExtInfo[equip.id], ...equip };
                     }
-                    if (!equip.pos) { //如果未维护设备在图中的坐标
+                    if (!equip.pos) {
+                        //如果未维护设备在图中的坐标
                         if (equip.locationJson) {
                             // 判断设备是否维护BIM坐标
-                            equip.pos = equip.locationJson;
+                            const { x, y, z } = equip.locationJson;
+                            equip.pos = { x, y: -y, z };
                         } else {
                             // 否则显示默认坐标位置
                             equip.pos = { x: 0, y: 0, z: 0 };
                         }
-                    } 
+                    }
                     const equipItem = new SPlanEquipment(null, equip);
                     equipItem.selectable = true;
                     equipItem.moveable = true;
                     equipItem.connect("finishCreated", this.scene, this.scene.finishCreated);
                     equipItem.connect("onContextMenu", this, this.scene.getItem);
-                    if (this.style[equip.id]) {
-                        Object.assign(equipItem, this.style[equip.id]);
-                    } else if (this.style[equip.classCode]) {
-                        Object.assign(equipItem, this.style[equip.calssCode]);
-                    } else {
-                        Object.assign(equipItem, this.style["defaultEquipStyle"]);
-                    }
+                    // if (this.style[equip.id]) {
+                    //     Object.assign(equipItem, this.style[equip.id]);
+                    // } else if (this.style[equip.classCode]) {
+                    //     Object.assign(equipItem, this.style[equip.calssCode]);
+                    // } else {
+                    //     Object.assign(equipItem, this.style["defaultEquipStyle"]);
+                    // }
                     this.scene.addItem(equipItem);
-                    this.equipItemList[equip.id] = equipItem;
+                    this.ADDEQUIP(equipItem);
                 }
             });
         },

+ 1 - 101
src/lib/SPlanDecorator.ts

@@ -37,106 +37,6 @@ export class SPlanDecorator {
      * @param data    业务空间数据
      */
     parseData(data: ElementData): void {
-        // 生成遍历基本图例
-        if (data.markers && data.markers.length) {
-            data.markers.forEach((item) => {
-                this.addMarker(item);
-            });
-        }
-
-        // 生成遍历Node图例
-        if (data.nodes && data.nodes.length) {
-            data.nodes.forEach((item: any) => {
-                this.addNode(item);
-            });
-        }
-
-        // 生成遍历关系图例
-        if (data.relations && data.relations.length) {
-            data.relations.forEach((item: any) => {
-                this.addRelation(item);
-            });
-        }
-    }
-
-    /**
-     * 添加生成 mark 实例
-     *
-     * @param data Marker   图例类型数据
-     */
-    addMarker(data: Marker) {
-        if (data.properties && data.properties.type) {
-            switch (data.properties.type) {
-                case "BaseLine":
-                    this.markers.push(this.factory.createBaseLineEdit(data));
-                    break;
-                case "BaseText":
-                    this.markers.push(this.factory.createBaseTextEdit(data));
-                    break;
-                case "BaseImage":
-                    this.markers.push(this.factory.createBaseImageEdit(data));
-                    break;
-                case "BaseExplain":
-                    this.markers.push(this.factory.createBaseExpainEdit(data));
-                    break;
-                case "BaseCircle":
-                    this.markers.push(this.factory.createBaseCircleEdit(data));
-                    break;
-                case "BaseArrow":
-                    this.markers.push(this.factory.createBaseArrow(data));
-                    break;
-                case "BaseRect":
-                    this.markers.push(this.factory.createBaseRectEdit(data));
-                    break;
-                case "BasePolygon":
-                    this.markers.push(this.factory.createBasePolygonEdit(data));
-                    break;
-                case "BaseArrowPolygon":
-                    this.markers.push(this.factory.createBasePolygonArrowEdit(data));
-            }
-        }
-    }
-
-    /**
-     * 添加生成 Node 实例
-     *
-     * @param data Legend   图例类型数据
-     */
-    addNode(data: Legend) {
-        let node = null;
-        if (data.properties && data.properties.type) {
-            switch (data.properties.type) {
-                case "BaseEquipment":
-                    node = this.factory.createBaseEquipment(data);
-                    break;
-            }
-        }
-        if (node) {
-            this.nodes.push(node);
-        }
-
-        return node;
-    }
-
-    /**
-     * 添加生成 Relation 实例
-     *
-     * @param data Relation   图例类型数据
-     */
-    addRelation(data: Relation) {
-        let relation = null;
-        if (data.properties && data.properties.type) {
-            switch (data.properties.type) {
-                case "BasePipe":
-                    relation = this.factory.createBasePipe(data);
-                    break;
-            }
-        }
-
-        if (relation) {
-            this.relations.push(relation);
-        }
-
-        return relation;
+        
     }
 }

+ 24 - 24
src/lib/item/SPlanEquipment.ts

@@ -27,7 +27,7 @@
 import { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib";
 import { Legend } from "@persagy-web/big-edit";
 import { SBaseIconTextEdit, SBaseTextEdit } from "@persagy-web/edit";
-import { svgTobase64, uuid } from "@persagy-web/big-edit/lib/until"
+import { svgTobase64, uuid } from "@persagy-web/big-edit/lib/until";
 /**
  * 编辑基础设备类
  *
@@ -38,35 +38,35 @@ export class SPlanEquipment extends SBaseIconTextEdit {
     private _legendData: Legend | null = null;
     set legendData(val) {
         this._legendData = val;
-        this.initData()
+        this.initData();
     } // set legendData()
     get legendData(): Legend | null {
-        return this._legendData
+        return this._legendData;
     } // get legendData()
 
     /** 图例url */
-    private _url: string = '';
+    private _url: string = "";
     set url(val) {
         this._url = val;
-        this.initUrl()
+        this.initUrl();
     } // set url()
     get url(): string {
-        return this._url
+        return this._url;
     } // get url()
 
     /** 公式 */
-    private _formula: string = '';
+    private _formula: string = "";
     set formula(val) {
         this._formula = val;
         this.textItemList[0].text = val;
         this.update();
     } // set formula()
     get formula(): string {
-        return this._formula
+        return this._formula;
     } // get formula()
 
     //  设备附加数据
-    anotherMsg: string = ''
+    anotherMsg: string = "";
 
     /**
      * 构造函数
@@ -80,7 +80,7 @@ export class SPlanEquipment extends SBaseIconTextEdit {
         textItem.text = "";
         textItem.font.size = 12;
         // 偏移二分之一文本高度
-        textItem.moveTo((this.img.width * 0.5), -(this.font.size * 1.25 * 0.5));
+        textItem.moveTo(this.img.width * 0.5, -(this.font.size * 1.25 * 0.5));
         this.textItemList.push(textItem);
         this.legendData = data;
     } // Constructor
@@ -97,7 +97,7 @@ export class SPlanEquipment extends SBaseIconTextEdit {
 
         this.img.connect("onMove", this, this.changeAnchorPoint.bind(this));
         if (this.legendData.anchorList && this.legendData.anchorList.length) {
-            this.anchorList = this.legendData.anchorList.map(t => {
+            this.anchorList = this.legendData.anchorList.map((t) => {
                 let item = new SAnchorItem(this);
                 if (t.anchorId) {
                     item.id = t.anchorId;
@@ -106,10 +106,8 @@ export class SPlanEquipment extends SBaseIconTextEdit {
                 return item;
             });
         } else {
-            const anchorPoint = [
-                { x: this.img.x, y: this.img.y, anchorId: uuid() },
-            ];
-            this.anchorList = anchorPoint.map(t => {
+            const anchorPoint = [{ x: this.img.x, y: this.img.y, anchorId: uuid() }];
+            this.anchorList = anchorPoint.map((t) => {
                 let item = new SAnchorItem(this);
                 if (t.anchorId) {
                     item.id = t.anchorId;
@@ -119,8 +117,9 @@ export class SPlanEquipment extends SBaseIconTextEdit {
             });
         }
 
+        this.id = this.legendData.id ? this.legendData.id : "";
         this.showAnchor = false;
-        this.anotherMsg = this.legendData.properties?.anotherMsg ? this.legendData.properties.anotherMsg : '';
+        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;
@@ -128,11 +127,13 @@ export class SPlanEquipment extends SBaseIconTextEdit {
     }
 
     initUrl() {
-        svgTobase64(this.url).then((res) => {
-            this.img.url = res ? res : '';
-        }).catch((res) => {
-            this.img.url = res;
-        })
+        svgTobase64(this.url)
+            .then((res) => {
+                this.img.url = res ? res : "";
+            })
+            .catch((res) => {
+                this.img.url = res;
+            });
     }
 
     /**
@@ -145,11 +146,10 @@ export class SPlanEquipment extends SBaseIconTextEdit {
             // 位置
             this.legendData.pos = {
                 x: this.x,
-                y: this.y
+                y: this.y,
             };
             this.legendData.properties.anotherMsg = this.anotherMsg;
-            return this.legendData
+            return this.legendData;
         }
     }
-
 }

+ 9 - 8
src/store/index.ts

@@ -25,9 +25,10 @@ export default new Vuex.Store({
         categoryId: "", //类型id 用于读图
         equipmentItemList: [], // 图上相关的设备实例
         equipmentItemNum: 0, // 图上相关的设备实例的数量
-        equipItemList: {}, // 图上相关的设备实例
+
+        equipItemMap: {}, // 图上相关的设备实例
         equipItemNum: 0, // 图上相关的设备的数量
-        zoneItemList: {}, // 图上相关的空间实例
+        zoneIteMap: {}, // 图上相关的空间实例
         zoneItemNum: 0, // 图上相关的空间实例的数量
         style: {}, // 样式库信息
         objExtInfo: {}, // 设备位置信息
@@ -101,22 +102,22 @@ export default new Vuex.Store({
         // 增加设备实例item
         ADDEQUIP(state, item): void {
             // @ts-ignore
-            if (!state.equipItemList[item.id]) {
+            if (!state.equipItemMap[item.id]) {
                 // @ts-ignore
-                state.equipItemList[item.id] = item;
-                state.equipItemNum = Object.keys(state.equipItemList).length;
+                state.equipItemMap[item.id] = item;
+                state.equipItemNum = Object.keys(state.equipItemMap).length;
             }
         },
         DELETEQUIP(state): void {
             // 如果设备实例数组中parent 为null 则删除该数组
-            let arr1 = Object.keys(state.equipItemList);
+            let arr1 = Object.keys(state.equipItemMap);
             if (!arr1.length) return;
 
             arr1.forEach((key) => {
                 // @ts-ignore
-                if (!state.equipItemList[key].parent) {
+                if (!state.equipItemMap[key].parent) {
                     // @ts-ignore
-                    delete state.equipItemList[key];
+                    delete state.equipItemMap[key];
                 }
             });
         },