|
@@ -1,33 +1,20 @@
|
|
|
import { formatColor } from "@/modules/editor/components/CompUI/formItems/NewColorPicker/ColorList";
|
|
|
import { Matrix } from "@/modules/editor/controllers/SelectCtrl/matrix";
|
|
|
+import { Transform } from "@/modules/editor/controllers/SelectCtrl/objects/transform";
|
|
|
import { EditorModule } from "@/modules/editor/module";
|
|
|
import { Layout } from "@/modules/editor/typings";
|
|
|
import { DesignComp } from "../DesignComp";
|
|
|
import { compMasks } from "./CompMasks";
|
|
|
-import { Transform } from "@/modules/editor/controllers/SelectCtrl/objects/transform";
|
|
|
|
|
|
const UnitAngle = 180.0 / Math.PI;
|
|
|
|
|
|
-export function createCompStyle(
|
|
|
+export function createViewStyles(
|
|
|
module: EditorModule,
|
|
|
- layout: Layout,
|
|
|
- comp: DesignComp
|
|
|
+ layout: Layout
|
|
|
+ // comp: DesignComp
|
|
|
) {
|
|
|
- const { designToNaturalSize, pxToDesignSize, designSizeToPx } = module.helper;
|
|
|
+ const { designSizeToPx } = module.helper;
|
|
|
const style: any = {};
|
|
|
- const transform: any = {};
|
|
|
-
|
|
|
- // if (layout.alignSelf) {
|
|
|
- // style.alignSelf = layout.alignSelf;
|
|
|
- // }
|
|
|
- if (layout.visible === false) {
|
|
|
- style.display = "none";
|
|
|
- }
|
|
|
-
|
|
|
- if (layout.opacity !== undefined) {
|
|
|
- style["opacity"] = layout.opacity;
|
|
|
- }
|
|
|
-
|
|
|
if (layout.border) {
|
|
|
if (layout.border.style) {
|
|
|
style["border-style"] = layout.border.style;
|
|
@@ -54,6 +41,35 @@ export function createCompStyle(
|
|
|
style["overflow"] = "hidden";
|
|
|
}
|
|
|
|
|
|
+ if (layout.background) {
|
|
|
+ if (layout.background.color) {
|
|
|
+ style.background = formatColor(layout.background.color);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return style;
|
|
|
+}
|
|
|
+
|
|
|
+export function createCompStyle(
|
|
|
+ module: EditorModule,
|
|
|
+ layout: Layout,
|
|
|
+ comp: DesignComp
|
|
|
+) {
|
|
|
+ const { designToNaturalSize } = module.helper;
|
|
|
+ const style: any = {};
|
|
|
+ // const transform: any = {};
|
|
|
+
|
|
|
+ // if (layout.alignSelf) {
|
|
|
+ // style.alignSelf = layout.alignSelf;
|
|
|
+ // }
|
|
|
+ if (layout.visible === false) {
|
|
|
+ style.display = "none";
|
|
|
+ }
|
|
|
+
|
|
|
+ if (layout.opacity !== undefined) {
|
|
|
+ style["opacity"] = layout.opacity;
|
|
|
+ }
|
|
|
+
|
|
|
if (layout.locked === true) {
|
|
|
style["pointer-events"] = "none";
|
|
|
}
|
|
@@ -101,7 +117,7 @@ export function createCompStyle(
|
|
|
style.height = designToNaturalSize(h * t.scale.y, {
|
|
|
adaptiveH: sizeOpts?.unit === "%",
|
|
|
});
|
|
|
-
|
|
|
+
|
|
|
style.left = t.position.x + "px";
|
|
|
style.top = t.position.y + "px";
|
|
|
style.transform = `rotate(${t.rotation * UnitAngle}deg)`;
|
|
@@ -109,12 +125,6 @@ export function createCompStyle(
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- if (layout.background) {
|
|
|
- if (layout.background.color) {
|
|
|
- style.background = formatColor(layout.background.color);
|
|
|
- }
|
|
|
- }
|
|
|
if (comp.compKey !== "Page") {
|
|
|
style.position = "absolute";
|
|
|
}
|