|
@@ -10,7 +10,7 @@ import { DesignComp } from "../../objects/DesignTemp/DesignComp";
|
|
|
import { ICompKeys, Layout } from "../../typings";
|
|
|
import CompSave from "../../components/CompSave";
|
|
|
import { getKeyThenIncreaseKey } from "ant-design-vue/lib/message";
|
|
|
-import { createObj, history } from "../../objects/DesignTemp/factory";
|
|
|
+import { cloneObj, createObj, history } from "../../objects/DesignTemp/factory";
|
|
|
|
|
|
const ctrlState = {
|
|
|
selected: [] as string[],
|
|
@@ -47,13 +47,13 @@ export const editActions = EditorModule.action({
|
|
|
|
|
|
// 通过点击添加组件到画布
|
|
|
async clickCompToDesign(compKey: ICompKeys, cb?: (comp: DesignComp) => void) {
|
|
|
- if (!this.store.currStreamCardId) {
|
|
|
+ const page = this.controls.pageCtrl;
|
|
|
+
|
|
|
+ if (!page.currStreamCardId) {
|
|
|
queenApi.messageError("请先选中一个卡片");
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
- const page = this.controls.pageCtrl;
|
|
|
-
|
|
|
+
|
|
|
let yOffset = 0;
|
|
|
if (
|
|
|
page.state.currCompId != page.state.currStreamCardId &&
|
|
@@ -106,7 +106,7 @@ export const editActions = EditorModule.action({
|
|
|
|
|
|
const page = this.controls.pageCtrl;
|
|
|
|
|
|
- if (!this.store.currStreamCardId) {
|
|
|
+ if (!page.currStreamCardId) {
|
|
|
queenApi.messageError("请先选中一个卡片");
|
|
|
return;
|
|
|
}
|
|
@@ -132,7 +132,7 @@ export const editActions = EditorModule.action({
|
|
|
|
|
|
initAddedCompPos(currId: string, addedId: string, cardId: string) {
|
|
|
let yOffset = 0;
|
|
|
- if (currId != this.store.currStreamCardId && currId != "root") {
|
|
|
+ if (currId != this.controls.pageCtrl.currStreamCardId && currId != "root") {
|
|
|
const paths = this.helper.getCompTrees(currId);
|
|
|
const bound = this.helper.getCardCompBound(paths[2].id);
|
|
|
yOffset = bound.y + bound.h;
|
|
@@ -291,7 +291,7 @@ export const editActions = EditorModule.action({
|
|
|
}
|
|
|
});
|
|
|
ctrlState.screenId = this.controls.screenCtrl.currScreenId;
|
|
|
- ctrlState.cardId = this.store.currStreamCardId;
|
|
|
+ ctrlState.cardId = page.currStreamCardId;
|
|
|
ctrlState.type = 1;
|
|
|
const objc = this.controls.selectCtrl.objContainer;
|
|
|
ctrlState.selWidth = this.helper.pxToDesignSize(objc.width);
|
|
@@ -306,14 +306,14 @@ export const editActions = EditorModule.action({
|
|
|
copyLastSelected() {
|
|
|
if (this.store.currCompId && this.store.currCompId != "root") {
|
|
|
ctrlState.selected = [this.store.currCompId];
|
|
|
- ctrlState.cardId = this.store.currStreamCardId;
|
|
|
+ ctrlState.cardId = this.controls.pageCtrl.currStreamCardId;
|
|
|
ctrlState.type = 1;
|
|
|
}
|
|
|
},
|
|
|
|
|
|
setSameSize(isWidth: boolean) {
|
|
|
const selectCtrl = this.controls.selectCtrl;
|
|
|
- const objc = selectCtrl.objContainer;
|
|
|
+ const gizmo = selectCtrl.objContainer;
|
|
|
const layout = this.store.currComp.layout;
|
|
|
|
|
|
const w = this.controls.screenCtrl.getCurrScreenWidth();
|
|
@@ -334,20 +334,21 @@ export const editActions = EditorModule.action({
|
|
|
}
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
- const anchorBox = this.helper.findComp(this.store.lastSelected);
|
|
|
+
|
|
|
+ const anchorBox = this.helper.findComp(gizmo.state.lastId);
|
|
|
if (!anchorBox) return;
|
|
|
|
|
|
- objc.parent.children.forEach((c) => {
|
|
|
+ gizmo.parent.children.forEach((c) => {
|
|
|
const child = c as CompObject;
|
|
|
const r = child.getBox();
|
|
|
if (isWidth) child.comp.layout.size[0] = anchorBox.layout.size[0];
|
|
|
else child.comp.layout.size[1] = anchorBox.layout.size[1];
|
|
|
});
|
|
|
|
|
|
- objc.updateSize();
|
|
|
+ gizmo.updateSize();
|
|
|
|
|
|
selectCtrl.upgateGizmoStyle();
|
|
|
+ history.submit();
|
|
|
},
|
|
|
|
|
|
toogleGroup() {
|
|
@@ -404,12 +405,10 @@ export const editActions = EditorModule.action({
|
|
|
if (childs.length > 0) {
|
|
|
childs.forEach((id, index) => {
|
|
|
const cp = this.helper.findComp(id) as DesignComp;
|
|
|
- const cp1 = cloneDeep(cp);
|
|
|
- cp1.id = nanoid();
|
|
|
+ const cp1 = cloneObj(cp);
|
|
|
ctrl.compMap[cp1.id] = cp1;
|
|
|
ctrl.setCompPid(cp1.id, c.id);
|
|
|
childs[index] = cp1.id;
|
|
|
-
|
|
|
deepCopy(cp);
|
|
|
});
|
|
|
}
|
|
@@ -417,19 +416,18 @@ export const editActions = EditorModule.action({
|
|
|
|
|
|
ctrlState.selected.forEach((c) => {
|
|
|
const cp = this.helper.findComp(c) as DesignComp;
|
|
|
- const cp1 = cloneDeep(cp);
|
|
|
- cp1.id = nanoid();
|
|
|
+ const cp1 = cloneObj(cp);
|
|
|
news.push(cp1.id);
|
|
|
ctrl.compMap[cp1.id] = cp1;
|
|
|
- ctrl.setCompPid(cp1.id, this.store.currStreamCardId);
|
|
|
-
|
|
|
+ ctrl.setCompPid(cp1.id, ctrl.currStreamCardId);
|
|
|
deepCopy(cp);
|
|
|
});
|
|
|
this.actions.addComps(news);
|
|
|
|
|
|
this.controls.selectCtrl.gizmo.selectObjs(news);
|
|
|
|
|
|
- setTimeout(() => {
|
|
|
+ //剪辑
|
|
|
+
|
|
|
if (ctrlState.type == 2) {
|
|
|
//剪辑删除原来的组件
|
|
|
const card = this.helper.findComp(ctrlState.cardId) as DesignComp;
|
|
@@ -446,10 +444,10 @@ export const editActions = EditorModule.action({
|
|
|
}
|
|
|
|
|
|
//获取当前选中的内容
|
|
|
- if (ctrlState.cardId != this.store.currStreamCardId) {
|
|
|
+ if (ctrlState.cardId != ctrl.currStreamCardId) {
|
|
|
//跨卡片拷贝
|
|
|
let pox = this.helper.getCardNextPosY(
|
|
|
- this.store.currStreamCardId,
|
|
|
+ ctrl.currStreamCardId,
|
|
|
ctrlState.selWidth
|
|
|
);
|
|
|
this.controls.selectCtrl.translate(0, pox.y - ctrlState.selY);
|
|
@@ -459,14 +457,16 @@ export const editActions = EditorModule.action({
|
|
|
if (ctrlState.screenId == this.controls.screenCtrl.currScreenId) {
|
|
|
this.controls.selectCtrl.translate(20, 20);
|
|
|
}
|
|
|
- }, 100);
|
|
|
+
|
|
|
+ history.submit();
|
|
|
},
|
|
|
|
|
|
addComps(ids: string[]) {
|
|
|
- const childs = this.store.currStreamCard.children.default?.slice(0) || [];
|
|
|
+ const childs = this.store.currStreamCard.children.default.slice(0);
|
|
|
childs.push(...ids);
|
|
|
- this.store.currStreamCard.children.default = childs;
|
|
|
+ this.controls.pageCtrl.currStreamCard.children.setDefault(childs);
|
|
|
},
|
|
|
+
|
|
|
ctrlAndA() {
|
|
|
const childrens = (this.store.currStreamCard.children.default || []).slice(
|
|
|
0
|
|
@@ -504,9 +504,9 @@ export const editActions = EditorModule.action({
|
|
|
this.actions.removeStreamCard(compId);
|
|
|
return;
|
|
|
}
|
|
|
- const cardid = this.store.currStreamCardId;
|
|
|
- if (compId === this.store.currCompId) {
|
|
|
- ctrl.setCurrComp(this.store.currStreamCardId);
|
|
|
+ const cardid = ctrl.currStreamCardId;
|
|
|
+ if (compId === ctrl.currCompId) {
|
|
|
+ ctrl.setCurrComp(ctrl.currStreamCardId);
|
|
|
}
|
|
|
ctrl.deleteComp(compId);
|
|
|
|
|
@@ -525,8 +525,8 @@ export const editActions = EditorModule.action({
|
|
|
|
|
|
await queenApi.showConfirm({ title: "删除", content: "确认删除当前页面?" });
|
|
|
|
|
|
- let nextCard = ctrl.state.currStreamCardId;
|
|
|
- if (compId == ctrl.state.currStreamCardId) {
|
|
|
+ let nextCard = ctrl.currStreamCardId;
|
|
|
+ if (compId == ctrl.currStreamCardId) {
|
|
|
const i = ctrl.streamCardIds.indexOf(compId);
|
|
|
nextCard =ctrl.streamCardIds[i + 1];
|
|
|
if (!nextCard) {
|
|
@@ -743,7 +743,9 @@ export const editActions = EditorModule.action({
|
|
|
},
|
|
|
//横向对齐
|
|
|
setAlignX(flag: 0 | 1 | 2 | 3, isGroup = false) {
|
|
|
+
|
|
|
console.log("alignX");
|
|
|
+
|
|
|
const selectCtrl = this.controls.selectCtrl;
|
|
|
const w = this.helper.designSizeToPx(
|
|
|
this.controls.screenCtrl.getCurrScreenWidth()
|
|
@@ -751,8 +753,8 @@ export const editActions = EditorModule.action({
|
|
|
const gizmo = selectCtrl.gizmo;
|
|
|
|
|
|
if (gizmo.selected.length == 1 || isGroup) {
|
|
|
- const objc = selectCtrl.objContainer;
|
|
|
- const box = objc.getBound();
|
|
|
+
|
|
|
+ const box = gizmo.getBound();
|
|
|
|
|
|
switch (flag) {
|
|
|
case 0:
|
|
@@ -770,32 +772,31 @@ export const editActions = EditorModule.action({
|
|
|
}
|
|
|
|
|
|
//多选元素对齐模式
|
|
|
- const anchorBox = this.helper.findComp(this.store.lastSelected);
|
|
|
+ const anchorBox = this.helper.findComp(gizmo.state.lastId);
|
|
|
if (!anchorBox) return;
|
|
|
|
|
|
const anchor = new CompObject(anchorBox);
|
|
|
const anchorRect = anchor.getBox();
|
|
|
|
|
|
- const objc = selectCtrl.objContainer;
|
|
|
let min = 10000,
|
|
|
max = -10000;
|
|
|
let step = 0;
|
|
|
if (flag == 3) {
|
|
|
//Y轴均匀排布
|
|
|
- objc.parent.children.forEach((c) => {
|
|
|
+ gizmo.parent.children.forEach((c) => {
|
|
|
const child = c as CompObject;
|
|
|
const r = child.getBox();
|
|
|
const x = r.x + r.w / 2.0;
|
|
|
if (x < min) min = x;
|
|
|
if (x > max) max = x;
|
|
|
});
|
|
|
- const stepCount = objc.parent.children.length;
|
|
|
+ const stepCount = gizmo.parent.children.length;
|
|
|
|
|
|
step = (max - min) / (stepCount - 1);
|
|
|
|
|
|
const stepIndexMap: any = {};
|
|
|
|
|
|
- objc.parent.children.forEach((c) => {
|
|
|
+ gizmo.parent.children.forEach((c) => {
|
|
|
const child = c as CompObject;
|
|
|
const r = child.getBox();
|
|
|
const x = r.x + r.w / 2.0;
|
|
@@ -812,15 +813,19 @@ export const editActions = EditorModule.action({
|
|
|
stepIndexMap[minIndex] = true;
|
|
|
child.translate(minIndex * step + min - x, 0);
|
|
|
});
|
|
|
- objc.updateSize();
|
|
|
- selectCtrl.upgateGizmoStyle();
|
|
|
+
|
|
|
+ const selects = gizmo.selectedIds.slice(0)
|
|
|
+ //重新选择当前的元素
|
|
|
+ // gizmo.reSelectCurrElemnts();
|
|
|
+ gizmo.selectObjs(selects, true)
|
|
|
+
|
|
|
history.submit();
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- objc.parent.children.forEach((c) => {
|
|
|
+ gizmo.parent.children.forEach((c) => {
|
|
|
const child = c as CompObject;
|
|
|
- if (child.comp.id == this.store.lastSelected) return;
|
|
|
+ if (child.comp.id == gizmo.state.lastId) return;
|
|
|
const r = child.getBox();
|
|
|
switch (flag) {
|
|
|
case 0:
|
|
@@ -837,7 +842,7 @@ export const editActions = EditorModule.action({
|
|
|
break;
|
|
|
}
|
|
|
});
|
|
|
- objc.updateSize();
|
|
|
+ gizmo.updateSize();
|
|
|
selectCtrl.upgateGizmoStyle();
|
|
|
history.submit();
|
|
|
},
|
|
@@ -867,7 +872,7 @@ export const editActions = EditorModule.action({
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- const anchorBox = this.helper.findComp(this.store.lastSelected);
|
|
|
+ const anchorBox = this.helper.findComp(gizmo.state.lastId);
|
|
|
if (!anchorBox) return;
|
|
|
|
|
|
const anchor = new CompObject(anchorBox);
|
|
@@ -919,7 +924,7 @@ export const editActions = EditorModule.action({
|
|
|
|
|
|
objc.parent.children.forEach((c) => {
|
|
|
const child = c as CompObject;
|
|
|
- if (child.comp.id == this.store.lastSelected) return;
|
|
|
+ if (child.comp.id == gizmo.state.lastId) return;
|
|
|
const r = child.getBox();
|
|
|
switch (flag) {
|
|
|
case 0:
|