|
@@ -3,11 +3,13 @@ import { SPersagyImageEdit } from "./"
|
|
|
|
|
|
import { SGraphEdit } from "./../edit"
|
|
|
import { SMouseEvent } from "@persagy-web/base/lib";
|
|
|
+import { SGraphSelectContainer } from "@persagy-web/graph";
|
|
|
import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
|
|
|
-import { uuid } from "./../big-edit/until";
|
|
|
+import { uuid, rgbaNum } from "./../big-edit/until";
|
|
|
|
|
|
|
|
|
import { SGraphAddCommand } from "./../edit/commands/SGraphAddCommand"
|
|
|
+import { SColor } from '@persagy-web/draw/lib';
|
|
|
export class PTopoScene extends SBaseEditScene {
|
|
|
constructor() {
|
|
|
super()
|
|
@@ -89,7 +91,7 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
addLine(event: SMouseEvent): void {
|
|
|
const data = {
|
|
|
|
|
|
- ID: uuid(),
|
|
|
+
|
|
|
|
|
|
Name: '基础直线',
|
|
|
|
|
@@ -133,7 +135,7 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
|
|
|
Name: '基础文本',
|
|
|
|
|
|
- Type: "BaseText",
|
|
|
+ Type: "Text",
|
|
|
|
|
|
Pos: { X: event.x, Y: event.y },
|
|
|
|
|
@@ -142,7 +144,8 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
Text: '请在右侧属性栏输入文字!',
|
|
|
Color: "#646c73",
|
|
|
Font: 14,
|
|
|
- BackgroundColor: "#f7f9facc"
|
|
|
+ BackgroundColor: "#f7f9facc",
|
|
|
+ Type: "BaseText"
|
|
|
},
|
|
|
Style: {}
|
|
|
}
|
|
@@ -172,7 +175,7 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
|
|
|
Name: '基础注释文本',
|
|
|
|
|
|
- Type: "BaseExplain",
|
|
|
+ Type: "Text",
|
|
|
|
|
|
Pos: { X: event.x, Y: event.y },
|
|
|
|
|
@@ -181,7 +184,8 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
Text: '请在右侧属性栏输入文字!',
|
|
|
Color: "#646c73",
|
|
|
Font: 14,
|
|
|
- BackgroundColor: "#f7f9facc"
|
|
|
+ BackgroundColor: "#f7f9facc",
|
|
|
+ Type: "BaseExplain",
|
|
|
},
|
|
|
Style: {}
|
|
|
}
|
|
@@ -211,7 +215,7 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
Name: '基础图片',
|
|
|
Num: 1,
|
|
|
|
|
|
- Type: "BaseImage",
|
|
|
+ Type: "Image",
|
|
|
|
|
|
Pos: { X: event.x, Y: event.y },
|
|
|
|
|
@@ -219,6 +223,7 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
|
|
|
StrokeColor: "#c0ccda",
|
|
|
Url: '',
|
|
|
+ Type: "BaseImage",
|
|
|
},
|
|
|
Style: {}
|
|
|
}
|
|
@@ -241,11 +246,12 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
|
|
|
Name: '基础矩形',
|
|
|
|
|
|
- Type: "BaseRect",
|
|
|
+ Type: "Zone",
|
|
|
|
|
|
Pos: { X: 0, Y: 0 },
|
|
|
|
|
|
Properties: {
|
|
|
+ Type: "BaseRect",
|
|
|
},
|
|
|
Style: {
|
|
|
Line: [{ X: event.x, Y: event.y }],
|
|
@@ -278,10 +284,32 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
- updateStyle(): void {
|
|
|
-
|
|
|
+
|
|
|
+ * 修改 item 样式,数据等方法
|
|
|
+ * @param styleType string 修改样式类型
|
|
|
+ * @param changeStyle 更改样式数据
|
|
|
+ * @param itemList? SGraphEdit[] 如果不传入默认使用选择器中选中得item
|
|
|
+ */
|
|
|
+ updateStyle(styleType: string, changeStyle: any, itemList?: SGraphEdit[]): void {
|
|
|
+
|
|
|
+ let List = null;
|
|
|
+ if (itemList && itemList.length) {
|
|
|
+ List = itemList;
|
|
|
+ } else {
|
|
|
+ List = this.selectContainer.itemList;
|
|
|
+ };
|
|
|
+ let styleValue: any
|
|
|
+ if (styleType == "strokeColor") {
|
|
|
+ const colorlist = rgbaNum(changeStyle)
|
|
|
+ styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), Number(colorlist[3]));
|
|
|
+ }
|
|
|
+ List.forEach((item: SGraphEdit, index: number) => {
|
|
|
+ if (item instanceof SGraphSelectContainer) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ item[styleType] = styleValue
|
|
|
+ })
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|
|
@@ -326,8 +354,9 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
const Markers: any = [];
|
|
|
const Nodes: any = [];
|
|
|
const Relations: any = [];
|
|
|
+ console.log('this.root.children', this.root.children)
|
|
|
this.root.children.forEach(item => {
|
|
|
- if (MarkType.includes(item.data.Properties.Type)) {
|
|
|
+ if (!(item instanceof SGraphSelectContainer) && MarkType.includes(item.data.Properties.Type)) {
|
|
|
Markers.push(item.toData())
|
|
|
}
|
|
|
});
|