base.ts 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. import { Container } from "../../controllers/SelectCtrl/objects/container";
  2. import { RxValue } from "./RxValue";
  3. import { nanoid } from "nanoid";
  4. import { ICompKeys } from "../../typings";
  5. import { utils } from "./utils";
  6. import { HistoryController } from "./history";
  7. class CompBase<T extends object> extends Container {
  8. id = nanoid();
  9. title = "";
  10. thumbnail = "";
  11. compKey: ICompKeys = "StreamCard";
  12. value: ReturnType< typeof RxValue.create<T> >;
  13. state = RxValue.create({
  14. size: [0, 0],
  15. pos: [0,0],
  16. pivots: [0,0],
  17. scale: [1,1],
  18. rotation: 0,
  19. visible: true,
  20. opacity: 1,
  21. clipPath: "",
  22. bgColor: "",
  23. radius: "",
  24. position: "absolute" as "absolute" | "relative",
  25. children: [] as CompBase<any>[]
  26. });
  27. constructor(value:T) {
  28. super();
  29. this.value = RxValue.create(value);
  30. this.onCreated();
  31. }
  32. onCreated() {
  33. console.log("set compkey here!");
  34. }
  35. setHistory(h :HistoryController) {
  36. this.value.setHistory(h);
  37. this.state.setHistory(h);
  38. }
  39. override _calculateBounds() {
  40. const size = this.state.size;
  41. this._bounds.addFrame(this.transform, 0,0, size[0], size[1]);
  42. }
  43. createStyle() {
  44. const state = this.state;
  45. const style :any = {opacity: state.refOpacity()}
  46. const size = state.refSize();
  47. const pos = state.refPos();
  48. if (!state.refVisible()) {
  49. style.display = "none";
  50. }
  51. if (state.refClipPath()) {
  52. style.clipPath = state.refClipPath();
  53. }
  54. if (state.refBgColor()) {
  55. style.backgroundColor = state.refBgColor();
  56. }
  57. if (state.refRadius()) {
  58. style.borderRadius = state.refRadius()
  59. }
  60. style.position = state.refPosition();
  61. if (state.refPosition() == "relative") {
  62. if (size[0] > -1) {
  63. style.width = utils.designToNaturalSize(size[0]);
  64. }
  65. if (size[1] > -1) {
  66. style.height = utils.designToNaturalSize(size[1]);
  67. }
  68. style.left = utils.designToNaturalSize(pos[0]);
  69. style.top = utils.designToNaturalSize(pos[1]);
  70. } else {
  71. style.width = utils.designToNaturalSize(size[0]);
  72. style.height = utils.designToNaturalSize(size[1]);
  73. style.left = utils.designToNaturalSize(pos[0]);
  74. style.top = utils.designToNaturalSize(pos[1]);
  75. const pivot = state.refPivots();
  76. style.transformOrigin = `${utils.designToNaturalSize(pivot[0])} ${utils.designToNaturalSize(pivot[1])}`
  77. style.transform = this.localTransform.getMatrixStr(utils.designSizeToPx);
  78. }
  79. return style;
  80. }
  81. fromJson(json:any) {
  82. this.id = json.id;
  83. this.compKey = json.compKey;
  84. this.thumbnail = json.thumbnail;
  85. this.title = json.title;
  86. this.value.fromJson(json.value);
  87. this.state.fromJson(json.state);
  88. }
  89. toJson() {
  90. const out = {
  91. id: this.id,
  92. title: this.title,
  93. thumbnail: this.thumbnail,
  94. compKey: this.compKey,
  95. value: this.value.toJson(),
  96. state: this.state.toJson(),
  97. }
  98. return out;
  99. }
  100. //初始化
  101. init() {
  102. this.state.onChildrenChanged(()=>{
  103. this._updateChildObjs();
  104. })
  105. this.state.onSizeChanged((size)=>{
  106. this.width = size[0];
  107. this.height = size[1];
  108. this.emit("transformChange");
  109. })
  110. this.state.onPosChanged((pos)=>{
  111. this.position.x = pos[0]
  112. this.position.y = pos[1]
  113. this.emit("transformChange");
  114. })
  115. this.state.onScaleChanged((scales)=>{
  116. this.scale.x = scales[0]
  117. this.scale.y = scales[1]
  118. this.emit("transformChange");
  119. })
  120. this.state.onRotationChanged((r)=>{
  121. this.rotation = r;
  122. this.emit("transformChange");
  123. })
  124. }
  125. _updateChildObjs() {
  126. const childrens = this.state.children as CompBase<any>[];
  127. this.removeChildren(0, this.children.length);
  128. childrens.forEach(c=>{
  129. this.addChild(c)
  130. })
  131. this.updateTransform();
  132. }
  133. }
  134. export {CompBase};