Browse Source

新增放大缩小

YaolongHan 4 years ago
parent
commit
d77be1f456

+ 4 - 0
jest.config.js

@@ -0,0 +1,4 @@
+module.exports = {
+  preset: 'ts-jest',
+  testEnvironment: 'node',
+};

+ 3 - 3
public/systemConf.js

@@ -14,9 +14,9 @@ var __systemConf = {
     // 联通方式
     // 弯头
     uninType: {
-        wantou: '1611626822439.png',
-        santong: '1611626859989.png',
-        sitong: '1611626884273.png'
+        wantou: 'tognyong2020102700.svg',
+        santong: '1612509481124.svg',
+        sitong: '1612509615382.svg'
     }
 }
 window.__systemConf = __systemConf

+ 0 - 1
src/App.vue

@@ -24,7 +24,6 @@ html {
   padding: 0;
   width: 100%;
   height: 100%;
-  // cursor: url('./assets/images/leftImgs/pen.png'),auto;
 }
 #app {
   width: 100%;

+ 6 - 2
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -113,7 +113,7 @@ export class PTopoScene extends SBaseEditScene {
                 this.setTipeEndanchor(event)
                 return true;
             }
-            console.log('this.grabItemxxxxxxxxxx',this.grabItem)
+            console.log('this.grabItemxxxxxxxxxx', this.grabItem)
             return this.grabItem.onMouseDown(event);
         }
         if (this.editCmd == "EditBaseLine") {
@@ -213,13 +213,14 @@ export class PTopoScene extends SBaseEditScene {
                 default: {
                     strokecolor: "#c0ccda",
                     url: this.uninType[cmd],
-                    zorder:ItemOrder.markOrder
+                    zorder: ItemOrder.markOrder
                 }
             }
         };
 
         const item = new SBasePipeUninTool(null, data);
         item.url = this.imgServeUrl + this.uninType[cmd];
+        console.log('vvv', item.url)
         item.selectable = true;
         item.moveable = true;
         this.addItem(item);
@@ -333,6 +334,9 @@ export class PTopoScene extends SBaseEditScene {
         if (styletype == "strokeColor" || styletype == "backgroundColor" || styletype == "fillColor") {
             const colorlist = rgbaNum(changestyle)
             styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
+        } else if (styletype == "filterColor") {
+            const color: any = rgbaNum(changestyle)
+            styleValue = `'${color[0]} 0 0 0 0    0 ${color[1]} 0 0  0     0 0 ${color[2]} 0 0    0 0 0 ${color[3]} 0'`
         } else if (styletype == "lineStyle") {
             styleValue = SLineStyle[changestyle]
         } else if (styletype == "begin" || styletype == "end") {

+ 17 - 0
src/components/editClass/persagy-edit/PTopoView.ts

@@ -55,4 +55,21 @@ export class PTopoView extends SGraphView {
 		painter.pen.color = this.backgroundColor;
 		painter.drawRect(0, 0, this.width, this.height);
 	} // Function drawBackground()
+
+	/**
+	 * 鼠标滚动
+	 *
+	 * @param event  鼠标滚轮事件
+	 */
+
+	onMouseWheel(event: WheelEvent): void {
+		super.onMouseWheel(event)
+        this.vueOnMouseWheel(event)
+	}
+    /**
+	 * 在 vue 内鼠标滚动
+	 */
+	vueOnMouseWheel(e:any){
+
+	}
 }

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

@@ -28,6 +28,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 { svgTobase64 } from "@persagy-web/big-edit/lib/until"
+
 
 /**
  * 编辑基础管道接头类
@@ -35,9 +37,9 @@ import { SMouseEvent } from "@persagy-web/base/lib";
  * @author 韩耀龙 <han_yao_long@163.com>
  */
 export class SBasePipeUninTool extends SBaseImageEdit {
+
     ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
-
     /**
      * 构造函数
      *

+ 34 - 18
src/components/editview/baseTopoEditer.vue

@@ -15,6 +15,7 @@
       :height="canvasHeight"
       tabindex="0"
     ></canvas>
+    <zoom @sacle="changeSize" :scale="viewScale" class="zoom"></zoom>
   </div>
 </template>
 <script>
@@ -25,6 +26,7 @@ import {
 } from "@/components/editClass/persagy-edit";
 import { SBaseEquipment } from "@/components/editClass/big-edit";
 import topoTooltip from "./topoTooltip.vue";
+import zoom from "./zoom";
 import { mapState, mapMutations } from "vuex";
 import base64ToFile from "@/utils/base64ToFile";
 import { v1 as uuidv1 } from "uuid";
@@ -50,7 +52,7 @@ const default_Eq = window.__systemConf.default_Eq;
 // 联通方式图标
 const uninType = window.__systemConf.uninType;
 export default {
-  components: { topoTooltip },
+  components: { topoTooltip, zoom },
   data() {
     return {
       scene: null, //场景
@@ -62,6 +64,7 @@ export default {
       topoContent: {}, // 读图后存储图所有数据
       autoSave: null, // 自动保存定时器
       isLock: false, //右键item是否锁定
+      viewScale: 0, //视图缩放比例
     };
   },
   computed: {
@@ -84,7 +87,9 @@ export default {
     this.scene.uninType = uninType; //联通方式
     this.view = new PTopoView("persagy_topo");
     this.view.scene = this.scene;
+    this.view.vueOnMouseWheel = this.vueOnMouseWheel;
     this.scene.clearCmdStatus = this.clearCmdStatus;
+    this.viewScale = this.view.scale;
     // 初始化bus绑定事件
     this.initBusEvent();
     // 右键事件
@@ -520,23 +525,28 @@ export default {
         }
       });
     },
-    // //改变图标样式
-    // changeCursor(val) {
-    //   if (val) {
-    //     switch (val) {
-    //       case "EditBaseLine":
-    //         this.view.originCursor = "cursor: url('./../../assets/images/leftImgs/pen.png'),auto";
-    //         break;
-    //       case "EditBasetext":
-    //         this.view.originCursor = "text";
-    //         break;
-    //       default:
-    //         this.view.originCursor = "";
-    //     }
-    //   } else {
-    //     this.view.originCursor = "";
-    //   }
-    // },
+    // 图片缩小
+    changeSize(isbiger) {
+      if (isbiger) {
+        this.view.scaleByPoint(
+          (this.view.scale * 1.1) / this.view.scale,
+          this.canvasWidth / 2,
+          this.canvasHeight / 2
+        );
+        this.viewScale = this.view.scale;
+      } else {
+        this.view.scaleByPoint(
+          (this.view.scale * 0.9) / this.view.scale,
+          this.canvasWidth / 2,
+          this.canvasHeight / 2
+        );
+        this.viewScale = this.view.scale;
+      }
+    },
+    // 滚轮滚动
+    vueOnMouseWheel(e) {
+      this.viewScale = this.view.scale;
+    },
   },
   watch: {
     editCmd(val) {
@@ -577,5 +587,11 @@ export default {
     left: 0;
     top: 20px;
   }
+  .zoom {
+    font-size: 14px;
+    position: absolute;
+    right: 24px;
+    bottom: 22px;
+  }
 }
 </style>

+ 31 - 14
src/components/editview/rightPropertyBar/BaseImagePro.vue

@@ -9,7 +9,7 @@
           <div>
             <span>W</span>
             <el-input
-              style="width:74px;margin-left:6px"
+              style="width: 74px; margin-left: 6px"
               size="mini"
               v-model="width"
               @input="changeWidth"
@@ -19,7 +19,7 @@
           <div>
             <span>H</span>
             <el-input
-              style="width:74px;margin-left:6px"
+              style="width: 74px; margin-left: 6px"
               size="mini"
               v-model="height"
               @input="changeHeight"
@@ -41,13 +41,18 @@
         <div class="property">
           <div class="color-box">
             <div class="cololorSelect">
-              <el-color-picker show-alpha @change="changeColor" class="fix-box-1" v-model="color"></el-color-picker>
+              <el-color-picker
+                show-alpha
+                @change="changeColor"
+                class="fix-box-1"
+                v-model="color"
+              ></el-color-picker>
             </div>
             <span>颜色</span>
           </div>
           <div class="line-width">
             <el-input-number
-              style="width:80px"
+              style="width: 80px"
               v-model="linewidth"
               controls-position="right"
               @change="changeLineWidth"
@@ -78,6 +83,20 @@
           </div>
         </div>
       </li>
+      <li v-show="isSvg">
+        <div class="small-title">滤镜(只针对svg)</div>
+        <div class="color-box">
+          <div class="cololorSelect">
+            <el-color-picker
+              show-alpha
+              @change="changeFilterColor"
+              class="fix-box-1"
+              v-model="filterColor"
+            ></el-color-picker>
+          </div>
+          <span>颜色</span>
+        </div>
+      </li>
     </ul>
   </div>
 </template>
@@ -91,7 +110,7 @@ const imgBaseUrl = window.__systemConf.imgServeUri;
 const imgServeUpload = window.__systemConf.imgServeUpload;
 import { uploadGroup, getImageGroup } from "@/api/editer";
 export default {
-  props: ["strokeColor", "lineStyle", "lineWidth", "Width", "Height"],
+  props: ["strokeColor", "lineStyle", "lineWidth", "Width", "Height", "isSvg"],
   data() {
     return {
       width: 0,
@@ -114,6 +133,7 @@ export default {
       ],
       linestyle: "solid",
       url: "",
+      filterColor: "",
     };
   },
   methods: {
@@ -168,21 +188,14 @@ export default {
               /* method */
               "POST",
               /* target url */
-                imgServeUpload +
-                uploadKey +
-                "." +
-                imgType
+              imgServeUpload + uploadKey + "." + imgType
             );
             xhr.send(reader.result);
             xhr.onreadystatechange = function () {
               if (xhr.readyState == 4) {
                 if (xhr.status == 200) {
                   that.url = uploadKey + "." + imgType;
-                  bus.$emit(
-                    "updateStyle",
-                    "url",
-                     uploadKey + "." + imgType
-                  );
+                  bus.$emit("updateStyle", "url", uploadKey + "." + imgType);
                 }
               }
             };
@@ -220,6 +233,10 @@ export default {
         (second > 10 ? second : "0" + second)
       );
     },
+    // 改变图片滤镜颜色
+    changeFilterColor(val) {
+      bus.$emit("updateStyle", "filterColor", val);
+    },
   },
 
   watch: {

+ 8 - 0
src/components/editview/rightPropertyBar/property.vue

@@ -46,6 +46,7 @@
       :Url="Url"
       :Width="Width"
       :Height="Height"
+      :isSvg="isSvg"
       v-show="itemType == 'BaseImage' || itemType == 'BasePipeUninTool'"
     ></BaseImagePro>
     <BaseEquipment
@@ -135,6 +136,7 @@ export default {
       EquipMsgData: {}, //设备信息点详情数据
       EquipMsgItem: null, //设备信息点实例
       AnotherMsg: "", // 附加信息 (只用与设备图例)
+      isSvg:false,   // 是否为svg图
     };
   },
   mounted() {
@@ -171,6 +173,7 @@ export default {
     linkStyle(itemList) {
       const item = itemList[0];
       this.EquipMsgItem = null;
+      this.isSvg = false;
       if (this.itemType == "BaseArrow") {
         this.strokeColor = item.strokeColor.toRgba();
         this.lineStyle = lineStyle[item.lineStyle];
@@ -195,6 +198,11 @@ export default {
         this.lineStyle = lineStyle[item.lineStyle];
         this.lineWidth = item.lineWidth;
         this.strokeColor = item.strokeColor.toRgba();
+           console.log('itemitem',item.data.style.default.url)
+        if(item.data.style.default.url && item.data.style.default.url.includes('.svg')){
+          console.log('itemitem',item)
+          this.isSvg = true;
+        }
       } else if (
         this.itemType == "BaseRect" ||
         this.itemType == "BaseTriangle" ||

+ 0 - 18
src/components/editview/svgIcon.vue

@@ -1,18 +0,0 @@
-<template>
-  <svg class="xxx">
-    <use xlink:href="@/assets/images/equip/lengganji.svg#notification"></use>
-  </svg>
-</template>
-<script>
-export default {
-  data() {
-    return {};
-  },
-};
-</script>
-<style lang="less" scoped>
-.xxx {
-  width: 50px;
-  height: 50px;
-}
-</style>

+ 30 - 0
src/components/editview/zoom.vue

@@ -0,0 +1,30 @@
+<!-- 放大缩小 -->
+<template>
+  <div id="zoom">
+    <i @click="sacle(1)" class="el-icon-zoom-in btn"></i>
+    <span>{{Math.floor(scale * 100)}}%</span>
+    <i @click="sacle(0)" class="el-icon-zoom-out btn"></i>
+  </div>
+</template>
+<script>
+export default {
+  props: ["scale"],
+  data() {
+    return {};
+  },
+  methods: {
+    sacle(data) {
+      this.$emit("sacle", data);
+    },
+  },
+};
+</script>
+<style lang="less">
+#zoom {
+  color: #646a73;
+  .btn {
+    cursor: pointer;
+    font: 18px;
+  }
+}
+</style>

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

@@ -49,7 +49,7 @@ export default {
       rules: {
         name: [
           { required: true, message: "请输入名称", trigger: "blur" },
-          { max: 20, message: "最长为20个字", trigger: "blur" },
+          { max: 20, message: "最长为20个字", trigger: "blur" },
         ],
         type: [
           { required: true, message: "请选择所属类别", trigger: "change" },

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

@@ -40,7 +40,7 @@ export default {
         return
       }
       if(newName.length>20){
-         this.$message.error('最长为20个字');
+         this.$message.error('最长为20个字');
          return
       }
       const pa = {