|
@@ -26,11 +26,16 @@ export class PageCtrl extends ModuleControl<EditorModule> {
|
|
|
this.rootPage.children.default.forEach(cid=>{
|
|
|
const card = this.compMap[cid];
|
|
|
let first = true;
|
|
|
- card.children.onDefaultChanged(()=>{
|
|
|
+ this.setCompPid(cid, this.rootPage.id);
|
|
|
+
|
|
|
+ card.children.onDefaultChanged((childs)=>{
|
|
|
if (first) {
|
|
|
first = false;
|
|
|
return;
|
|
|
}
|
|
|
+ childs.forEach(c=>{
|
|
|
+ this.setCompPid(c, card.id);
|
|
|
+ })
|
|
|
this.helper.extendStreamCard(cid);
|
|
|
})
|
|
|
})
|
|
@@ -62,7 +67,7 @@ export class PageCtrl extends ModuleControl<EditorModule> {
|
|
|
|
|
|
return out;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
setCompPid(compId: string, pid: string) {
|
|
|
this.compPids[compId] = pid;
|
|
|
}
|
|
@@ -81,11 +86,24 @@ export class PageCtrl extends ModuleControl<EditorModule> {
|
|
|
}
|
|
|
|
|
|
setDesignData(data: Partial<DesignTemp>) {
|
|
|
- this.controls.pageCtrl.designData = new DesignTemp(data);
|
|
|
- this.state.rootId = "root";
|
|
|
- this.state.currStreamCardId = this.streamCardIds[0];
|
|
|
- this.initEvent();
|
|
|
- this.controls.propsCtrl.state.propId = "root";
|
|
|
+ this.designData = new DesignTemp(data);
|
|
|
+ //设置组件父子关系
|
|
|
+ const ite = (root:any)=> {
|
|
|
+ const cards = root.children?.default || [];
|
|
|
+ cards.forEach((c:string)=>{
|
|
|
+ this.setCompPid(c, root.id);
|
|
|
+ const r = this.compMap[c];
|
|
|
+ if (r) {
|
|
|
+ ite(r);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ ite(this.designData.compMap.root);
|
|
|
+
|
|
|
+ this.state.rootId = "root";
|
|
|
+ this.state.currStreamCardId = this.streamCardIds[0];
|
|
|
+ this.initEvent();
|
|
|
+ this.controls.propsCtrl.state.propId = "root";
|
|
|
|
|
|
setTimeout(() => {
|
|
|
history.enable = true;
|
|
@@ -111,8 +129,13 @@ export class PageCtrl extends ModuleControl<EditorModule> {
|
|
|
this.state.setCurrStreamCardId(cardId);
|
|
|
}
|
|
|
|
|
|
+ findParentComp(compId: string): DesignComp | undefined {
|
|
|
+ const comp = this.compMap[compId];
|
|
|
+ if (comp) return this.compMap[this.compPids[compId]];
|
|
|
+ }
|
|
|
+
|
|
|
deleteComp(compId: string) {
|
|
|
- const parentComp = this.helper.findParentComp(compId);
|
|
|
+ const parentComp = this.findParentComp(compId);
|
|
|
let deleteOK = false;
|
|
|
if (parentComp) {
|
|
|
const ids = [...(parentComp.children.default || [])];
|
|
@@ -121,7 +144,7 @@ export class PageCtrl extends ModuleControl<EditorModule> {
|
|
|
const index = ids.findIndex((id) => id === compId);
|
|
|
if (index >= 0) {
|
|
|
ids.splice(index, 1);
|
|
|
- parentComp.children.default = ids;
|
|
|
+ parentComp.children.setDefault(ids);
|
|
|
deleteOK = true;
|
|
|
}
|
|
|
}
|