factory.ts 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. import { CompArcObj } from "../../components/CompUI/basicUI/Arc";
  2. import { CompCardObj } from "../../components/CompUI/basicUI/Container";
  3. import { CompCurveObj } from "../../components/CompUI/basicUI/Curve";
  4. import { CompEllipseObj } from "../../components/CompUI/basicUI/Ellipse";
  5. import { CompGroupObj } from "../../components/CompUI/basicUI/Group";
  6. import { CompImageObj } from "../../components/CompUI/basicUI/Image2";
  7. import { CompLineObj } from "../../components/CompUI/basicUI/Line";
  8. import { CompMapObj } from "../../components/CompUI/basicUI/Map";
  9. import { CompPageObj } from "../../components/CompUI/basicUI/Page";
  10. import { CompPolygonObj } from "../../components/CompUI/basicUI/Polygon";
  11. import { CompPolygonNormalObj } from "../../components/CompUI/basicUI/PolygonNormal";
  12. import { CompRectObj } from "../../components/CompUI/basicUI/Rectage";
  13. import { CompTextObj } from "../../components/CompUI/basicUI/Text";
  14. import { CompTriangleObj } from "../../components/CompUI/basicUI/Triangle";
  15. import { CompVideoObj } from "../../components/CompUI/basicUI/Video";
  16. import { CompWeb3DObj } from "../../components/CompUI/basicUI/Web3D";
  17. import { HistoryController } from "../../controllers/ReactCtrl/history";
  18. import { ICompKeys } from "../../typings";
  19. import { DesignComp } from "./DesignComp";
  20. const history = new HistoryController();
  21. export function createObj( data:any, init = true) {
  22. const compKey = data.compKey as ICompKeys
  23. let obj = {} as DesignComp;
  24. switch(compKey) {
  25. case "Container":
  26. obj = new CompCardObj();
  27. break;
  28. case "Image":
  29. obj = new CompImageObj();
  30. break;
  31. case "Text":
  32. obj = new CompTextObj();
  33. break;
  34. case "Group":
  35. obj = new CompGroupObj();
  36. break;
  37. case "Page":
  38. obj = new CompPageObj();
  39. break;
  40. case "Video":
  41. obj = new CompVideoObj();
  42. break;
  43. case "Web3D":
  44. obj = new CompWeb3DObj();
  45. break;
  46. case "Rectage":
  47. obj = new CompRectObj();
  48. break;
  49. case "Line":
  50. obj = new CompLineObj();
  51. break;
  52. case "Arc":
  53. obj = new CompArcObj();
  54. break;
  55. case "Ellipse":
  56. obj = new CompEllipseObj();
  57. break;
  58. case "Triangle":
  59. obj = new CompTriangleObj();
  60. break;
  61. case "Polygon":
  62. obj = new CompPolygonObj();
  63. break;
  64. case "PolygonNormal":
  65. obj = new CompPolygonNormalObj();
  66. break;
  67. case "Curve":
  68. obj = new CompCurveObj();
  69. break;
  70. case "Map":
  71. obj = new CompMapObj()
  72. break;
  73. }
  74. obj.compKey = compKey;
  75. obj.value.setHistory( history );
  76. obj.layout.setHistory(history);
  77. obj.layout.background.setHistory(history);
  78. obj.layout.border.setHistory(history);
  79. obj.children.setHistory(history);
  80. if (init) obj.fromJson(data);
  81. return obj;
  82. }
  83. export {history};