index.ts 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. import { EditorModule } from "..";
  2. import { DesignTemp } from "../../objects/DesignTemp";
  3. import { EditorMode } from "../../typings";
  4. export const store = EditorModule.store({
  5. state: () => ({
  6. textEditingState: false,
  7. mode: "editPage" as EditorMode,
  8. isWk: false, //作品集内作品
  9. croppImage: "", //裁剪图片
  10. compEditMode: false, //组件编辑模式
  11. compEditReslut: 0, // -1 取消, 1 确定
  12. tplCategory: undefined,
  13. filesCacheUrl: new Map(),
  14. }),
  15. getters: {
  16. currCompId() {
  17. return this.controls.pageCtrl.state.currCompId;
  18. },
  19. isEditMode(): boolean {
  20. return !this.store.isPreview && !this.store.isDisplay;
  21. },
  22. isEditPage(state) {
  23. return state.mode === "editPage";
  24. },
  25. isEditComp(state) {
  26. return state.mode === "editComp";
  27. },
  28. isPreview(state) {
  29. return state.mode === "preview";
  30. },
  31. isDisplay(state) {
  32. return state.mode === "display";
  33. },
  34. compMap(state) {
  35. return this.controls.pageCtrl.compMap;
  36. },
  37. currComp(state) {
  38. return this.controls.pageCtrl.currComp;
  39. },
  40. currStreamCard(state) {
  41. return this.controls.pageCtrl.currStreamCard;
  42. },
  43. previewImageList(state) {
  44. const res: string[] = [];
  45. let scope = this;
  46. function deepChild(item: any) {
  47. if (typeof item == "string") {
  48. const comp = scope.controls.pageCtrl.compMap[item];
  49. if (comp.compKey === "Image") {
  50. res.push(comp.value.url);
  51. } else if (comp.children) {
  52. deepChild(comp.children);
  53. }
  54. } else if (item instanceof Object) {
  55. if (item instanceof Array) {
  56. item.forEach((d) => {
  57. deepChild(d);
  58. });
  59. } else {
  60. Object.values(item).forEach((d) => {
  61. deepChild(d);
  62. });
  63. }
  64. }
  65. }
  66. deepChild(this.controls.pageCtrl.compMap["root"].children);
  67. return res;
  68. },
  69. },
  70. actions: {
  71. setCompData(id: string, data: any) {
  72. this.controls.pageCtrl.compMap[id] = data;
  73. },
  74. setMode(v: EditorMode) {
  75. this.store.mode = v;
  76. },
  77. setWk(v: boolean) {
  78. this.store.isWk = v;
  79. },
  80. setTplCategory(data) {
  81. this.store.tplCategory = data;
  82. },
  83. setDesignData(data: Partial<DesignTemp>) {
  84. this.controls.pageCtrl.designData = new DesignTemp(data);
  85. },
  86. setTextEditingState(state: boolean) {
  87. this.store.textEditingState = state;
  88. },
  89. },
  90. });