|
@@ -19,17 +19,14 @@ class CompBase<T extends object> extends Container {
|
|
|
|
|
|
state = RxValue.create({
|
|
|
size: [0, 0],
|
|
|
- pos: [0,0],
|
|
|
- pivots: [0,0],
|
|
|
- scale: [1,1],
|
|
|
- rotation: 0,
|
|
|
visible: true,
|
|
|
opacity: 1,
|
|
|
clipPath: "",
|
|
|
bgColor: "transparent",
|
|
|
radius: "",
|
|
|
position: "absolute" as "absolute" | "relative",
|
|
|
- children: [] as string[]
|
|
|
+ children: [] as string[],
|
|
|
+ dirty: 0,
|
|
|
});
|
|
|
|
|
|
constructor(value:T) {
|
|
@@ -51,14 +48,12 @@ class CompBase<T extends object> extends Container {
|
|
|
|
|
|
copyTransform(target:CompBase<any>) {
|
|
|
this.state.size[0] = target.state.size[0];
|
|
|
- this.state.size[1] = target.state.size[1];
|
|
|
- this.state.pos[0] = target.state.pos[0];
|
|
|
- this.state.pos[1] = target.state.pos[1];
|
|
|
- this.state.scale[0] = target.state.scale[0];
|
|
|
- this.state.scale[1] = target.state.scale[1];
|
|
|
- this.state.pivots[0] = target.state.pivots[0];
|
|
|
- this.state.pivots[1] = target.state.pivots[1];
|
|
|
- this.state.rotation = target.state.rotation;
|
|
|
+ // this.state.size[1] = target.state.size[1];
|
|
|
+ // this.state.pos[0] = target.state.pos[0];
|
|
|
+ // this.state.pos[1] = target.state.pos[1];
|
|
|
+ // this.state.scale[0] = target.state.scale[0];
|
|
|
+ // this.state.scale[1] = target.state.scale[1];
|
|
|
+ // this.state.rotation = target.state.rotation;
|
|
|
}
|
|
|
|
|
|
changeChildNodes(ids: string[], WordNoChange = false) {
|
|
@@ -106,8 +101,9 @@ class CompBase<T extends object> extends Container {
|
|
|
const state = this.state;
|
|
|
const style :any = {opacity: state.opacity}
|
|
|
const size = state.size;
|
|
|
- const pos = state.pos;
|
|
|
- const scale = state.scale;
|
|
|
+ // const pos = state.pos;
|
|
|
+ let _ = state.dirty;
|
|
|
+ // _ = state.rotation as any;
|
|
|
|
|
|
if (!state.visible) {
|
|
|
style.display = "none";
|
|
@@ -130,19 +126,18 @@ class CompBase<T extends object> extends Container {
|
|
|
if (size[1] > -1) {
|
|
|
style.height = utils.designToNaturalSize(size[1]);
|
|
|
}
|
|
|
- style.left = utils.designToNaturalSize(pos[0]);
|
|
|
- style.top = utils.designToNaturalSize(pos[1]);
|
|
|
+ // style.left = utils.designToNaturalSize(pos[0]);
|
|
|
+ // style.top = utils.designToNaturalSize(pos[1]);
|
|
|
} else {
|
|
|
style.width = utils.designToNaturalSize(size[0]);
|
|
|
style.height = utils.designToNaturalSize(size[1]);
|
|
|
- style.left = utils.designToNaturalSize(pos[0]);
|
|
|
- style.top = utils.designToNaturalSize(pos[1]);
|
|
|
+ // style.left = utils.designToNaturalSize(pos[0]);
|
|
|
+ // style.top = utils.designToNaturalSize(pos[1]);
|
|
|
|
|
|
- const pivot = state.pivots;
|
|
|
style.transformOrigin = `0 0`;
|
|
|
- const transform = new Matrix();
|
|
|
- transform.setTransform(0, 0, pivot[0], pivot[1], scale[0], scale[1], state.rotation, 0, 0);
|
|
|
- style.transform = transform.getMatrixStr(utils.designSizeToPx);
|
|
|
+ // const transform = new Matrix();
|
|
|
+
|
|
|
+ style.transform = this.localTransform.getMatrixStr(utils.designSizeToPx);
|
|
|
}
|
|
|
|
|
|
return style;
|
|
@@ -178,27 +173,6 @@ class CompBase<T extends object> extends Container {
|
|
|
this.state.onSizeChanged((size)=>{
|
|
|
this.width = size[0];
|
|
|
this.height = size[1];
|
|
|
-
|
|
|
- this.emit("transformChange");
|
|
|
- })
|
|
|
-
|
|
|
- this.state.onPosChanged((pos)=>{
|
|
|
- this.position.x = pos[0]
|
|
|
- this.position.y = pos[1]
|
|
|
- this.emit("transformChange");
|
|
|
- })
|
|
|
-
|
|
|
- this.state.onScaleChanged((scales)=>{
|
|
|
- this.scale.x = scales[0]
|
|
|
- this.scale.y = scales[1]
|
|
|
- this.emit("transformChange");
|
|
|
- })
|
|
|
-
|
|
|
- this.state.onRotationChanged((r)=>{
|
|
|
- this.rotation = r;
|
|
|
- this.updateTransform();
|
|
|
-
|
|
|
- console.log("rr==>", r);
|
|
|
this.emit("transformChange");
|
|
|
})
|
|
|
}
|
|
@@ -243,18 +217,12 @@ class CompBase<T extends object> extends Container {
|
|
|
let targetPivot = pivots[index];
|
|
|
|
|
|
let point = { x: targetPivot.x, y: targetPivot.y } as any;
|
|
|
- this.transform.localTransform.apply(point, point);
|
|
|
+ this.transform.worldTransform.apply(point, point);
|
|
|
|
|
|
this.transform.pivot = targetPivot as any;
|
|
|
this.transform.position.x = point.x;
|
|
|
this.transform.position.y = point.y;
|
|
|
|
|
|
- this.state.pivots[0] = targetPivot.x;
|
|
|
- this.state.pivots[1] = targetPivot.y;
|
|
|
-
|
|
|
- this.state.pos[0] = point.x;
|
|
|
- this.state.pos[1] = point.y;
|
|
|
-
|
|
|
this.updateTransform();
|
|
|
|
|
|
this.pivotIndex = index;
|