123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- import { Container } from "../../controllers/SelectCtrl/objects/container";
- import { RxValue } from "./RxValue";
- import { nanoid } from "nanoid";
- import { ICompKeys } from "../../typings";
- import { utils } from "./utils";
- import { HistoryController } from "./history";
- class CompBase<T extends object> extends Container {
- id = nanoid();
- title = "";
- thumbnail = "";
- compKey: ICompKeys = "StreamCard";
- value: ReturnType< typeof RxValue.create<T> >;
-
- 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 CompBase<any>[]
- });
- constructor(value:T) {
- super();
- this.value = RxValue.create(value);
- this.onCreated();
- }
- onCreated() {
- console.log("set compkey here!");
- }
- getChildIds() {
- if (this.state.children.length < 1) return [];
- return this.state.children.map(item=>item.id);
- }
- isPostioned() {
- return this.state.position == "absolute";
- }
-
- setHistory(h :HistoryController) {
- this.value.setHistory(h);
- this.state.setHistory(h);
- }
- override _calculateBounds() {
- const size = this.state.size;
- this._bounds.addFrame(this.transform, 0,0, size[0], size[1]);
- }
- createStyle() {
- const state = this.state;
- const style :any = {opacity: state.opacity}
- const size = state.size;
- const pos = state.pos;
- if (!state.visible) {
- style.display = "none";
- }
- if (state.clipPath) {
- style.clipPath = state.clipPath;
- }
- if (state.bgColor) {
- style.backgroundColor = state.bgColor;
- }
- if (state.radius) {
- style.borderRadius = state.radius
- }
- style.position = state.position;
- if (state.position == "relative") {
- if (size[0] > -1) {
- style.width = utils.designToNaturalSize(size[0]);
- }
- if (size[1] > -1) {
- style.height = utils.designToNaturalSize(size[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]);
- const pivot = state.pivots;
- style.transformOrigin = `${utils.designToNaturalSize(pivot[0])} ${utils.designToNaturalSize(pivot[1])}`
- style.transform = this.localTransform.getMatrixStr(utils.designSizeToPx);
- }
- return style;
- }
- fromJson(json:any) {
- this.id = json.id;
- this.compKey = json.compKey;
- this.thumbnail = json.thumbnail;
- this.title = json.title;
- this.value.fromJson(json.value);
- this.state.fromJson(json.state);
- }
-
- toJson() {
- const out = {
- id: this.id,
- title: this.title,
- thumbnail: this.thumbnail,
- compKey: this.compKey,
- value: this.value.toJson(),
- state: this.state.toJson(),
- }
- return out;
- }
- //初始化
- init() {
- this.state.onChildrenChanged(()=>{
- this._updateChildObjs();
- })
- 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.emit("transformChange");
- })
- }
- _updateChildObjs() {
- const childrens = this.state.children as CompBase<any>[];
- this.removeChildren(0, this.children.length);
- childrens.forEach(c=>{
- this.addChild(c)
- })
- this.updateTransform();
- }
- }
- export {CompBase};
|