|
@@ -202,7 +202,6 @@ export const editActions = EditorModule.action({
|
|
|
this.helper.extendStreamCard(page.state.currStreamCardId);
|
|
|
|
|
|
if (compKey == "Text") {
|
|
|
- this.actions.selectObjs([]);
|
|
|
this.actions.textFocus(currComp.id, true);
|
|
|
}
|
|
|
this.controls.cropCtrl.close();
|
|
@@ -211,16 +210,6 @@ export const editActions = EditorModule.action({
|
|
|
|
|
|
},
|
|
|
|
|
|
- async selectObjs(ids: string[], last = "") {
|
|
|
- this.store.selected = ids;
|
|
|
- this.store.selectId = ids.length > 1 ? Date.now() + "" : "";
|
|
|
- this.store.lastSelected = last
|
|
|
- ? last
|
|
|
- : ids.length > 0
|
|
|
- ? ids[ids.length - 1]
|
|
|
- : "";
|
|
|
- },
|
|
|
-
|
|
|
// 添加组件到画布
|
|
|
async addCompToDesign(compKey: ICompKeys, index?: number) {
|
|
|
const page = this.controls.pageCtrl;
|
|
@@ -289,10 +278,15 @@ export const editActions = EditorModule.action({
|
|
|
},
|
|
|
|
|
|
ctrlc() {
|
|
|
+ const page = this.controls.pageCtrl;
|
|
|
+
|
|
|
ctrlState.selected = [];
|
|
|
- const children = this.store.currStreamCard.children.default || [];
|
|
|
+ const children = page.currStreamCard.children.default || [];
|
|
|
+ const gizmo = this.controls.selectCtrl.gizmo;
|
|
|
+ const selected = gizmo.selected.map(item=>item.comp.id);
|
|
|
+
|
|
|
children.forEach((c) => {
|
|
|
- if (this.store.selected.indexOf(c) > -1) {
|
|
|
+ if (selected.indexOf(c) > -1) {
|
|
|
ctrlState.selected.push(c);
|
|
|
}
|
|
|
});
|
|
@@ -357,12 +351,14 @@ export const editActions = EditorModule.action({
|
|
|
},
|
|
|
|
|
|
toogleGroup() {
|
|
|
- if (this.store.selected.length > 1) {
|
|
|
+ const gizmo = this.controls.selectCtrl.gizmo;
|
|
|
+
|
|
|
+ if (gizmo.selected.length > 1) {
|
|
|
this.actions.createGroupComps();
|
|
|
return;
|
|
|
}
|
|
|
- if (this.store.selected.length == 1) {
|
|
|
- const c = this.helper.findComp(this.store.selected[0]) as DesignComp;
|
|
|
+ if (gizmo.selected.length == 1) {
|
|
|
+ const c = gizmo.selected[0].comp;
|
|
|
if (c.compKey == "Group") {
|
|
|
this.actions.cancelGroupComps(c);
|
|
|
}
|
|
@@ -371,17 +367,20 @@ export const editActions = EditorModule.action({
|
|
|
ctrlx() {
|
|
|
//console.log("ctrlv ", this.store.selected);
|
|
|
//console.log("ctrlv ", this.store.selected);
|
|
|
+ const page = this.controls.pageCtrl;
|
|
|
+ const gizmo = this.controls.selectCtrl.gizmo;
|
|
|
+ const selected = gizmo.selected.map(item=>item.comp.id);
|
|
|
|
|
|
//保持图层顺序
|
|
|
ctrlState.selected = [];
|
|
|
- const children = this.store.currStreamCard.children.default || [];
|
|
|
+ const children = page.currStreamCard.children.default || [];
|
|
|
children.forEach((c) => {
|
|
|
- if (this.store.selected.indexOf(c) > -1) {
|
|
|
+ if (selected.indexOf(c) > -1) {
|
|
|
ctrlState.selected.push(c);
|
|
|
}
|
|
|
});
|
|
|
|
|
|
- ctrlState.cardId = this.store.currStreamCardId;
|
|
|
+ ctrlState.cardId = page.state.currStreamCardId;
|
|
|
ctrlState.type = 2;
|
|
|
ctrlState.screenId = this.controls.screenCtrl.currScreenId;
|
|
|
const objc = this.controls.selectCtrl.objContainer;
|
|
@@ -428,7 +427,7 @@ export const editActions = EditorModule.action({
|
|
|
});
|
|
|
this.actions.addComps(news);
|
|
|
|
|
|
- this.actions.selectObjs(news);
|
|
|
+ this.controls.selectCtrl.gizmo.selectObjs(news);
|
|
|
|
|
|
setTimeout(() => {
|
|
|
if (ctrlState.type == 2) {
|
|
@@ -472,18 +471,16 @@ export const editActions = EditorModule.action({
|
|
|
const childrens = (this.store.currStreamCard.children.default || []).slice(
|
|
|
0
|
|
|
);
|
|
|
- this.actions.selectObjs(childrens);
|
|
|
- // this.controls.selectCtrl.
|
|
|
- //objc.updateSize();
|
|
|
- //selectCtrl.upgateGizmoStyle();
|
|
|
+ this.controls.selectCtrl.gizmo.selectObjs(childrens)
|
|
|
},
|
|
|
+
|
|
|
// 删除组件
|
|
|
removeSelectComps() {
|
|
|
- const selected = this.store.selected.slice(0);
|
|
|
- this.actions.selectObjs([]);
|
|
|
+ this.controls.editorCtrl.clickPickComp("");
|
|
|
+ const selected = this.controls.selectCtrl.gizmo.selected.slice(0);
|
|
|
let n = selected.length;
|
|
|
while (n--) {
|
|
|
- this.actions.removeComp(selected[n]);
|
|
|
+ this.actions.removeComp(selected[n].comp.id);
|
|
|
}
|
|
|
},
|
|
|
|
|
@@ -514,7 +511,7 @@ export const editActions = EditorModule.action({
|
|
|
|
|
|
this.helper.extendStreamCard(cardid);
|
|
|
|
|
|
- this.actions.selectObjs([]);
|
|
|
+ this.controls.editorCtrl.clickPickComp("");
|
|
|
}
|
|
|
},
|
|
|
|
|
@@ -537,9 +534,10 @@ export const editActions = EditorModule.action({
|
|
|
ctrl.setCurrComp(nextCard);
|
|
|
ctrl.deleteComp(compId);
|
|
|
},
|
|
|
+
|
|
|
// 移动组件顺序
|
|
|
moveComp(selIndex: number, targetIndex: number) {
|
|
|
- this.actions.selectObjs([]);
|
|
|
+ this.controls.editorCtrl.clickPickComp("root");
|
|
|
if (selIndex === targetIndex) return;
|
|
|
|
|
|
this.controls.pageCtrl.moveComp(selIndex, targetIndex);
|
|
@@ -961,7 +959,7 @@ export const editActions = EditorModule.action({
|
|
|
parentChilds.push(...childs);
|
|
|
card.children.default = parentChilds;
|
|
|
|
|
|
- this.actions.selectObjs([childs[0]]);
|
|
|
+ this.controls.editorCtrl.clickPickComp(childs[0]);
|
|
|
},
|
|
|
|
|
|
createGroupComps() {
|
|
@@ -1012,7 +1010,7 @@ export const editActions = EditorModule.action({
|
|
|
},
|
|
|
|
|
|
handleSelectMoving(key: string) {
|
|
|
- if (this.store.selected.length < 1) return;
|
|
|
+ if (this.controls.selectCtrl.gizmo.selected.length < 1) return;
|
|
|
let x = 0,
|
|
|
y = 0;
|
|
|
switch (key) {
|
|
@@ -1031,6 +1029,8 @@ export const editActions = EditorModule.action({
|
|
|
}
|
|
|
this.controls.selectCtrl.translate(x * 0.5, y * 0.5);
|
|
|
this.controls.selectCtrl.assistCtrl?.flashDrawCardDists();
|
|
|
+
|
|
|
+ history.submit();
|
|
|
},
|
|
|
|
|
|
// 点击模板
|
|
@@ -1056,8 +1056,7 @@ export const editActions = EditorModule.action({
|
|
|
title,
|
|
|
};
|
|
|
|
|
|
- this.actions.selectObjs([]);
|
|
|
- ctrl.setCurrComp("root");
|
|
|
+ this.controls.editorCtrl.clickPickComp("root");
|
|
|
ctrl.setDesignData(designData);
|
|
|
},
|
|
|
});
|