123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- import { isPc } from "@queenjs/utils";
- import { nanoid } from "nanoid";
- import { EditorModule } from "..";
- import { CompObject } from "../../controllers/SelectCtrl/compObj";
- import { Matrix } from "../../controllers/SelectCtrl/matrix";
- import { Design_Page_Size, Design_Pixel_Ratio } from "../../dicts/CompOptions";
- import { DesignComp } from "../../objects/DesignTemp/DesignComp";
- import { createCompStyle } from "../../objects/DesignTemp/creates/createCompStyle";
- import { Layout } from "../../typings";
- export const helpers = EditorModule.helper({
- pxToDesignSize(value: number) {
- return value * Design_Pixel_Ratio;
- },
- designSizeToPx(value: number) {
- return value / Design_Pixel_Ratio;
- },
- designToNaturalSize(
- value: number,
- options?: { adaptiveH?: boolean }
- ): string {
- if (options?.adaptiveH && !isPc()) {
- value =
- value *
- ((window.innerHeight * Design_Pixel_Ratio) / Design_Page_Size[1]);
- }
- return this.helper.designSizeToPx(value) + "px";
- },
- findComp(compId: string) {
- const compMap = this.controls.pageCtrl.compMap;
- if (!compMap) return;
- const comp = compMap[compId];
- if (comp) return comp;
- },
- isStreamCard(compId: string) {
- return this.controls.pageCtrl.streamCardIds.indexOf(compId) > -1;
- },
-
- isGroupCompChild(compId: string) {
- const comps = this.helper.getCompTrees(compId);
- comps.pop();
- while (comps.length) {
- const comp = comps.pop() as DesignComp;
- if (comp.compKey === "Group") {
- return true;
- }
- }
- return false;
- },
- isStreamCardChild(compId: string) {
- if (compId == "root" || this.helper.isStreamCard(compId)) {
- return false;
- }
- const cards = this.controls.pageCtrl.streamCardIds;
- let n = cards.length;
- const ctrl = this.controls.pageCtrl
- const compMap = ctrl.designData.compMap;
- while (n--) {
- const childs = compMap[cards[n]].children.default || [];
- if (childs.indexOf(compId) > -1) return true;
- }
- return false;
- },
- findParentComp(compId: string): DesignComp | undefined {
- const comp = this.helper.findComp(compId);
- if (comp) return this.helper.findComp(this.controls.pageCtrl.compPids[compId]);
- },
- findRootComp(): DesignComp | undefined {
- return this.controls.pageCtrl.designData.compMap?.["root"];
- },
- findCardAllChildren(index:number) {
-
- const ctrl = this.controls.pageCtrl
- const cardId = ctrl.streamCardIds[index];
- return ctrl.designData.compMap[cardId].children.default || [] as string[];
- },
- getCompCard(compId: string) {
- const paths: DesignComp[] = this.helper.getCompTrees(compId);
- return paths[1];
- },
- getCompWorlParentPos(compId: string, vx: number, vy: number) {
- const paths: DesignComp[] = this.helper.getCompTrees(compId);
- const m = new Matrix();
- let n = paths.length;
- let box = paths[1].$el.getBoundingClientRect();
- const s = this.controls.editorCtrl.state.scale;
- m.translate((box.left - vx) / s, (box.top - vy)/s);
-
- for (let i = 2; i < n - 1; i++) {
- //card开始遍历
- const m1 = new Matrix();
- m1.setMatrixStr(paths[i].layout.transformMatrix || "matrix(1,0,0,1,0,0)");
- m.append(m1);
- }
- return m;
- },
- getCompTrees(compId: string) {
- const ctrl = this.controls.pageCtrl;
- const comps: DesignComp[] = [];
- const getParentComp = (compId: string) => {
- const comp = this.helper.findComp(compId);
- if (comp) {
- comps.unshift(comp);
- getParentComp(ctrl.compPids[comp.id]);
- }
- };
- getParentComp(compId);
- return comps;
- },
- createStyle(layout: Partial<Layout> & { size: any[] }, comp: DesignComp) {
- return createCompStyle(this, layout, comp);
- },
- isCurrComp(compId: string) {
- return this.store.currCompId === compId;
- },
- isCustomChildComp(comp: DesignComp): boolean {
- const parentComp = this.helper.findParentComp(comp.id);
- if (!parentComp) return false;
- const i =
- parentComp.children.default?.findIndex((d) => d === comp.id) ?? -1;
- return i >= 0;
- },
- isCompCanDelete(compId: string): boolean {
- const page = this.controls.pageCtrl;
- return (
- this.helper.isStreamCardChild(compId) ||
- (this.helper.isStreamCard(compId) && page.streamCardIds.length > 1)
- );
- },
- isShowSaveComp(comp: DesignComp): boolean {
- if (!this.helper.isStreamCardChild(comp.id)) return false;
- return true;
- },
- clearUnusedComps(compMap: Record<string, DesignComp>, rootId = "root") {
- const used = new Set<string>();
- const getUsedIds = (ids: string[]) => {
- ids.forEach((id) => {
- const comp = compMap[id];
- if (!comp) return;
- used.add(id);
- getUsedIds(comp.getChildIds());
- });
- return used;
- };
- getUsedIds([rootId]);
- Object.keys(compMap).forEach((compId) => {
- if (!used.has(compId)) {
- delete compMap[compId];
- }
- });
- },
- clearProjectUnusedComps(compMap: Record<string, DesignComp>) {
- const used = new Set<string>();
- const getUsedIds = (ids: string[]) => {
- ids.forEach((id) => {
- const comp = compMap[id];
- if (!comp) return;
- used.add(id);
- getUsedIds(comp.getChildIds());
- });
- return used;
- };
- getUsedIds(["root"]);
- const ctrl = this.controls.pageCtrl;
- const compScreenMap = ctrl.designData.compScreenMap
- const keys = Object.keys(compScreenMap)
- keys.forEach(k=>{
- const card = compScreenMap[k];
- card.forEach(c=>{
- c.children.forEach(item=>{
- const comp = compMap[item.id];
- if (!comp) return;
- used.add(item.id);
- getUsedIds([item.id])
- })
- })
- })
-
- Object.keys(compMap).forEach((compId) => {
- if (!used.has(compId)) {
- delete compMap[compId];
- }
- });
- },
- getPointOffsetWith(e: MouseEvent, dom: HTMLElement) {
- const domRect = dom.getBoundingClientRect();
- return {
- x: e.clientX - domRect.left,
- y: e.clientY - domRect.top,
- };
- },
- getCardCompBound(compId: string) {
- const ctrl = this.controls.pageCtrl;
- const compMap = ctrl.designData.compMap;
- const c = compMap[compId];
- const obj = new CompObject(c);
- const bound = obj.getBox();
- return bound;
- },
- extendStreamCard(streamCardId: string) {
- if (!streamCardId) return 0;
- const ctrl = this.controls.pageCtrl;
- const compMap = ctrl.designData.compMap;
- const card = compMap[streamCardId];
- const size:any = card.layout.size.slice(0)
- if (this.controls.screenCtrl.isShortPage) {
- const h = this.controls.screenCtrl.getCurrScreenHeight();
- size[1] = h;
- card.layout.setSize(size);
- return h;
- }
-
- const childs = card.children.default || [];
- let maxH = 0,
- n = childs.length;
- while (n--) {
- const c = childs[n];
- const aabb = this.helper.getCardCompBound(c);
- maxH = Math.max(maxH, aabb.y + aabb.h);
- }
- maxH = this.helper.pxToDesignSize(maxH);
- if (childs.length < 1) {
- maxH = 200;
- }
- size[1] = maxH;
- card.layout.setSize(size);
- return maxH;
- },
- getCardNextPosY(cardId:string, itemWidth:number) {
- let yOffset = 0;
- if (cardId != this.store.currStreamCardId) {
- //const paths = this.helper.getCompTrees(cardId);
- const bound = this.helper.getCardCompBound(cardId);
- yOffset = bound.y + bound.h;
- } else {
- const currCard = this.helper.findComp(cardId) as DesignComp;
- //没有选中组件添加到当前卡片最后
- const children = currCard.children.default || [];
- let prevCompIndex = -1;
- if (this.store.currCompId != "" && this.store.currCompId != "root") {
- prevCompIndex = children.indexOf(this.store.currCompId);
- }
- if (prevCompIndex != -1) {
- const bound = this.helper.getCardCompBound(children[prevCompIndex]);
- yOffset = bound.y + bound.h;
- }
- }
- const w = this.controls.screenCtrl.getCurrScreenWidth();
- //添加组件到当前选中的组件下面
- const xOffset:number = this.helper.designSizeToPx(
- w / 2.0 - (itemWidth || w) / 2
- );
- return {x: xOffset, y: yOffset};
- },
- getClientId() {
- let clientId = undefined;
- try {
- const userInfo = JSON.parse(localStorage.getItem("userInfo") || "{}");
- clientId = userInfo._id || localStorage.getItem("clientId");
- } catch (error) {
- console.error(error);
- }
- if (!clientId) {
- clientId = nanoid();
- localStorage.setItem("clientId", clientId);
- }
- return clientId;
- },
- loadImage(url ) {
- return new Promise((res, rej)=>{
- let t = setTimeout(() => {
- t = null as any;
- rej("下载超时")
- }, 1000 * 10);
- const img = new Image();
- img.onload = ()=>{
- res(img);
- if (t) clearTimeout(t);
- }
- img.onerror = (e)=>{
- rej("下载失败!")
- }
- img.src = url;
- })
- }
- });
|