瀏覽代碼

tootip完成

YaolongHan 4 年之前
父節點
當前提交
8e84623d87

+ 2 - 2
src/components/editClass/big-edit/SBaseEditScene.ts

@@ -118,7 +118,7 @@ export class SBaseEditScene extends SGraphEditScene {
      * @param   event   鼠标事件参数
      */
     onMouseDown(event: SMouseEvent): any {
-        if (!super.onMouseDown(event)) {
+        if (!super.onMouseDown(event) && 1 == event.buttons) {
             this.addRectSelect(event);
         }
     }
@@ -187,7 +187,7 @@ export class SBaseEditScene extends SGraphEditScene {
                     t.Pos.Y += 10
             }
             t.moveable = true;
-            console.log('t',t)
+            console.log('t', t)
             this.addItem(t)
         });
         this.view ? this.view.update() : ''

+ 1 - 1
src/components/editClass/edit/SGraphEdit.ts

@@ -73,7 +73,7 @@ export class SGraphEdit extends SGraphItem {
 
     }
     onContextMenu(event: SMouseEvent): boolean {
-
+        this.$emit('onContextMenu',event)
         return true
     }
 }

+ 4 - 1
src/components/editClass/edit/SObjectItemEdit.ts

@@ -33,7 +33,7 @@ import { SGraphItem } from "@persagy-web/graph/";
  *
  * @author  郝建龙(1061851420@qq.com)
  */
-export abstract class SObjectItemEdit extends SGraphItem {
+export class SObjectItemEdit extends SGraphItem {
     /** 锚点list  */
     anchorList: SAnchorItem[] = [];
     /** 宽度  */
@@ -82,4 +82,7 @@ export abstract class SObjectItemEdit extends SGraphItem {
      * @param   newSize 改之后大小
      * */
     protected onResize(oldSize: SSize, newSize: SSize) { } // Function onResize()
+    constructor(parent: SGraphItem | null,) {
+        super(parent);
+    }
 } // Class SObjectItem

+ 250 - 5
src/components/editClass/edit/items/SImageEdit.ts

@@ -26,17 +26,136 @@
 
 import { SPainter, SRect, SSize, SColor, SPoint } from "@persagy-web/draw";
 import { SImageShowType, STextOrigin } from "@persagy-web/graph";
-import { SGraphItem, SImageItem } from "@persagy-web/graph";
+import { SGraphItem, SAnchorItem } from "@persagy-web/graph";
 import { SItemStatus } from "@persagy-web/big";
+import { SGraphEdit } from "./../"
 
 /**
  * 图片编辑类
  *
  * @author  韩耀龙(han_yao_long@163.com)
  */
-export class SImageEdit extends SImageItem {
+export class SImageEdit extends SGraphEdit {
     //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
+    /** 图片dom */
+    img: CanvasImageSource | undefined;
+    /** 展示模式 */
+    private _showType: SImageShowType = SImageShowType.Full;
+    get showType(): SImageShowType {
+        return this._showType;
+    }
+    set showType(v: SImageShowType) {
+        this._showType = v;
+        this.computeImgSize();
+        this.update();
+    }
+    /** 边框色 */
+    private _strokeColor: SColor = SColor.Transparent;
+    get strokeColor(): SColor {
+        return this._strokeColor;
+    }
+    set strokeColor(v: SColor) {
+        this._strokeColor = v;
+        this.update();
+    }
+
+    /** 边框宽度 */
+    private _lineWidth: number = 1;
+    get lineWidth(): number {
+        return this._lineWidth;
+    }
+    set lineWidth(v: number) {
+        this._lineWidth = v;
+        this.update();
+    }
+    /** 原点位置    */
+    private _originPosition: STextOrigin = STextOrigin.LeftTop;
+    get originPosition(): STextOrigin {
+        return this._originPosition;
+    }
+    set originPosition(v: STextOrigin) {
+        this._originPosition = v;
+        this.update();
+    }
+    /** 图片加载是否完成 */
+    isLoadOver: boolean = false;
+
+    /** 图片的宽度 */
+    private imgWidth: number = this.width;
+
+    /** 图片的高度 */
+    private imgHeight: number = this.height;
+
+    /** 图片地址 */
+    private _url: string = "";
+    get url(): string {
+        return this._url;
+    }
+    set url(v: string) {
+        this._url = v;
+        this.img = new Image();
+        this.img.onload = (e): void => {
+            // @ts-ignore
+            const imgSrc = e.path[0].src;
+            if (this.isUrlIdentical(imgSrc)) {
+                this.isLoadOver = true;
+                this.computeImgSize();
+                this.$emit("imgLoadOver");
+                this.update();
+            }
+        };
+        this.img.onerror = (e): void => {
+            // @ts-ignore
+            const imgSrc = e.path[0].src;
+            if (this.isUrlIdentical(imgSrc)) {
+                this.isLoadOver = false;
+                this.$emit("imgLoadOver");
+                this.update();
+                console.log("加载图片错误!", e);
+            }
+        };
+        this.img.src = v;
+    }
+    /** 锚点list  */
+    anchorList: SAnchorItem[] = [];
+    /** 宽度  */
+    private _width: number = 64;
+    /** 原点  */
+    origin = new SPoint();
+    get width(): number {
+        return this._width;
+    }
+    set width(v: number) {
+        if (v > 0) {
+            if (v != this._width) {
+                let w = this._width;
+                this._width = v;
+                this.onResize(
+                    new SSize(w, this._height),
+                    new SSize(this._width, this._height)
+                );
+            }
+        }
+    }
+
+    /** 高度  */
+    private _height: number = 64;
+    get height(): number {
+        return this._height;
+    }
+    set height(v: number) {
+        if (v > 0) {
+            if (v != this._height) {
+                let h = this._height;
+                this._height = v;
+                this.onResize(
+                    new SSize(this._width, h),
+                    new SSize(this._width, this._height)
+                );
+            }
+        }
+    }
     /**编辑状态 */
     protected _status: SItemStatus = SItemStatus.Normal;
     get status(): SItemStatus {
@@ -58,9 +177,9 @@ export class SImageEdit extends SImageItem {
      *
      * @param   parent      指向父对象
      */
-    constructor(parent: SGraphItem | null, url: string) {
+    constructor(parent: SGraphItem | null, url?: string) {
         super(parent);
-        this.url = url;
+        if (url) this.url = url;
         // this.initItem();
         this.origin = new SPoint(this.width / 2, this.height / 2);
     }
@@ -78,8 +197,134 @@ export class SImageEdit extends SImageItem {
      * 根据显示模式计算图片的宽高
      */
     computeImgSize(): void {
-        super.computeImgSize();
+        if (this.isLoadOver) {
+            // 要绘制图片的宽度
+            let width = 0;
+            // 要绘制图片的宽度
+            let height = 0;
+            // 图片item的宽高比
+            let itemAspectRatio: number = this.width / this.height;
+            // 原始图片的宽高比
+            let imgAspectRatio: number =
+                // @ts-ignore
+                (this.img.width as number) / (this.img.height as number);
+            // 原始图片的高宽比
+            let imgHwRatio: number =
+                // @ts-ignore
+                (this.img.height as number) / (this.img.width as number);
+            if (this.showType == SImageShowType.Full) {
+                width = this.width;
+                height = this.height;
+            } else if (this.showType == SImageShowType.Equivalency) {
+                if (itemAspectRatio > imgAspectRatio) {
+                    height = this.height;
+                    width = imgAspectRatio * height;
+                } else if (itemAspectRatio < imgAspectRatio) {
+                    width = this.width;
+                    height = width * imgHwRatio;
+                } else {
+                    width = this.width;
+                    height = this.height;
+                }
+            } else if (this.showType == SImageShowType.AutoFit) {
+                // @ts-ignore
+                this.width = this.img.width as number;
+                // @ts-ignore
+                this.height = this.img.height as number;
+                width = this.width;
+                height = this.height;
+            }
+            this.imgWidth = width;
+            this.imgHeight = height;
+            // 设置原点位置(默认左上角)
+            if (this.originPosition == STextOrigin.Centrum) {
+                this.origin = new SPoint(this.width / 2, this.height / 2);
+            }
+        }
         this.origin = new SPoint(this.width / 2, this.height / 2);
         this.update();
     } // Function computeImgSize()
+
+    /**
+     * 判断当前地址和回调地址是否相同
+     *
+     * @param   imgUrl      图片回调地址
+     * @return  当前地址和回调地址是否相同
+     */
+    private isUrlIdentical(imgUrl: string): boolean {
+        if (this.url.indexOf("://") == -1) {
+            // eslint-disable-next-line max-len
+            const reg = /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*?)\s*$/i;
+            if (reg.test(this.url)) {
+                return this.url == imgUrl;
+            } else {
+                return this.url == this.GetUrlRelativePath(imgUrl);
+            }
+        } else {
+            return this.url == imgUrl;
+        }
+    } // Function isUrlIdentical()
+
+    /**
+     * 截取绝对路径中的相对路径
+     * @param   url      绝对路径
+     *
+     */
+    private GetUrlRelativePath(url: string): string {
+        const arrUrl = url.split("//");
+        const start = arrUrl[1].indexOf("/");
+        const relUrl = arrUrl[1].substring(start);
+        return relUrl;
+    } // Function GetUrlRelativePath()
+
+    /**
+     * Item对象边界区域
+     *
+     * @return	SRect
+     */
+    boundingRect(): SRect {
+        return new SRect(
+            -this.origin.x,
+            -this.origin.y,
+            this.width,
+            this.height
+        );
+    } // Function boundingRect()
+
+    /**
+   * 宽高发发生变化
+   *
+   * @param   oldSize 改之前的大小
+   * @param   newSize 改之后大小
+   * */
+    protected onResize(oldSize: SSize, newSize: SSize): void {
+        this.computeImgSize();
+        this.update();
+    } // Function onResize()
+
+    /**
+     * Item绘制操作
+     *
+     * @param   painter      绘画类
+     */
+    onDraw(painter: SPainter): void {
+        painter.translate(-this.origin.x, -this.origin.y);
+        if (this.isLoadOver) {
+            // @ts-ignore
+            painter.drawImage(this.img, 0, 0, this.imgWidth, this.imgHeight);
+        }
+        if (this.selected) {
+            painter.shadow.shadowBlur = 10;
+            painter.shadow.shadowColor = new SColor(`#00000033`);
+            painter.shadow.shadowOffsetX = 5;
+            painter.shadow.shadowOffsetY = 5;
+        } else {
+            painter.shadow.shadowColor = SColor.Transparent;
+        }
+        painter.pen.lineWidth = this.lineWidth;
+        painter.pen.color = this.strokeColor;
+        painter.brush.color = SColor.Transparent;
+        painter.drawRect(0, 0, this.width, this.height);
+    } // Function onDraw()
+
 } // Class SImageItem

+ 52 - 4
src/components/editClass/edit/items/STextEdit.ts

@@ -23,16 +23,16 @@
  *
  * *********************************************************************************************************************
  */
-import { SPainter, SRect, SColor, SFont, SPoint } from "@persagy-web/draw";
-import { SGraphItem, STextOrigin, SLineStyle, SObjectItem } from "@persagy-web/graph/";
+import { SPainter, SRect, SColor, SFont, SPoint, SSize } from "@persagy-web/draw";
+import { SGraphItem, STextOrigin, SLineStyle, SAnchorItem } from "@persagy-web/graph/";
 import { SItemStatus } from "@persagy-web/big";
-import { SObjectItemEdit } from ".."
+import { SGraphEdit } from ".."
 /**
  * 文本编辑类
  *
  * @author  韩耀龙(han_yao_long@163.com)
  */
-export class STextEdit extends SObjectItem {
+export class STextEdit extends SGraphEdit {
     /////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
     /**编辑状态 */
@@ -65,6 +65,54 @@ export class STextEdit extends SObjectItem {
 
     /** 切割后的文本数组 */
     private _textArr: string[] = [];
+    /** 锚点list  */
+    anchorList: SAnchorItem[] = [];
+    /** 宽度  */
+    private _width: number = 64;
+    get width(): number {
+        return this._width;
+    }
+    set width(v: number) {
+        if (v > 0) {
+            if (v != this._width) {
+                let w = this._width;
+                this._width = v;
+                this.onResize(
+                    new SSize(w, this._height),
+                    new SSize(this._width, this._height)
+                );
+            }
+        }
+    }
+
+    /** 高度  */
+    private _height: number = 64;
+    get height(): number {
+        return this._height;
+    }
+    set height(v: number) {
+        if (v > 0) {
+            if (v != this._height) {
+                let h = this._height;
+                this._height = v;
+                this.onResize(
+                    new SSize(this._width, h),
+                    new SSize(this._width, this._height)
+                );
+            }
+        }
+    }
+
+    /** 原点  */
+    origin = new SPoint();
+
+    /**
+     * 宽高发发生变化
+     *
+     * @param   oldSize 改之前的大小
+     * @param   newSize 改之后大小
+     * */
+    protected onResize(oldSize: SSize, newSize: SSize) { } // Function onResize()
 
     /** 文本颜色 */
     private _color: SColor = new SColor("#333333");

+ 14 - 3
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -2,7 +2,7 @@ import { SBaseEditScene, SBaseLineEdit, SBaseTextEdit, SBaseImageEdit, SBaseExpa
 import { SPersagyImageEdit } from "./"
 // import { SGraphItem } from "@persagy-web/graph/";
 import { SGraphEdit } from "./../edit"
-// import { SMouseEvent, SUndoStack } from "@persagy-web/base/lib";
+import { SMouseEvent } from "@persagy-web/base/lib";
 import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
 import { uuid } from "./../big-edit/until";
 
@@ -38,6 +38,7 @@ export class PTopoScene extends SBaseEditScene {
      * @param   event   鼠标事件参数
      */
     onMouseDown(event: SMouseEvent): any {
+        this.vueOnMouseDown(event) //外部调用
         if (this.editCmd == "EditBaseLine") {
             this.addLine(event)
             this.clearCmdStatus();
@@ -69,7 +70,7 @@ export class PTopoScene extends SBaseEditScene {
      */
     onContextMenu(event: SMouseEvent): boolean {
         if (!super.onContextMenu(event)) {
-            this.getItem(event, null)
+            this.getItem(null, [event])
         }
         return true
     }
@@ -104,6 +105,7 @@ export class PTopoScene extends SBaseEditScene {
         lineItem.selectable = true;
         this.grabItem = lineItem;
         lineItem.connect("finishCreated", this, this.finishCreated);
+        lineItem.connect("onContextMenu", this, this.getItem);
         if (this.view) {
             this.view.update();
         }
@@ -143,6 +145,7 @@ export class PTopoScene extends SBaseEditScene {
         // this.Markers.push(item);
         this.grabItem = null;
         // this.focusItem = item;
+        item.connect("onContextMenu", this, this.getItem);
         this.finishCreated(item);
         // this.scenceUpdate(this);
     }
@@ -244,6 +247,14 @@ export class PTopoScene extends SBaseEditScene {
      * @param  item SGraphEdit|null 返回item
      *
      */
-    getItem(event: SMouseEvent, item: SGraphEdit | null) {
+    getItem(item: SGraphEdit | null, event: SMouseEvent[]) {
+    }
+    /**
+     * 获取item (常用与场景外的调用F)
+     * @param  event SMouseEvent 鼠标事件
+     * @param  item SGraphEdit|null 返回item
+     *
+     */
+    vueOnMouseDown(event: SMouseEvent) {
     }
 }

+ 20 - 5
src/components/editview/baseTopoEditer.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="baseTopo" id="baseTopo" ref="baseTopo">
-    <topoTooltip class="topoTooltip-box" ref="topoTooltip"></topoTooltip>
+    <topoTooltip v-show="showTooltip" class="topoTooltip-box" ref="topoTooltip" :havItem="havItem"></topoTooltip>
     <canvas id="persagy_topo" :width="canvasWidth" :height="canvasHeight" tabindex="0"></canvas>
   </div>
 </template>
@@ -19,6 +19,8 @@ export default {
       view: null, //视图
       canvasWidth: 700, //画布宽
       canvasHeight: 700, //画布高
+      havItem: false, //右击是否选中item
+      showTooltip: false, //是否显示tooltip
     };
   },
   computed: {
@@ -36,6 +38,8 @@ export default {
     // 右键事件
     this.scene.getItem = this.onContextMenu;
     this.scene.emitChoice = this.emitChoice;
+    //左键事件
+    this.scene.vueOnMouseDown = this.vueOnMouseDown;
     // 屏蔽浏览器右键功能(防止与编辑器右键交互重合)
     document.getElementById("baseTopo").oncontextmenu = function (e) {
       return false;
@@ -56,11 +60,22 @@ export default {
       this.SETCHOICELEHEND("");
     },
     // 右键获取item
-    onContextMenu(event, item) {
-      console.log("event,item", event, item);
+    onContextMenu(item, [event]) {
+      this.showTooltip = true;
+      console.log(item)
+      if (item) {
+        this.havItem = true;
+      } else {
+        this.havItem = false;
+      }
       const doms = document.getElementsByClassName("topoTooltip-box")[0];
-      doms.style.left = event.x + "px";
-      doms.style.top = event.y + "px";
+      doms.style.left = event.offsetX + "px";
+      doms.style.top = event.offsetY + "px";
+    },
+    // 左键事键
+    vueOnMouseDown(e) {
+      //  关闭tooltip
+      this.showTooltip = false;
     },
     // 选中后的回调函数
     emitChoice(itemList) {

+ 2 - 1
src/components/editview/leftToolBar/legendList.vue

@@ -39,7 +39,7 @@ export default {
   data() {
     return {
       baseEditItems,
-      baseItemVal:'', //基础组件搜索
+      baseItemVal: "", //基础组件搜索
       // choiceLegend: "" //选中绘制类型
     };
   },
@@ -51,6 +51,7 @@ export default {
     drawItem(item) {
       this.SETCHOICELEHEND(item);
     },
+    pressEnter() {},
   },
 };
 </script>

+ 55 - 4
src/components/editview/topoTooltip.vue

@@ -1,9 +1,27 @@
 <!-- 弹框 -->
 <template>
-  <div class="topo_tooltip">弹窗</div>
+  <div class="topo_tooltip">
+    <div v-if="havItem" class="tooltip-card">
+      <ul>
+        <li>编辑</li>
+        <li>锁定</li>
+        <li>置顶</li>
+        <li>置底</li>
+        <li>删除</li>
+      </ul>
+    </div>
+    <div v-else class="tooltip-card">
+      <ul>
+        <li>保存</li>
+        <li>发布</li>
+        <li>下载</li>
+      </ul>
+    </div>
+  </div>
 </template>
 <script>
 export default {
+  props: ["havItem"],
   name: "topoTooltip",
   data() {
     return {};
@@ -11,9 +29,42 @@ export default {
 };
 </script>
 <style lang="less" scoped>
+ul,
+li {
+  margin: 0;
+  padding: 0;
+  list-style-type: none;
+}
 .topo_tooltip {
-  position: absolute;
-  left: 0;
-  top: 0;
+  position: relative;
+  .tooltip-card {
+    border: 1px solid #e4e5e7;
+    border-radius: 4px;
+    box-shadow: 0 2px 10px rgba(31, 35, 41, 0.1);
+    background: #fff;
+    font-size: 0;
+    ul {
+      li {
+        display: flex;
+        align-items: center;
+        justify-content: space-between;
+        position: relative;
+        width: 100px;
+        box-sizing: border-box;
+        border-radius: 0;
+        padding: 8px 0 8px 12px;
+        cursor: pointer;
+        overflow: hidden;
+        text-overflow: ellipsis;
+        white-space: nowrap;
+        background: #ffff;
+        color: #1f2328;
+        font-size: 12px;
+      }
+      li:hover {
+        background: #f5f6f7;
+      }
+    }
+  }
 }
 </style>