|
@@ -1,18 +1,21 @@
|
|
|
-import { Effect, ModuleControl } from "queenjs";
|
|
|
+import { isPc } from "@queenjs/utils";
|
|
|
+import { ModuleControl } from "queenjs";
|
|
|
import { EditorModule } from "../../module";
|
|
|
-import { reactive } from "vue";
|
|
|
+import { CardState } from "../../objects/DesignTemp";
|
|
|
import { DesignComp } from "../../objects/DesignTemp/DesignComp";
|
|
|
import { RxValue } from "../ReactCtrl/rxValue";
|
|
|
-import { CardState } from "../../objects/DesignTemp";
|
|
|
-import { isPc } from "@queenjs/utils";
|
|
|
|
|
|
+// 1366×768
|
|
|
const PCConst = {
|
|
|
- minRate: 0.42,
|
|
|
- maxRate: 0.8,
|
|
|
- height: 1520,
|
|
|
- factor: 0.8067,
|
|
|
- widths: [1900, 2356, 2920],
|
|
|
- ranges: [[0.64537, 0.8], [0.52063, 0.64537], [0.42, 0.52063]]
|
|
|
+ // minRate: 0.42,
|
|
|
+ // maxRate: 0.8,
|
|
|
+ width: 2732,
|
|
|
+ height: 1536,
|
|
|
+ // width: 1366,
|
|
|
+ // height: 768,
|
|
|
+ // factor: 0.8067,
|
|
|
+ // widths: [1900, 2356, 2920],
|
|
|
+ // ranges: [[0.64537, 0.8], [0.52063, 0.64537], [0.42, 0.52063]]
|
|
|
}
|
|
|
|
|
|
const MobileConst = {
|
|
@@ -20,19 +23,19 @@ const MobileConst = {
|
|
|
maxRate: 0.75,
|
|
|
width: 750,
|
|
|
factor: 0.84312,
|
|
|
- heights: [1000, 1186, 1406],
|
|
|
- ranges: [[0.63234, 0.75], [0.5331387120830735, 0.632340125298328], [0.4495, 0.5331387120830735]]
|
|
|
+ heights: [1000, 1476],
|
|
|
+ ranges: [[0.63234, 0.75], [0.5079365079365079, 0.632340125298328]]
|
|
|
}
|
|
|
+const AllSize = ["short", "normal"];
|
|
|
|
|
|
-const AllSize = ["short","normal", "long"];
|
|
|
+// export const MobleScreenNames = ["短屏", "普通", "长屏幕"];
|
|
|
|
|
|
-export const MobleScreenNames = ["短屏", "普通", "长屏幕"];
|
|
|
export class ScreenCtrl extends ModuleControl<EditorModule> {
|
|
|
state = RxValue.create({
|
|
|
screen: {
|
|
|
useFor: "mobile" as "mobile" | "pc", // pc 还是 手机
|
|
|
pageMode: "long" as "long" | "short", //长页面还是短页面(一屏高度)
|
|
|
- pageSizeType: "normal" as "normal" | "long" | "short", //适配类型 长屏 正常 短屏幕
|
|
|
+ pageSizeType: "normal" as "normal" | "short", //适配类型 正常 短屏幕
|
|
|
},
|
|
|
docWidth: window.innerWidth, //实际屏幕宽度
|
|
|
docHeight: window.innerHeight, //实际屏幕高度
|
|
@@ -46,16 +49,18 @@ export class ScreenCtrl extends ModuleControl<EditorModule> {
|
|
|
get isLongPage() {
|
|
|
return this.state.screen.pageMode == "long";
|
|
|
}
|
|
|
+
|
|
|
+ get isMobileDesign(){
|
|
|
+ return this.state.screen.useFor == "mobile";
|
|
|
+ }
|
|
|
+
|
|
|
get currScreenId() {
|
|
|
return this.state.screen.useFor + this.state.screen.pageMode + this.state.screen.pageSizeType;
|
|
|
}
|
|
|
|
|
|
initEvent() {
|
|
|
-
|
|
|
window.addEventListener("resize", ()=>{
|
|
|
- if ( !this.store.isDisplay ) return;
|
|
|
-
|
|
|
- console.log("apply screen");
|
|
|
+ if (!this.store.isDisplay || this.state.screen.useFor =='pc') return;
|
|
|
this.applyScreen();
|
|
|
})
|
|
|
|
|
@@ -63,9 +68,9 @@ export class ScreenCtrl extends ModuleControl<EditorModule> {
|
|
|
this.state.onScreenChanged(()=>this.updateAdapterState());
|
|
|
|
|
|
const {factor, sizes, ranges} = this.createSteps(MobileConst.width, MobileConst.minRate, MobileConst.maxRate)
|
|
|
- console.log("range=>", ranges, factor, sizes);
|
|
|
+ // console.log("range=>", ranges, factor, sizes);
|
|
|
|
|
|
- console.log( this.getRightScreenId() );
|
|
|
+ // console.log( this.getRightScreenId() );
|
|
|
}
|
|
|
|
|
|
createSteps(base: number, min:number, max:number, size = 3) {
|
|
@@ -91,11 +96,7 @@ export class ScreenCtrl extends ModuleControl<EditorModule> {
|
|
|
return {factor, sizes, ranges}
|
|
|
}
|
|
|
|
|
|
- getAdapterIndex() {
|
|
|
- if(this.state.screen.pageMode == "long") return 1;
|
|
|
- return ["short", "normal", "long"].indexOf(this.state.screen.pageSizeType)
|
|
|
- }
|
|
|
-
|
|
|
+ // 手机 翻页
|
|
|
applyScreen() {
|
|
|
const option = this.getRightScreenId();
|
|
|
if ( this.isScreenExit(option.sreenId) ) {
|
|
@@ -130,25 +131,33 @@ export class ScreenCtrl extends ModuleControl<EditorModule> {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
getRightScreenId() {
|
|
|
- const currScreen = isPc() ? "pc" : "mobile";
|
|
|
- const rate = isPc() ? window.innerHeight / window.innerWidth : window.innerWidth / window.innerHeight;
|
|
|
+ // const currScreen = isPc() ? "pc" : "mobile";
|
|
|
+ const currScreen = this.store.rootPage?.value.useFor;
|
|
|
+ if(currScreen == 'pc') {
|
|
|
+ const sreenId = currScreen + this.state.screen.pageMode + "normal";
|
|
|
+ return {
|
|
|
+ device: currScreen,
|
|
|
+ pageMode: this.state.screen.pageMode,
|
|
|
+ sreenId: sreenId,
|
|
|
+ };
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
- const sizes = currScreen == "pc" ? PCConst.ranges : MobileConst.ranges;
|
|
|
- let n = 3;
|
|
|
+ const rate = isPc() ? window.innerHeight / window.innerWidth : window.innerWidth / window.innerHeight;
|
|
|
+ const sizes = MobileConst.ranges;
|
|
|
+
|
|
|
let index = 1;
|
|
|
- while(n--) {
|
|
|
- const m = sizes[n]
|
|
|
- if (rate >= m[0]) {
|
|
|
- index = n;
|
|
|
- }
|
|
|
+ if (rate > sizes[1][1]) {
|
|
|
+ index = 0;
|
|
|
}
|
|
|
+
|
|
|
if (this.state.screen.pageMode == "long") index = 1;
|
|
|
|
|
|
console.log("rate=>", rate);
|
|
|
|
|
|
- const sreenId = currScreen + this.state.screen.pageMode + ["short", "normal", "long"][index];
|
|
|
+ const sreenId = currScreen + this.state.screen.pageMode + AllSize[index];
|
|
|
return {sreenId, index, device: currScreen, pageMode: this.state.screen.pageMode};
|
|
|
|
|
|
}
|
|
@@ -173,15 +182,24 @@ export class ScreenCtrl extends ModuleControl<EditorModule> {
|
|
|
this.store.rootPage.layout.size[0] = this.getCurrScreenWidth();
|
|
|
this.store.rootPage.layout.size[1] = this.getCurrScreenHeight();
|
|
|
|
|
|
- this.state.safeFactor = this.state.screen.useFor == "pc" ? PCConst.factor : MobileConst.factor;
|
|
|
+ this.state.safeFactor = this.state.screen.useFor == "pc" ? 1 : MobileConst.factor;
|
|
|
|
|
|
this.state.currScreenId = this.currScreenId;
|
|
|
}
|
|
|
- isScreenExit(screenId:string) {
|
|
|
- return !!this.store.designData.compScreenMap[screenId] &&
|
|
|
- this.store.designData.compScreenMap[screenId].length > 0 &&
|
|
|
- this.store.designData.compScreenMap[screenId][1].children.length > 0;
|
|
|
- }
|
|
|
+
|
|
|
+ isScreenExit(screenId: string) {
|
|
|
+ let res = false;
|
|
|
+ const curr = this.store.designData.compScreenMap[screenId];
|
|
|
+ if (!curr) return false;
|
|
|
+ for (let index = 0; index < curr.length; index++) {
|
|
|
+ const element = curr[index];
|
|
|
+ if (element?.children.length > 0) {
|
|
|
+ res = true;
|
|
|
+ return res;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return res;
|
|
|
+ }
|
|
|
|
|
|
restorScreenPage(screenId = "") {
|
|
|
if (!this.store.rootPage) return;
|
|
@@ -243,8 +261,13 @@ export class ScreenCtrl extends ModuleControl<EditorModule> {
|
|
|
return screenCards;
|
|
|
}
|
|
|
|
|
|
+ getAdapterIndex() {
|
|
|
+ if(this.state.screen.pageMode == "long") return 1;
|
|
|
+ return ["short", "normal", "long"].indexOf(this.state.screen.pageSizeType)
|
|
|
+ }
|
|
|
+
|
|
|
getCurrScreenHeight() {
|
|
|
- const pageValue = this.state
|
|
|
+ const pageValue = this.state;
|
|
|
if ( pageValue.screen.useFor == "pc") {
|
|
|
return PCConst.height;
|
|
|
}
|
|
@@ -253,10 +276,9 @@ export class ScreenCtrl extends ModuleControl<EditorModule> {
|
|
|
}
|
|
|
|
|
|
getCurrScreenWidth() {
|
|
|
- const currScreenIndex = this.getAdapterIndex();
|
|
|
- const pageValue = this.state
|
|
|
+ const pageValue = this.state;
|
|
|
if ( pageValue.screen.useFor == "pc" ) {
|
|
|
- return PCConst.widths[currScreenIndex];
|
|
|
+ return PCConst.width;
|
|
|
}
|
|
|
return MobileConst.width;
|
|
|
}
|