|
@@ -1,10 +1,6 @@
|
|
|
import { EditorModule } from "..";
|
|
|
-import { CompObject } from "../../controllers/SelectCtrl/compObj";
|
|
|
-import { DesignTemp } from "../../objects/DesignTemp";
|
|
|
import { DesignComp } from "../../objects/DesignTemp/DesignComp";
|
|
|
-import { createProxyEffect } from "../../objects/ProxyStore/create";
|
|
|
import { EditorMode } from "../../typings";
|
|
|
-import { editActions } from "./edit";
|
|
|
|
|
|
export const initActions = EditorModule.action({
|
|
|
// 模块初始化
|
|
@@ -12,7 +8,7 @@ export const initActions = EditorModule.action({
|
|
|
// const { historyCtrl } = this.controls;
|
|
|
// historyCtrl.bindActions(Object.keys(editActions));
|
|
|
this.controls.compUICtrl.init();
|
|
|
- this.controls.mediaCtrl.init();
|
|
|
+ this.controls.mediaCtrl.init();
|
|
|
|
|
|
// createProxyEffect(this.store, (type, paths, value, oldValue) => {
|
|
|
// if (
|
|
@@ -30,9 +26,16 @@ export const initActions = EditorModule.action({
|
|
|
// 初始化数据
|
|
|
async initDesign(id: string, isSys = false) {
|
|
|
const ret = await this.https.getDesignDetail(id, { isSys });
|
|
|
-
|
|
|
+ if (!ret.result.compMap) {
|
|
|
+ const cate: any = this.store.tplCategory || [];
|
|
|
+ const item = cate.find((d: any) => ret.result.categories.includes(d.id));
|
|
|
+ if (item && item.value == "PC") {
|
|
|
+ ret.result.platform = "pc";
|
|
|
+ } else {
|
|
|
+ ret.result.platform = "mobile";
|
|
|
+ }
|
|
|
+ }
|
|
|
const page = this.controls.pageCtrl;
|
|
|
-
|
|
|
page.setDesignData(ret.result);
|
|
|
},
|
|
|
|
|
@@ -54,7 +57,8 @@ export const initActions = EditorModule.action({
|
|
|
this.controls.selectCtrl.initEvents(pageEl, selEl, viewPort);
|
|
|
},
|
|
|
|
|
|
- onCompLayoutUpdated(comp: DesignComp) {//组件自身延迟加载了,影响了布局
|
|
|
+ onCompLayoutUpdated(comp: DesignComp) {
|
|
|
+ //组件自身延迟加载了,影响了布局
|
|
|
if (this.helper.isCurrComp(comp.id)) {
|
|
|
this.controls.selectCtrl.gizmo.selectObjs([comp.id]);
|
|
|
}
|