index.ts 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. import { eachValuesAndPathsDeep } from "@/utils";
  2. import { set } from "lodash";
  3. import { nanoid } from "nanoid";
  4. import { ModuleControl } from "queenjs";
  5. import { CompPageObj } from "../../components/CompUI/basicUI/Page";
  6. import { EditorModule } from "../../module";
  7. import { DesignTemp } from "../../objects/DesignTemp";
  8. import { DesignComp } from "../../objects/DesignTemp/DesignComp";
  9. import { createObj, history } from "../../objects/DesignTemp/factory";
  10. import { ICompKeys } from "../../typings";
  11. import { RxValue } from "../ReactCtrl/rxValue";
  12. export class PageCtrl extends ModuleControl<EditorModule> {
  13. state = RxValue.create({
  14. currCompId: "root",
  15. currStreamCardId: "",
  16. rootId: "",
  17. designId: "",
  18. title: ''
  19. }, history)
  20. get currStreamCardId() {
  21. return this.state.currStreamCardId;
  22. }
  23. get currCompId() {
  24. return this.state.currCompId;
  25. }
  26. initEvent() {
  27. const updatePid = (pid:string)=>{
  28. const comps = this.compMap[pid]?.children.default || [];
  29. comps.forEach(c=>{
  30. this.setCompPid(c, pid)
  31. updatePid(c);
  32. })
  33. }
  34. this.rootPage.children.default?.forEach(cid=>{
  35. const card = this.compMap[cid];
  36. let first = true;
  37. this.setCompPid(cid, this.rootPage.id);
  38. updatePid(this.rootPage.id)
  39. card.children.onDefaultChanged((childs)=>{
  40. if (first) {
  41. first = false;
  42. return;
  43. }
  44. childs.forEach(c=>{
  45. this.setCompPid(c, card.id);
  46. updatePid(c)
  47. })
  48. this.helper.extendStreamCard(cid);
  49. })
  50. })
  51. }
  52. designData = {} as DesignTemp
  53. compPids = {} as Record<string, string>;
  54. toJson() {
  55. const out:any = {
  56. _id: this.designData._id,
  57. version: this.designData.version,
  58. title: this.designData.title,
  59. desc: this.designData.desc,
  60. pageStyle: this.designData.pageStyle,
  61. content: this.designData.content,
  62. thumbnail: this.designData.thumbnail,
  63. compScreenMap: this.designData.compScreenMap,
  64. }
  65. const keys = Object.keys(this.designData.compMap);
  66. const compMap :any = {};
  67. keys.forEach(k=>{
  68. compMap[k] = this.designData.compMap[k].toJson?.();
  69. })
  70. out.compMap = compMap;
  71. console.log(out);
  72. return out;
  73. }
  74. setCompPid(compId: string, pid: string) {
  75. this.compPids[compId] = pid;
  76. }
  77. get compMap() {
  78. return this.designData.compMap || {};
  79. }
  80. get currComp() {
  81. return this.compMap[this.state.currCompId];
  82. }
  83. get currStreamCard() {
  84. return this.compMap[this.state.currStreamCardId];
  85. }
  86. get streamCardIds(): string[] {
  87. return this.rootPage?.children.default || [];
  88. }
  89. setDesignData(data: Partial<DesignTemp>) {
  90. history.enable = false;
  91. this.designData = new DesignTemp(data);
  92. this.state.title = data.title || '';
  93. //设置组件父子关系
  94. const ite = (root:any)=> {
  95. const cards = root.children?.default || [];
  96. cards.forEach((c:string)=>{
  97. this.setCompPid(c, root.id);
  98. const r = this.compMap[c];
  99. if (r) {
  100. ite(r);
  101. }
  102. })
  103. }
  104. ite(this.designData.compMap.root);
  105. this.state.rootId = "root";
  106. this.state.currStreamCardId = this.streamCardIds[0];
  107. this.initEvent();
  108. this.controls.propsCtrl.state.propId = "root";
  109. const root = this.rootPage;
  110. this.controls.screenCtrl.state.screen.useFor= root.value.useFor as any || "mobile"
  111. this.controls.screenCtrl.state.screen.pageMode = root.value.pageMode as any || "long"
  112. this.controls.screenCtrl.state.screen.pageSizeType = root.value.pageSizeType as any || "normal"
  113. if (this.store.isEditMode) {
  114. this.controls.screenCtrl.updateAdapterState();
  115. }
  116. setTimeout(() => {
  117. history.clear();
  118. history.enable = true;
  119. }, 1000);
  120. }
  121. get rootPage() {
  122. return this.compMap[this.state.rootId] as CompPageObj;
  123. }
  124. setCurrComp(compId: string) {
  125. if (compId == "") compId = "root";
  126. this.state.setCurrCompId(compId);
  127. if (compId == "root") {
  128. return;
  129. }
  130. const comps = this.helper.getCompTrees(compId);
  131. let cardId = comps[1]?.id || "";
  132. if (cardId) {
  133. if (this.helper.isStreamCard(compId)) {
  134. cardId = compId;
  135. }
  136. this.state.setCurrStreamCardId(cardId);
  137. }
  138. }
  139. findParentComp(compId: string): DesignComp | undefined {
  140. const comp = this.compMap[compId];
  141. if (comp) return this.compMap[this.compPids[compId]];
  142. }
  143. deleteComp(compId: string) {
  144. const parentComp = this.findParentComp(compId);
  145. let deleteOK = false;
  146. if (parentComp) {
  147. const ids = [...(parentComp.children.default || [])];
  148. // 只能删除children.default中的组件
  149. if (ids?.includes(compId)) {
  150. const index = ids.findIndex((id) => id === compId);
  151. if (index >= 0) {
  152. ids.splice(index, 1);
  153. parentComp.children.setDefault(ids);
  154. deleteOK = true;
  155. }
  156. }
  157. }
  158. if (deleteOK) {
  159. delete this.compPids[compId];
  160. }
  161. }
  162. insertDesignCard(index?: number) {
  163. const card = createObj({compKey: "Container"}, false);
  164. if(this.controls.screenCtrl.state.screen.useFor == 'pc'){
  165. card.layout.size = [2732, 1536]
  166. }
  167. this.setCompPid(card.id, this.rootPage.id);
  168. this.compMap[card.id] = card;
  169. const childIds = [...this.rootPage.children.default];
  170. index === undefined && (index = childIds.length);
  171. childIds.splice(index, 0, card.id);
  172. this.rootPage.children.setDefault(childIds);
  173. card.children.onDefaultChanged(()=>{
  174. this.helper.extendStreamCard(card.id);
  175. })
  176. return card.id;
  177. }
  178. insertCompContainer(compKey: ICompKeys, container: DesignComp) {
  179. const compId = this.controls.compUICtrl.createCompId(compKey);
  180. this.setCompPid(compId, container.id);
  181. const childIds = [...(container.children.default || [])];
  182. childIds.push(compId);
  183. container.children.setDefault(childIds);
  184. return compId;
  185. }
  186. moveComp(selIndex: number, targetIndex: number) {
  187. const pageCompIds = [...this.streamCardIds];
  188. const [selComp] = pageCompIds.splice(selIndex, 1);
  189. pageCompIds.splice(targetIndex, 0, selComp);
  190. this.rootPage.children.setDefault(pageCompIds );
  191. history.submit();
  192. }
  193. addUserCard(detail: any) {
  194. const { compMap } = this.controls.pageCtrl.designData;
  195. const idMap = new Map<string, string>();
  196. const nextCompMap: Record<string, DesignComp> = {};
  197. Object.entries(detail.compMap as Record<string, DesignComp>).forEach(
  198. ([key, comp]) => {
  199. if (key === "root") {
  200. idMap.set(key, nanoid());
  201. comp.title = detail.title;
  202. comp.thumbnail = detail.thumbnail;
  203. }
  204. const newPid = idMap.get(key) || nanoid();
  205. idMap.set(key, newPid);
  206. comp.id = newPid;
  207. eachValuesAndPathsDeep(
  208. comp.children,
  209. (v) => typeof v === "string",
  210. (v, paths) => {
  211. const id = idMap.get(v) || nanoid();
  212. idMap.set(v, id);
  213. this.setCompPid(id, newPid)
  214. set(comp.children, paths, id);
  215. }
  216. );
  217. nextCompMap[newPid] = createObj(comp);
  218. }
  219. );
  220. Object.assign(compMap, nextCompMap);
  221. return nextCompMap[idMap.get("root") as string];
  222. }
  223. setDesignThumbnail(url: string) {
  224. this.designData.thumbnail = url;
  225. }
  226. }