Browse Source

提交代码

YaolongHan 4 years ago
parent
commit
c2edf12c2c

+ 12 - 13
src/components/editClass/big-edit/items/SBaseLineEdit.ts

@@ -47,26 +47,26 @@ export class SBaseLineEdit extends SLineEdit {
     constructor(parent: SGraphItem | null, data: Marker) {
         super(parent);
         this.data = data;
-        if (data.Style) {
+        if (data.Style && data.Style.Default) {
             // 关于顶点
-            if (data.Style.Line) {
+            if (data.Style.Default.Line) {
                 let setPointList: SPoint[];
-                setPointList = data.Style.Line.map(i => {
+                setPointList = data.Style.Default.Line.map(i => {
                     return new SPoint(i.X, i.Y)
                 });
                 this.line = setPointList;
             }
             // 颜色
-            if (data.Style.StrokeColor) {
-                this.strokeColor = new SColor(data.Style.StrokeColor)
+            if (data.Style.Default.StrokeColor) {
+                this.strokeColor = new SColor(data.Style.Default.StrokeColor)
             }
             // 线宽
-            if (data.Style.LineWidth) {
-                this.lineWidth = data.Style.LineWidth
+            if (data.Style.Default.LineWidth) {
+                this.lineWidth = data.Style.Default.LineWidth
             }
             // 线样式
-            if (data.Style.LineStyle) {
-                this.lineStyle = data.Style.LineStyle
+            if (data.Style.Default.LineStyle) {
+                this.lineStyle = data.Style.Default.LineStyle
             }
         }
 
@@ -84,10 +84,9 @@ export class SBaseLineEdit extends SLineEdit {
 
     toData() {
         const Line = [{ X: this.line[0].x, Y: this.line[0].y }, { X: this.line[1].x, Y: this.line[1].y }];
-        this.data.Style.Line = Line;
-        this.data.Style.StrokeColor = this.strokeColor.value;
-        this.data.Style.LineWidth = this.lineWidth;
-        this.data.Style.LineStyle = this.lineStyle
+        this.data.Style.Default.Line = Line;
+        this.data.Style.Default.LineWidth = this.lineWidth;
+        this.data.Style.Default.LineStyle = this.lineStyle
         return this.data
     }
 }

+ 30 - 19
src/components/editClass/big-edit/items/SBaseTextEdit.ts

@@ -29,7 +29,6 @@ import { SGraphItem } from "@persagy-web/graph";
 import { Marker } from "./../types/Marker";
 import { SMouseEvent } from "@persagy-web/base/lib";
 import { ItemOrder } from '@persagy-web/big/lib';
-import { uuid } from "./../../big-edit/until";
 /**
  * 编辑基础文本类
  *
@@ -50,30 +49,33 @@ export class SBaseTextEdit extends STextEdit {
         this.zOrder = ItemOrder.textOrder;
         this.isTransform = false;
         this.data = data;
-        if (!data.ID) {
-            data.ID = uuid()
-        }
-        this.id = data.ID;
         this.name = data.Name;
         this.moveTo(data.Pos.X, data.Pos.Y);
         if (data.Size) {
             this.width = data.Size.Width;
             this.height = data.Size.Height;
         }
-        if (data.Properties.Zorder) {
-            this.zOrder = data.Properties.Zorder;
-        }
-        if (data.Properties && data.Properties.Text) {
-            this.text = data.Properties.Text;
-        }
-        if (data.Properties && data.Properties.Color) {
-            this.color = new SColor(data.Properties.Color);
-        }
-        if (data.Properties && data.Properties.Font) {
-            this.font = new SFont("sans-serif", data.Properties.Font);;
-        }
-        if (data.Properties && data.Properties.BackgroundColor) {
-            this.backgroundColor = new SColor(data.Properties.BackgroundColor);
+        if (data.Style && data.Style.Default) {
+            // 高度
+            if (data.Style.Default.Zorder) {
+                this.zOrder = data.Style.Default.Zorder;
+            }
+            // 文本
+            if (data.Style.Default.Text) {
+                this.text = data.Style.Default.Text;
+            }
+            // 文本颜色
+            if (data.Style.Default.Color) {
+                this.color = new SColor(data.Style.Default.Color);
+            }
+            // 字体大小
+            if (data.Style.Default.Font) {
+                this.font = new SFont("sans-serif", data.Style.Default.Font);;
+            }
+            // 背景色
+            if (data.Style.Default.BackgroundColor) {
+                this.backgroundColor = new SColor(data.Style.Default.BackgroundColor);
+            }
         }
     }
     /**
@@ -88,6 +90,15 @@ export class SBaseTextEdit extends STextEdit {
     } // Function onMouseDown()
 
     toData(): any {
+        if (this.data.Size) {
+            this.data.Size.Width = this.width
+            this.data.Size.Height = this.height;
+        }
+        this.data.Style.Default.Zorder = this.zOrder;
+        this.data.Style.Default.Text = this.text;
+        this.data.Style.Default.Color = this.color.value;
+        this.data.Style.Default.Font = this.font.size
+        this.data.Style.Default.BackgroundColor = this.backgroundColor
         return this.data
     }
 }

+ 2 - 2
src/components/editClass/big-edit/types/Marker.ts

@@ -26,7 +26,7 @@
 
 
 
-import { Point } from "@persagy-web/big/lib/types/Point";
+import { Point } from "@persagy-web/graph/lib/types/Point";
 import { Size } from "@persagy-web/big/lib/types/Size";
 
 /**
@@ -36,7 +36,7 @@ import { Size } from "@persagy-web/big/lib/types/Size";
  */
 export interface Marker {
     /** ID */
-    ID: string;
+    ID?: string;
     /** 名称  */
     Name: string;
     /** 图标(Image),线类型(Line) */

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

@@ -62,6 +62,7 @@ export class SGraphEdit extends SGraphItem {
         if (parent) {
             this.parent = parent;
         }
+        this.selectable = true
     }
 
     /**
@@ -73,7 +74,7 @@ export class SGraphEdit extends SGraphItem {
 
     }
     onContextMenu(event: SMouseEvent): boolean {
-        this.$emit('onContextMenu',event)
+        this.$emit('onContextMenu', event)
         return true
     }
 }

+ 1 - 0
src/components/editClass/edit/items/STextEdit.ts

@@ -152,6 +152,7 @@ export class STextEdit extends SGraphEdit {
     }
     set strokeColor(v: SColor) {
         this._strokeColor = v;
+        console.log(this._strokeColor)
         this.update();
     }
 

+ 21 - 1
src/components/editClass/persagy-edit/PTopoParser.ts

@@ -68,9 +68,29 @@ export class PTopoParser extends SParser {
 
     } // Function parseData()
     addMarker(data: Marker) {
+        // 基础直线
         if (data.Properties.Type == "BaseLine") {
-            // const item = this.factory.createBaseLineEdit(data);
             this.Markers.push(this.factory.createBaseLineEdit(data))
         }
+        // 基础文字
+        if (data.Properties.Type == "BaseText") {
+            this.Markers.push(this.factory.createBaseTextEdit(data))
+        }
+        // 基础图片
+        if (data.Properties.Type == "BaseImage") {
+            this.Markers.push(this.factory.createBaseImageEdit(data))
+        }
+        // 基础注释
+        if (data.Properties.Type == "BaseExplain") {
+            this.Markers.push(this.factory.createBaseExpainEdit(data))
+        }
+        // // 基础文字
+        // if (data.Properties.Type == "BaseText") {
+        //     this.Markers.push(this.factory.createBaseTextEdit(data))
+        // }
+        // // 基础图片
+        // if (data.Properties.Type == "BaseImage") {
+        //     this.Markers.push(this.factory.createBaseImageEdit(data))
+        // }
     }
 }

+ 29 - 22
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -109,7 +109,10 @@ export class PTopoScene extends SBaseEditScene {
                 Type: "BaseLine"           // 自定义类型用于区分mark与node
             },
             Style: {
-                Line: [{ X: event.x, Y: event.y }],
+                Default: {
+                    Line: [{ X: event.x, Y: event.y }],
+                }
+
             }
         }
         const lineItem = new SBaseLineEdit(null, data);
@@ -138,29 +141,28 @@ export class PTopoScene extends SBaseEditScene {
             Type: "Text",
             /** 位置  */
             Pos: { X: event.x, Y: event.y },
+            Size: { Width: 0, Height: 0 },
             /** 由应用自己定义  */
             Properties: {
+                Type: "BaseText"           // 自定义类型用于区分mark与node
             },
             Style: {
-                Text: '请在右侧属性栏输入文字!',
-                Color: "#646c73",
-                Font: 14,
-                BackgroundColor: "#f7f9facc",
-                Type: "BaseText"           // 自定义类型用于区分mark与node
+                Default: {
+                    Text: '请在右侧属性栏输入文字!',
+                    Color: "#646c73",
+                    Font: 14,
+                    BackgroundColor: "#f7f9facc",
+                }
             }
         }
-        const item = new SBaseExpainEdit(null, data);
+        const item = new SBaseTextEdit(null, data);
         item.moveTo(event.x, event.y);
-        item.selectable = true;
         item.moveable = true;
         this.addItem(item);
         this.undoStack.push(new SGraphAddCommand(this, item));
-        // this.Markers.push(item);
         this.grabItem = null;
-        // this.focusItem = item;
         item.connect("onContextMenu", this, this.getItem);
         this.finishCreated(item);
-        // this.scenceUpdate(this);
     }
 
     /**
@@ -170,8 +172,6 @@ export class PTopoScene extends SBaseEditScene {
      */
     addExplainItem(event: SMouseEvent): void {
         const data = {
-            /** ID */
-            ID: uuid(),
             /** 名称  */
             Name: '基础注释文本',
             /** 图标 */
@@ -180,7 +180,6 @@ export class PTopoScene extends SBaseEditScene {
             Pos: { X: event.x, Y: event.y },
             /** 由应用自己定义  */
             Properties: {
-                // IconUrl: require(`../../assets/images/t-text-hover.png`),
                 Text: '请在右侧属性栏输入文字!',
                 Color: "#646c73",
                 Font: 14,
@@ -220,12 +219,14 @@ export class PTopoScene extends SBaseEditScene {
             Pos: { X: event.x, Y: event.y },
             /** 由应用自己定义  */
             Properties: {
-                // IconUrl: require(`../../assets/images/t-img-hover.png`),
-                StrokeColor: "#c0ccda",
-                Url: '',
                 Type: "BaseImage",
             },
-            Style: {}
+            Style: {
+                Default: {
+                    StrokeColor: "#c0ccda",
+                    Url: '',
+                }
+            }
         }
         const item = new SPersagyImageEdit(null, data);
         item.selectable = true;
@@ -251,7 +252,9 @@ export class PTopoScene extends SBaseEditScene {
                 Type: "BaseRect",
             },
             Style: {
-                Line: [{ X: event.x, Y: event.y }],
+                Default: {
+                    Line: [{ X: event.x, Y: event.y }],
+                }
             }
         }
         const rectItem = new SBaseRectEdit(null, data);
@@ -279,7 +282,9 @@ export class PTopoScene extends SBaseEditScene {
             Properties: {
             },
             Style: {
-                Line: [{ X: event.x, Y: event.y }],
+                Default: {
+                    Line: [{ X: event.x, Y: event.y }],
+                }
             }
         }
         const triangleItem = new SBaseTriangelEdit(null, data);
@@ -307,7 +312,9 @@ export class PTopoScene extends SBaseEditScene {
             Properties: {
             },
             Style: {
-                Line: [{ X: event.x, Y: event.y }],
+                Default: {
+                    Line: [{ X: event.x, Y: event.y }],
+                }
             }
         }
         const arrowItem = new SBaseArrowEdit(null, data);
@@ -366,7 +373,7 @@ export class PTopoScene extends SBaseEditScene {
             List = this.selectContainer.itemList;
         };
         let styleValue: any
-        if (styleType == "strokeColor") {
+        if (styleType == "strokeColor" || styleType == "backgroundColor") {
             const colorlist = rgbaNum(changeStyle)
             styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
         } else if (styleType == "lineStyle") {

+ 6 - 7
src/components/editview/baseTopoEditer.vue

@@ -56,7 +56,6 @@ export default {
     // 右键获取item
     onContextMenu(item, [event]) {
       this.showTooltip = true;
-      console.log(item);
       if (item) {
         this.havItem = true;
       } else {
@@ -124,10 +123,10 @@ export default {
             ],
           },
         };
-        Object.assign(obj, {
-          GraphId: "6500f7d6db5a40d4be4313ea654b1373",
-          Id: "d6c1926ee74b438d87c6b06fec9806c6",
-        });
+        // Object.assign(obj, {
+        //   GraphId: "6500f7d6db5a40d4be4313ea654b1373",
+        //   Id: "d6c1926ee74b438d87c6b06fec9806c6",
+        // });
         console.log(obj);
         saveGroup(obj).then((res) => {
           console.log("res", res);
@@ -137,8 +136,8 @@ export default {
     // 读取拓扑图
     readtopoMsg() {
       let obj = {
-        GraphId: "6500f7d6db5a40d4be4313ea654b1373",
-        Id: "d6c1926ee74b438d87c6b06fec9806c6",
+        GraphId: "cd8ca79c337644d48c58c447cf21b757",
+        Id: "f15506fa5dcc4ce79064e459e5497748",
       };
       readGroup(obj).then((res) => {
         console.log("resssssss", res);

+ 43 - 20
src/components/editview/rightPropertyBar/baseTextPro.vue

@@ -8,26 +8,31 @@
         <div class="property">
           <div class="color-box">
             <div class="cololorSelect">
-              <el-color-picker change 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"
-              v-model="num"
+              v-model="linewidth"
               controls-position="right"
-              @change="handleChange"
+              @change="changeFontSize"
               size="mini"
               :min="1"
               :max="20"
               :maxlength="100"
             ></el-input-number>
-            <span>线宽</span>
+            <span>字号</span>
           </div>
           <div class="color-box">
             <div class="cololorSelect">
-              <el-color-picker class="fix-box-1" v-model="color"></el-color-picker>
+              <el-color-picker
+                @change="changeBackground"
+                show-alpha
+                class="fix-box-1"
+                v-model="backgroundcolor"
+              ></el-color-picker>
             </div>
             <span>背景颜色</span>
           </div>
@@ -39,13 +44,13 @@
 <script>
 import bus from "@/bus/bus";
 export default {
+  props: ["strokeColor", "lineStyle", "lineWidth"],
   data() {
     return {
-      size: 12, //font-size
+      size: 0, //font-size
       text: "", //文本
-      color: "#cccccc", //颜色
-      activeName: "",
-      num: 1,
+      color: "",
+      backgroundcolor: "",
       borderLineOption: [
         {
           id: "solid",
@@ -64,23 +69,41 @@ export default {
     };
   },
   methods: {
-    // 改变文本大小
-    updateSize(val) {
-      bus.$emit("baseTextSize", val);
+    // 改变文
+    changeText(val) {
+      bus.$emit("updateStyle", "text", val);
     },
-    // 输入文本
-    handleChangeText() {},
-    handleChange() {},
-    // 改变文字颜色
-    changeColor() {},
-    handleClick(tab, event) {
-      console.log(tab, event);
+    // 改变颜色
+    changeColor(val) {
+      bus.$emit("updateStyle", "strokeColor", val);
+    },
+    // 改变背景颜色
+    changeBackground(val) {
+      bus.$emit("updateStyle", "backgroundColor", val);
+    },
+    // 改变字体大小
+    changeFontSize(val) {
+      bus.$emit("updateStyle", "font", val);
     },
-    changeBorder() {},
   },
   mounted() {
     // console.log(Select)
   },
+  watch: {
+    strokeColor(val) {
+      this.color = val;
+    },
+    fontSize(val) {
+      this.size = val;
+    },
+    backgroundColor(val) {
+      this.backgroundcolor = val;
+    },
+
+    textMsg(val) {
+      this.text = val;
+    },
+  },
 };
 </script>
 <style lang="less" scoped>

+ 22 - 4
src/components/editview/rightPropertyBar/property.vue

@@ -1,14 +1,26 @@
 <!--属性栏-->
 <template>
   <div class="propertys">
-    <baseTextProVue v-show="itemType == 'BaseText'"></baseTextProVue>
+    <baseTextProVue
+      :strokeColor="strokeColor"
+      :fontSize="fontSize"
+      :textMsg="textMsg"
+      :backgroundColor="backgroundColor"
+      v-show="itemType == 'BaseText'"
+    ></baseTextProVue>
     <baseLinePro
       v-show="itemType == 'BaseLine'"
       :strokeColor="strokeColor"
       :lineStyle="lineStyle"
       :lineWidth="lineWidth"
     ></baseLinePro>
-    <BaseExplainPro v-show="itemType == 'BaseExplain'"></BaseExplainPro>
+    <BaseExplainPro
+      :strokeColor="strokeColor"
+      :fontSize="fontSize"
+      :text="text"
+      :backgroundColor="backgroundColor"
+      v-show="itemType == 'BaseExplain'"
+    ></BaseExplainPro>
     <BaseImagePro v-show="itemType == 'BaseImage'"></BaseImagePro>
   </div>
 </template>
@@ -30,10 +42,12 @@ export default {
   components: { baseTextProVue, baseLinePro, BaseExplainPro, BaseImagePro },
   data() {
     return {
-      itemType: "",
+      itemType: "", // item 类型
       strokeColor: "", //填充色
       lineStyle: "solid", //线条样式
       lineWidth: 1, //线宽
+      fontSize: 12, //字体大小
+      textMsg: "",
     };
   },
   mounted() {
@@ -58,7 +72,11 @@ export default {
         this.strokeColor = item.strokeColor.toRgba();
         this.lineStyle = lineStyle[item.lineStyle];
         this.lineWidth = item.lineWidth;
-        console.log("  this.lineStyle", this.lineStyle);
+      } else if (this.itemType == "baseText") {
+        this.strokeColor = item.strokeColor.toRgba();
+        this.backgroundColor = item.backgroundColor.toRgba();
+        this.textMsg = item.text;
+        this.fontSize = item.font.size;
       }
     },
   },