createCompStyle.ts 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. import { formatColor } from "@/modules/editor/components/CompUI/formItems/NewColorPicker/ColorList";
  2. import { Matrix } from "@/modules/editor/controllers/SelectCtrl/matrix";
  3. import { EditorModule } from "@/modules/editor/module";
  4. import { Layout } from "@/modules/editor/typings";
  5. import { DesignComp } from "../DesignComp";
  6. import { compMasks } from "./CompMasks";
  7. import { Transform } from "@/modules/editor/controllers/SelectCtrl/objects/transform";
  8. const UnitAngle = 180.0 / Math.PI;
  9. export function createCompStyle(
  10. module: EditorModule,
  11. layout: Layout,
  12. comp: DesignComp
  13. ) {
  14. const { designToNaturalSize, pxToDesignSize, designSizeToPx } = module.helper;
  15. const style: any = {};
  16. const transform: any = {};
  17. // if (layout.alignSelf) {
  18. // style.alignSelf = layout.alignSelf;
  19. // }
  20. if (layout.visible === false) {
  21. style.display = "none";
  22. }
  23. if (layout.opacity !== undefined) {
  24. style["opacity"] = layout.opacity;
  25. }
  26. if (layout.border) {
  27. if (layout.border.style) {
  28. style["border-style"] = layout.border.style;
  29. }
  30. style["border-width"] = (layout.border.width || 0) + "px";
  31. style["border-color"] = layout.border.color || "#000";
  32. if (layout.border.radius) {
  33. style["border-radius"] = layout.border.radius / 2 + "%";
  34. style["overflow"] = "hidden";
  35. }
  36. if (layout.border.radius2 !== undefined) {
  37. style["border-radius"] =
  38. (designSizeToPx(Math.min(layout.size[0], layout.size[1])) *
  39. layout.border.radius2) /
  40. 100.0 +
  41. "px";
  42. style["overflow"] = "hidden";
  43. }
  44. }
  45. if (layout.radius !== undefined) {
  46. style["border-radius"] = layout.radius / 2 + "%";
  47. style["overflow"] = "hidden";
  48. }
  49. if (layout.locked === true) {
  50. style["pointer-events"] = "none";
  51. }
  52. if (layout.zIndex) {
  53. style["zIndex"] = layout.zIndex;
  54. }
  55. // if (layout.margin) {
  56. // style.margin = layout.margin;
  57. // }
  58. if (layout.padding) {
  59. style.padding = layout.padding;
  60. }
  61. if (layout.mask) {
  62. style.clipPath = compMasks[layout.mask]?.value || layout.mask;
  63. }
  64. const [w, h, sizeOpts] = layout.size;
  65. style.width = designToNaturalSize(w);
  66. style.height = designToNaturalSize(h, {
  67. adaptiveH: sizeOpts?.unit === "%",
  68. });
  69. if (layout.transformMatrix) {
  70. //样式的scale转 width
  71. const m = Matrix.createFromMatrixStr(layout.transformMatrix);
  72. const t = new Transform();
  73. t.setFromMatrix(m);
  74. const [w, h, sizeOpts] = layout.size;
  75. style.width = designToNaturalSize(w * t.scale.x);
  76. style.height = designToNaturalSize(h * t.scale.y, {
  77. adaptiveH: sizeOpts?.unit === "%",
  78. });
  79. style.left = t.position.x + "px";
  80. style.top = t.position.y + "px";
  81. style.transform = `rotate(${t.rotation * UnitAngle}deg)`;
  82. style.transformOrigin = "0 0";
  83. }
  84. if (layout.background) {
  85. if (layout.background.color) {
  86. style.background = formatColor(layout.background.color);
  87. }
  88. }
  89. if (comp.compKey !== "Page") {
  90. style.position = "absolute";
  91. }
  92. return style;
  93. }
  94. export function parseTransform(trans: any) {
  95. let transform = "";
  96. if (trans.translateX || trans.translateY) {
  97. transform = `translate(${trans.translateX || 0}, ${trans.translateY || 0})`;
  98. }
  99. if (trans.scale) {
  100. transform += ` scale(${trans.scale})`;
  101. }
  102. if (trans.rotate) {
  103. transform += ` rotate(${trans.rotate})`;
  104. }
  105. return transform;
  106. }