index.ts 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. import { ModuleControl } from "queenjs";
  2. import { onMounted, ref } from "vue";
  3. import { EditorModule } from "../../module";
  4. import { RxValue } from "../ReactCtrl/rxValue";
  5. import { ObjsContainer } from "../SelectCtrl/ObjsContainer";
  6. import { DesignTemp } from "../../objects/DesignTemp";
  7. import { CompPageObj } from "../../components/CompUI/basicUI/Page";
  8. import { createObj, history } from "../../objects/DesignTemp/factory";
  9. import { ICompKeys } from "../../typings";
  10. import { DesignComp } from "../../objects/DesignTemp/DesignComp";
  11. import { nanoid } from "nanoid";
  12. import { eachValuesAndPathsDeep } from "@/utils";
  13. import { set } from "lodash";
  14. export class PageCtrl extends ModuleControl<EditorModule> {
  15. state = RxValue.create({
  16. currCompId: "root",
  17. currStreamCardId: "",
  18. rootId: "",
  19. designId: "",
  20. title: ''
  21. }, history)
  22. get currStreamCardId() {
  23. return this.state.currStreamCardId;
  24. }
  25. get currCompId() {
  26. return this.state.currCompId;
  27. }
  28. initEvent() {
  29. const updatePid = (pid:string)=>{
  30. const comps = this.compMap[pid].children.default;
  31. comps.forEach(c=>{
  32. this.setCompPid(c, pid)
  33. updatePid(c);
  34. })
  35. }
  36. this.rootPage.children.default.forEach(cid=>{
  37. const card = this.compMap[cid];
  38. let first = true;
  39. this.setCompPid(cid, this.rootPage.id);
  40. updatePid(this.rootPage.id)
  41. card.children.onDefaultChanged((childs)=>{
  42. if (first) {
  43. first = false;
  44. return;
  45. }
  46. childs.forEach(c=>{
  47. this.setCompPid(c, card.id);
  48. updatePid(c)
  49. })
  50. this.helper.extendStreamCard(cid);
  51. })
  52. })
  53. }
  54. designData = {} as DesignTemp
  55. compPids = {} as Record<string, string>;
  56. toJson() {
  57. const out:any = {
  58. _id: this.designData._id,
  59. version: this.designData.version,
  60. title: this.designData.title,
  61. desc: this.designData.desc,
  62. pageStyle: this.designData.pageStyle,
  63. content: this.designData.content,
  64. thumbnail: this.designData.thumbnail,
  65. compScreenMap: this.designData.compScreenMap,
  66. }
  67. const keys = Object.keys(this.designData.compMap);
  68. const compMap :any = {};
  69. keys.forEach(k=>{
  70. compMap[k] = this.designData.compMap[k].toJson();
  71. })
  72. out.compMap = compMap;
  73. console.log(out);
  74. return out;
  75. }
  76. setCompPid(compId: string, pid: string) {
  77. this.compPids[compId] = pid;
  78. }
  79. get compMap() {
  80. return this.designData.compMap || {};
  81. }
  82. get currComp() {
  83. return this.compMap[this.state.currCompId];
  84. }
  85. get currStreamCard() {
  86. return this.compMap[this.state.currStreamCardId];
  87. }
  88. get streamCardIds(): string[] {
  89. return this.rootPage?.children.default || [];
  90. }
  91. setDesignData(data: Partial<DesignTemp>) {
  92. history.enable = false;
  93. this.designData = new DesignTemp(data);
  94. this.state.title = data.title || '';
  95. //设置组件父子关系
  96. const ite = (root:any)=> {
  97. const cards = root.children?.default || [];
  98. cards.forEach((c:string)=>{
  99. this.setCompPid(c, root.id);
  100. const r = this.compMap[c];
  101. if (r) {
  102. ite(r);
  103. }
  104. })
  105. }
  106. ite(this.designData.compMap.root);
  107. this.state.rootId = "root";
  108. this.state.currStreamCardId = this.streamCardIds[0];
  109. this.initEvent();
  110. this.controls.propsCtrl.state.propId = "root";
  111. const root = this.rootPage;
  112. this.controls.screenCtrl.state.screen.useFor= root.value.useFor as any || "mobile"
  113. this.controls.screenCtrl.state.screen.pageMode = root.value.pageMode as any || "long"
  114. this.controls.screenCtrl.state.screen.pageSizeType = root.value.pageSizeType as any || "normal"
  115. if (this.store.isEditMode) {
  116. this.controls.screenCtrl.updateAdapterState();
  117. }
  118. setTimeout(() => {
  119. history.clear();
  120. history.enable = true;
  121. }, 1000);
  122. }
  123. get rootPage() {
  124. return this.compMap[this.state.rootId] as CompPageObj;
  125. }
  126. setCurrComp(compId: string) {
  127. if (compId == "") compId = "root";
  128. this.state.setCurrCompId(compId);
  129. if (compId == "root") {
  130. return;
  131. }
  132. const comps = this.helper.getCompTrees(compId);
  133. let cardId = comps[1]?.id || "";
  134. if (this.helper.isStreamCard(compId)) {
  135. cardId = compId;
  136. }
  137. this.state.setCurrStreamCardId(cardId);
  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. }