DesignComp.ts 2.3 KB

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