Browse Source

保存快照及保存图

haojianlong 4 years ago
parent
commit
96cabfac53
2 changed files with 98 additions and 50 deletions
  1. 1 0
      package.json
  2. 97 50
      src/components/editview/baseTopoEditer.vue

+ 1 - 0
package.json

@@ -19,6 +19,7 @@
     "@persagy-web/big": "2.2.19",
     "@persagy-web/draw": "2.2.8",
     "@persagy-web/graph": "2.2.23",
+    "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",
     "core-js": "^3.6.5",

+ 97 - 50
src/components/editview/baseTopoEditer.vue

@@ -22,6 +22,7 @@ import { PTopoScene, PTopoParser, PTopoView } from "@/components/editClass/persa
 import topoTooltip from "./topoTooltip.vue";
 import { mapState, mapMutations } from "vuex";
 import base64ToFile from "@/utils/base64ToFile"
+import { v1 as uuidv1 } from "uuid";
 import bus from "@/bus/bus";
 import {
   saveGroup,
@@ -112,89 +113,55 @@ export default {
     //初始化bus绑定事件
     initBusEvent() {
       // 改变样式
+      bus.$off('updateStyle');
       bus.$on("updateStyle", (type, val) => {
         this.scene.updateStyle(type, val);
       });
       // 撤销
+      bus.$off('topoUndo');
       bus.$on("topoUndo", (val) => {
         this.scene.undo();
       });
       // 重做
+      bus.$off('topoRedo');
       bus.$on("topoRedo", (val) => {
         this.scene.redo();
       });
       // 删除
+      bus.$off('deleteItem');
       bus.$on("deleteItem", (val) => {
         this.scene.deleteItem();
       });
       // 复制
+      bus.$off('copy');
       bus.$on("copy", (val) => {
         this.scene.copy();
       });
       // 粘贴
+      bus.$off('paste');
       bus.$on("paste", (val) => {
         this.scene.paste();
       });
       // 保存
+      bus.$off('saveTopo');
       bus.$on("saveTopo", (val) => {
-        const elements = this.scene.save();
-        const obj = {
-          elements,
-          name: this.topoContent.name, // 名称
-          categoryId: this.categoryId, // 图分类ID
-          projectId: this.projectId, // 项目ID
-          label: this.topoContent.label,
-          buildingId: "1", // 建筑ID
-          floorId: "1", // 楼层id
-          note: "1", // 图说明
-          log: {
-            // 图操作日志
-            mark: "1", // 图的存盘标记
-            commandList: [
-              {
-                command: "1", // 命令
-                desc: "1", // 描述
-                detail: "1", // 详情
-              },
-            ],
-          },
-        };
-        Object.assign(obj, {
-          graphId: this.graphId,
-          id: this.id,
-        });
-        saveGroup(obj).then((res) => {
-          // 如果是从已发布跳转过来
-          if (this.isPub == 1) {
-            // 设置发布状态为 未发布
-            this.SETISPUB(0);
-            const gid = res.entityList[0].graphId;
-            const id = res.entityList[0].id;
-            // 重设图id 与 id
-            this.SETPROJECT({ graphId: gid, id: id });
-            // 修改url参数
-            this.$router.push({
-              name: "Editer",
-              query: {
-                graphId: gid,
-                id: id,
-                categoryName: encodeURI(this.categoryName),
-                isPub: 0,
-              },
-            });
-          }
-          this.$message.success(`保存成功${res.entityList[0].version}`);
-        });
+        const uuid = uuidv1();
+        Promise.all([this.generateSnap(uuid), this.saveDraft(uuid)]).then(vals => {
+          this.$message.success(`保存成功${vals[1].version}`);
+        })
       });
       // 设置实例置顶置底
+      bus.$off('setOrder');
       bus.$on("setOrder", (val) => {
         this.scene.setOrder(val);
       });
       // 设置实例status状态
+      bus.$off('setItemStatus');
       bus.$on("setItemStatus", (val) => {
         this.scene.setItemStatus();
       });
       // 下载图片
+      bus.$off('saveTopoImg');
       bus.$on("saveTopoImg", () => {
         this.view.saveImage(`${this.topoContent.name}.png`, 'png')
       })
@@ -237,8 +204,88 @@ export default {
       this.view.fitSceneToView()
     },
     // 生成快照
-    generateSnap() {
-
+    generateSnap(uuid) {
+      // base64数据
+      const data = this.view.imageUrl('png');
+      // 根据base64生成file
+      const file = base64ToFile(data);
+      const reader = new FileReader();
+      const fileType = file.name.split(".");
+      const imgType = fileType[fileType.length - 1];
+      return new Promise((resolve, reject) => {
+        reader.onloadend = function () {
+          // 这个事件在读取结束后,无论成功或者失败都会触发
+          if (reader.error) {
+            console.log('reader error', reader.error);
+            reject(reader.error)
+          } else {
+            // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
+            const xhr = new XMLHttpRequest();
+            xhr.open("POST", `/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=${uuid}.${imgType}`);
+            xhr.send(reader.result);
+            xhr.onreadystatechange = function () {
+              if (xhr.readyState == 4) {
+                if (xhr.status == 200) {
+                  resolve(xhr)
+                }
+              }
+            };
+          }
+        };
+        reader.readAsArrayBuffer(file);
+      })
+    },
+    // 保存草稿
+    saveDraft(uuid) {
+      const elements = this.scene.save();
+      const obj = {
+        elements,
+        name: this.topoContent.name, // 名称
+        categoryId: this.categoryId, // 图分类ID
+        projectId: this.projectId, // 项目ID
+        label: this.topoContent.label,
+        buildingId: "1", // 建筑ID
+        floorId: "1", // 楼层id
+        note: "1", // 图说明
+        pic: `${uuid}.png`,
+        graphId: this.graphId,
+        id: this.id,
+        log: {
+          // 图操作日志
+          mark: "1", // 图的存盘标记
+          commandList: [
+            {
+              command: "1", // 命令
+              desc: "1", // 描述
+              detail: "1", // 详情
+            },
+          ],
+        },
+      };
+      return new Promise((resolve, reject) => {
+        saveGroup(obj).then((res) => {
+          // 如果是从已发布跳转过来
+          if (this.isPub == 1) {
+            // 设置发布状态为 未发布
+            this.SETISPUB(0);
+            const gid = res.entityList[0].graphId;
+            const id = res.entityList[0].id;
+            // 重设图id 与 id
+            this.SETPROJECT({ graphId: gid, id: id });
+            // 修改url参数
+            this.$router.push({
+              name: "Editer",
+              query: {
+                graphId: gid,
+                id: id,
+                categoryName: encodeURI(this.categoryName),
+                isPub: 0,
+              },
+            });
+          }
+          resolve(res.entityList[0])
+        });
+      })
     },
   },
   watch: {