DesignComp.ts 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. import { nanoid } from "nanoid";
  2. import { ICompKeys } from "../../typings";
  3. import { RxValue } from "../../controllers/ReactCtrl/rxValue";
  4. import { Events } from "queenjs"
  5. import { Matrix } from "../../controllers/SelectCtrl/matrix";
  6. export type DesignComp = DesignCompObj<any>
  7. export class DesignCompObj<T extends {[key:string]: any}> extends Events {
  8. // declare pid: string; // pid 作为前端临时数据,不存储到服务器,在初始化时关联
  9. declare $el: HTMLElement; // $el 映射dom
  10. id = nanoid();
  11. title = "";
  12. thumbnail = "";
  13. compKey: ICompKeys = "Text";
  14. declare value: ReturnType< typeof RxValue.create<T> >
  15. layout = RxValue.create({
  16. visible: true,
  17. size: [200, 200] as [number, number, { unit?: "px" | "%" }?], // width height wUnit hUnit
  18. border: RxValue.create({
  19. style: "",
  20. width: 0,
  21. color: "",
  22. radius: 0,
  23. radius2: 0,
  24. }),
  25. transformMatrix: "matrix(1,0,0, 1,0,0)",
  26. opacity: 1,
  27. locked: false,
  28. background: RxValue.create({
  29. color: ""
  30. }),
  31. anim: "",
  32. cusName: ""
  33. });
  34. children = RxValue.create({
  35. default: [] as string[]
  36. })
  37. constructor() {
  38. super();
  39. this.onCreated();
  40. }
  41. onCreated() {
  42. console.log("please override me");
  43. }
  44. fromJson(data:any) {
  45. this.id = data.id;
  46. this.title = data.title;
  47. this.thumbnail = data.thumbnail;
  48. this.compKey = data.compKey;
  49. this.value.fromJson(data.value);
  50. this.children.fromJson(data.children || {default: []});
  51. this.layout.fromJson(data.layout);
  52. }
  53. toJson() {
  54. const out:any= {};
  55. out.id = this.id;
  56. out.title = this.title;
  57. out.thumbnail = this.thumbnail;
  58. out.compKey = this.compKey;
  59. out.value = this.value.toJson();
  60. out.children = this.children.toJson();
  61. out.layout = this.layout.toJson();
  62. return out;
  63. }
  64. getChildIds() {
  65. return this.children.default;
  66. }
  67. getW() {
  68. return this.layout.size[0] || 0;
  69. }
  70. getH() {
  71. return this.layout.size[1] || 0;
  72. }
  73. _temp = {x: 0, y: 0}
  74. getRenderSize() {
  75. const mtrx = Matrix.createFromMatrixStr(this.layout.transformMatrix);
  76. const s = mtrx.getScale();
  77. this._temp.x = s.x * this.getW();
  78. this._temp.y = s.y * this.getH();
  79. return this._temp;
  80. }
  81. getBoundRect() {
  82. const out = { x: 0, y: 0, w: 0, h: 0 };
  83. if (!this.$el) return out;
  84. const r = this.$el.getBoundingClientRect();
  85. out.w = r.width;
  86. out.h = r.height;
  87. out.x = r.left;
  88. out.y = r.top;
  89. return out;
  90. }
  91. setH(height: number) {
  92. this.layout.size[1] = height;
  93. }
  94. setW(w: number) {
  95. this.layout.size[0] = w;
  96. }
  97. setSize(w: number, h: number) {
  98. this.layout.size[0] = w;
  99. this.layout.size[1] = h;
  100. }
  101. }