base.ts 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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: "transparent",
  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. getChildIds() {
  36. if (this.state.children.length < 1) return [];
  37. return this.state.children.map(item=>item.id);
  38. }
  39. isPostioned() {
  40. return this.state.position == "absolute";
  41. }
  42. setHistory(h :HistoryController) {
  43. this.value.setHistory(h);
  44. this.state.setHistory(h);
  45. }
  46. override _calculateBounds() {
  47. const size = this.state.size;
  48. this._bounds.addFrame(this.transform, 0,0, size[0], size[1]);
  49. }
  50. createStyle() {
  51. const state = this.state;
  52. const style :any = {opacity: state.opacity}
  53. const size = state.size;
  54. const pos = state.pos;
  55. if (!state.visible) {
  56. style.display = "none";
  57. }
  58. if (state.clipPath) {
  59. style.clipPath = state.clipPath;
  60. }
  61. if (state.bgColor) {
  62. style.backgroundColor = state.bgColor;
  63. }
  64. if (state.radius) {
  65. style.borderRadius = state.radius
  66. }
  67. style.position = state.position;
  68. if (state.position == "relative") {
  69. if (size[0] > -1) {
  70. style.width = utils.designToNaturalSize(size[0]);
  71. }
  72. if (size[1] > -1) {
  73. style.height = utils.designToNaturalSize(size[1]);
  74. }
  75. style.left = utils.designToNaturalSize(pos[0]);
  76. style.top = utils.designToNaturalSize(pos[1]);
  77. } else {
  78. style.width = utils.designToNaturalSize(size[0]);
  79. style.height = utils.designToNaturalSize(size[1]);
  80. style.left = utils.designToNaturalSize(pos[0]);
  81. style.top = utils.designToNaturalSize(pos[1]);
  82. const pivot = state.pivots;
  83. style.transformOrigin = `${utils.designToNaturalSize(pivot[0])} ${utils.designToNaturalSize(pivot[1])}`
  84. style.transform = this.localTransform.getMatrixStr(utils.designSizeToPx);
  85. }
  86. return style;
  87. }
  88. fromJson(json:any) {
  89. this.id = json.id;
  90. this.compKey = json.compKey;
  91. this.thumbnail = json.thumbnail;
  92. this.title = json.title;
  93. this.value.fromJson(json.value);
  94. this.state.fromJson(json.state);
  95. }
  96. toJson() {
  97. const out = {
  98. id: this.id,
  99. title: this.title,
  100. thumbnail: this.thumbnail,
  101. compKey: this.compKey,
  102. value: this.value.toJson(),
  103. state: this.state.toJson(),
  104. }
  105. return out;
  106. }
  107. //初始化
  108. init() {
  109. this.state.onChildrenChanged(()=>{
  110. this._updateChildObjs();
  111. })
  112. this.state.onSizeChanged((size)=>{
  113. this.width = size[0];
  114. this.height = size[1];
  115. this.emit("transformChange");
  116. })
  117. this.state.onPosChanged((pos)=>{
  118. this.position.x = pos[0]
  119. this.position.y = pos[1]
  120. this.emit("transformChange");
  121. })
  122. this.state.onScaleChanged((scales)=>{
  123. this.scale.x = scales[0]
  124. this.scale.y = scales[1]
  125. this.emit("transformChange");
  126. })
  127. this.state.onRotationChanged((r)=>{
  128. this.rotation = r;
  129. this.emit("transformChange");
  130. })
  131. }
  132. _updateChildObjs() {
  133. const childrens = this.state.children as CompBase<any>[];
  134. this.removeChildren(0, this.children.length);
  135. childrens.forEach(c=>{
  136. this.addChild(c)
  137. })
  138. this.updateTransform();
  139. }
  140. }
  141. export {CompBase};