|
@@ -44,16 +44,85 @@ export const editActions = EditorModule.action({
|
|
|
}
|
|
|
queenApi.hideLoading();
|
|
|
},
|
|
|
+ async dragAddImageToDesign(e:MouseEvent, url) {
|
|
|
+ const page = this.controls.pageCtrl;
|
|
|
+ if (!page.currStreamCardId) {
|
|
|
+ queenApi.messageError("请先选中一个卡片");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ queenApi.showLoading("图片加载中")
|
|
|
+ const maxW = this.controls.screenCtrl.getCurrScreenWidth();
|
|
|
+ try {
|
|
|
+ const temImg :any = await this.helper.loadImage(url);
|
|
|
+ const ratio = temImg.width / temImg.height;
|
|
|
+ const W = temImg.width > maxW ? maxW : temImg.width;
|
|
|
+ const H = W / ratio;
|
|
|
+
|
|
|
+ const currCard = page.currStreamCard;
|
|
|
+ const currComp = createObj({compKey:"Image"}, false);
|
|
|
+ currComp.setSize(W, H );
|
|
|
+ currComp.value.url = url;
|
|
|
+ page.designData.compMap[currComp.id] = currComp;
|
|
|
+ // page.setCompPid(currComp.id, page.currStreamCardId);
|
|
|
+ const childIds = [...page.currStreamCard.children.default];
|
|
|
+ childIds.push(currComp.id);
|
|
|
+ currCard.children.setDefault(childIds);
|
|
|
+ this.controls.editorCtrl.clickPickComp(currComp.id);
|
|
|
+ this.actions.centerLastComp(e);
|
|
|
+ } catch(e) {
|
|
|
+ queenApi.hideLoading();
|
|
|
+ queenApi.messageError("图片加载失败");
|
|
|
+ return
|
|
|
+ }
|
|
|
+ queenApi.hideLoading();
|
|
|
+ history.submit();
|
|
|
+ },
|
|
|
+
|
|
|
+ async dragAddVideoToDesign(e:MouseEvent, url) {
|
|
|
+ const page = this.controls.pageCtrl;
|
|
|
+ if (!page.currStreamCardId) {
|
|
|
+ queenApi.messageError("请先选中一个卡片");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ queenApi.showLoading("视频加载中")
|
|
|
+ // const maxW = this.controls.screenCtrl.getCurrScreenWidth();
|
|
|
+ try {
|
|
|
+ // const temImg :any = await this.helper.loadImage(url);
|
|
|
+ // const ratio = temImg.width / temImg.height;
|
|
|
+ // const W = temImg.width > maxW ? maxW : temImg.width;
|
|
|
+ // const H = W / ratio;
|
|
|
+
|
|
|
+ const currCard = page.currStreamCard;
|
|
|
+ const currComp = createObj({compKey:"Video"}, false);
|
|
|
+ // currComp.setSize(W, H );
|
|
|
+ currComp.value.url = url;
|
|
|
+ page.designData.compMap[currComp.id] = currComp;
|
|
|
+ // page.setCompPid(currComp.id, page.currStreamCardId);
|
|
|
+ const childIds = [...page.currStreamCard.children.default];
|
|
|
+ childIds.push(currComp.id);
|
|
|
+ currCard.children.setDefault(childIds);
|
|
|
+ this.controls.editorCtrl.clickPickComp(currComp.id);
|
|
|
+ this.actions.centerLastComp(e);
|
|
|
+ } catch(e) {
|
|
|
+ queenApi.hideLoading();
|
|
|
+ queenApi.messageError("图片加载失败");
|
|
|
+ return
|
|
|
+ }
|
|
|
+ queenApi.hideLoading();
|
|
|
+ history.submit();
|
|
|
+},
|
|
|
|
|
|
// 通过点击添加组件到画布
|
|
|
- async clickCompToDesign(compKey: ICompKeys, cb?: (comp: DesignComp) => void) {
|
|
|
+ async clickCompToDesign(compKey: ICompKeys, cb?: (comp: DesignComp) => void, history=true) {
|
|
|
const page = this.controls.pageCtrl;
|
|
|
|
|
|
if (!page.currStreamCardId) {
|
|
|
- queenApi.messageError("请先选中一个卡片");
|
|
|
- return;
|
|
|
+ queenApi.messageError("请先选中一个卡片");
|
|
|
+ return;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
let yOffset = 0;
|
|
|
if (
|
|
|
page.state.currCompId != page.state.currStreamCardId &&
|
|
@@ -98,7 +167,7 @@ export const editActions = EditorModule.action({
|
|
|
}
|
|
|
this.controls.cropCtrl.close();
|
|
|
|
|
|
- this.history.submit();
|
|
|
+ if (history) this.history.submit();
|
|
|
},
|
|
|
|
|
|
// 通过点击添加组件到画布
|
|
@@ -164,7 +233,7 @@ export const editActions = EditorModule.action({
|
|
|
|
|
|
// 通过拖拽添加组件到画布
|
|
|
async dragCompToDesign(event: MouseEvent, compKey: string, data: any) {
|
|
|
- const currCardDom = this.store.currStreamCard.$el;
|
|
|
+
|
|
|
const page = this.controls.pageCtrl;
|
|
|
|
|
|
if (compKey == "CompCard") {
|
|
@@ -186,28 +255,32 @@ export const editActions = EditorModule.action({
|
|
|
}
|
|
|
|
|
|
setTimeout(() => {
|
|
|
- const cardPoints = this.helper.getPointOffsetWith(event, currCardDom);
|
|
|
- const { currComp } = this.store;
|
|
|
- let selCtrl = this.controls.selectCtrl;
|
|
|
-
|
|
|
- const w = this.controls.screenCtrl.getCurrScreenWidth();
|
|
|
-
|
|
|
- selCtrl.translate(
|
|
|
- this.helper.designSizeToPx(
|
|
|
- w / 2.0 - (currComp.layout.size?.[0] || w) / 2
|
|
|
- ),
|
|
|
- cardPoints.y
|
|
|
- );
|
|
|
-
|
|
|
- this.helper.extendStreamCard(page.state.currStreamCardId);
|
|
|
-
|
|
|
+ this.actions.centerLastComp(event)
|
|
|
+ const currComp = this.controls.pageCtrl.currComp;
|
|
|
if (compKey == "Text") {
|
|
|
this.actions.textFocus(currComp.id, true);
|
|
|
}
|
|
|
- this.controls.cropCtrl.close();
|
|
|
+
|
|
|
+ history.submit();
|
|
|
}, 100);
|
|
|
+ },
|
|
|
|
|
|
+ centerLastComp(event:MouseEvent) {
|
|
|
+ const currCardDom = this.store.currStreamCard.$el;
|
|
|
+ const cardPoints = this.helper.getPointOffsetWith(event, currCardDom);
|
|
|
+ const page = this.controls.pageCtrl;
|
|
|
+ let selCtrl = this.controls.selectCtrl;
|
|
|
+
|
|
|
+ const w = this.controls.screenCtrl.getCurrScreenWidth();
|
|
|
|
|
|
+ selCtrl.translate(
|
|
|
+ this.helper.designSizeToPx(
|
|
|
+ w / 2.0 - (page.currComp.layout.size?.[0] || w) / 2
|
|
|
+ ),
|
|
|
+ cardPoints.y
|
|
|
+ );
|
|
|
+ this.helper.extendStreamCard(page.state.currStreamCardId);
|
|
|
+ this.controls.cropCtrl.close();
|
|
|
},
|
|
|
|
|
|
// 添加组件到画布
|
|
@@ -231,46 +304,6 @@ export const editActions = EditorModule.action({
|
|
|
this.controls.editorCtrl.clickPickComp(compId);
|
|
|
},
|
|
|
|
|
|
- // 切换当前组件
|
|
|
- // pickComp(compId: string) {
|
|
|
- // const { store, helper } = this;
|
|
|
- // // 组合模式下,切换组件
|
|
|
- // // if (store.currCompId && store.groupModeStatus) {
|
|
|
- // // const enableGroupIds = helper
|
|
|
- // // .findParentComp(compId)
|
|
|
- // // ?.getChildIds() as string[];
|
|
|
- // // const comps = helper.getCompTrees(compId);
|
|
|
- // // while (comps.length) {
|
|
|
- // // const comp = comps.pop() as DesignComp;
|
|
|
- // // const index = store.groupIds.indexOf(comp.id);
|
|
|
- // // if (index >= 0) {
|
|
|
- // // const groupIds = [...store.groupIds];
|
|
|
- // // groupIds.splice(index, 1);
|
|
|
- // // store.setGroupIds(groupIds);
|
|
|
- // // } else if (enableGroupIds.includes(comp.id)) {
|
|
|
- // // store.groupIds.push(comp.id);
|
|
|
- // // return;
|
|
|
- // // }
|
|
|
- // // }
|
|
|
- // // return;
|
|
|
- // // }
|
|
|
- // // let nextCompId = compId;
|
|
|
- // // if (this.store.isEditPage) {
|
|
|
- // // const comps = this.helper.getCompTrees(compId);
|
|
|
- // // nextCompId = comps[1].id;
|
|
|
- // // }
|
|
|
- // if (this.store.currCompId == compId) {
|
|
|
- // return;
|
|
|
- // }
|
|
|
- // if (this.store.currComp.compKey == "Text") {
|
|
|
- // this.store.setTextEditingState(false);
|
|
|
- // }
|
|
|
- // this.store.setCurrComp(compId);
|
|
|
- // if (this.store.currCompId == this.store.currStreamCardId) {
|
|
|
- // this.controls.transferCtrl.destroy();
|
|
|
- // }
|
|
|
- // },
|
|
|
- // 切换到父组件
|
|
|
pickParentComp(compId: string) {
|
|
|
const page = this.controls.pageCtrl;
|
|
|
const parentComp = this.helper.findParentComp(compId);
|