|
@@ -11,6 +11,9 @@ import { indexOf } from "lodash";
|
|
|
import { AssistCtrl } from "./assistCtrl";
|
|
|
import { AssistRulerCtrl } from "./assistRulerCtrl";
|
|
|
import { AssistMagnetCtrl } from "./assistMagnetCtrl";
|
|
|
+import { RxValue } from "../../objects/Elements/RxValue";
|
|
|
+import { NodeTransfer } from "../../objects/Elements/transfer";
|
|
|
+import { CompBase } from "../../objects/Elements/base";
|
|
|
|
|
|
/**
|
|
|
* 页面画布空间进行选择
|
|
@@ -49,7 +52,6 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
mode: MODE_NONE,
|
|
|
});
|
|
|
|
|
|
- selected: any[] = []; //选中的所有组件ids
|
|
|
|
|
|
pageEl?: HTMLElement;
|
|
|
selCanvas = {} as HTMLCanvasElement;
|
|
@@ -77,7 +79,7 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
}
|
|
|
|
|
|
getCurrCardBox() {
|
|
|
- return this.store.currStreamCard.$el.getBoundingClientRect();
|
|
|
+ return this.controls.compCtrl.currCardObj.$el.getBoundingClientRect();
|
|
|
}
|
|
|
getViewPortBox() {
|
|
|
//@ts-ignore
|
|
@@ -85,7 +87,7 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
}
|
|
|
|
|
|
getCurrCard() {
|
|
|
- return this.store.currStreamCard;
|
|
|
+ return this.controls.compCtrl.currCardObj;
|
|
|
}
|
|
|
|
|
|
getProjectId() {
|
|
@@ -93,17 +95,20 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
}
|
|
|
|
|
|
getUnSelectChilds() {
|
|
|
- const childs = this.store.currStreamCard.children.default || [];
|
|
|
+ const childs = this.controls.compCtrl.currCardObj.getChildIds();
|
|
|
let n = childs.length;
|
|
|
let out = [];
|
|
|
while(n--) {
|
|
|
- if (this.store.selected.indexOf(childs[n]) == -1) {
|
|
|
- out.push(new CompObject( this.store.compMap[childs[n]]));
|
|
|
+ if (this._objTransfor?.value.selected.indexOf(childs[n]) == -1) {
|
|
|
+ out.push( this._objTransfor.getObj(childs[n]) );
|
|
|
}
|
|
|
}
|
|
|
return out;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
initEvents(
|
|
|
pageEl: HTMLElement,
|
|
|
selCanvas: HTMLCanvasElement,
|
|
@@ -128,22 +133,6 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
viewport.addEventListener("mousedown", this.onDocMouseDown.bind(this));
|
|
|
window.addEventListener("resize", this.onResize.bind(this));
|
|
|
|
|
|
- this.initEffects();
|
|
|
- }
|
|
|
-
|
|
|
- initEffects() {
|
|
|
- //相应相应的事件
|
|
|
- Effect.array(() => this.store.selected)
|
|
|
- .list({
|
|
|
- remove: () => {
|
|
|
- console.log("xxx");
|
|
|
- },
|
|
|
- change: (added: string[], removed: string[]) => {
|
|
|
- console.log("changeMap=>", added, removed);
|
|
|
- this._updateSelects();
|
|
|
- },
|
|
|
- })
|
|
|
- .run();
|
|
|
}
|
|
|
|
|
|
_mouseDownFlag = "";
|
|
@@ -151,22 +140,33 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
|
|
|
_containers: Map<string, ObjsContainer> = new Map();
|
|
|
|
|
|
- _updateSelects() {
|
|
|
- const selecteds = this.store.selected;
|
|
|
- const ObjC = this._containers.get(this.store.selectId);
|
|
|
- let objs = [];
|
|
|
- for (let item of selecteds) {
|
|
|
- objs.push(new CompObject(this.compMap[item]));
|
|
|
- }
|
|
|
- this.selecteObjs(objs, ObjC);
|
|
|
- if (this.store.selectId) {
|
|
|
- this._containers.set(
|
|
|
- this.store.selectId,
|
|
|
- this.objContainer as ObjsContainer
|
|
|
- );
|
|
|
+ _objTransfor?: NodeTransfer;
|
|
|
+
|
|
|
+ getMovableNode(compId:string, parent:CompBase<any>) {
|
|
|
+ let obj = this.controls.compCtrl.getObj(compId)
|
|
|
+ do {
|
|
|
+ if (obj.parent.id == parent.id) return obj;
|
|
|
+ obj = obj.parent;
|
|
|
+ } while(obj)
|
|
|
+
|
|
|
+ return obj;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ async selectObj(compId:string, e:MouseEvent) {
|
|
|
+ const compCtrl = this.controls.compCtrl;
|
|
|
+ let obj = compCtrl.currCardObj;
|
|
|
+ const currNode = this.getMovableNode(compId, obj);
|
|
|
+
|
|
|
+ let transfer = this._objTransfor as NodeTransfer;
|
|
|
+ if (!transfer) {
|
|
|
+ this._objTransfor = await this.controls.compCtrl.createNode("Transfer", {selected: [currNode.id]}) as NodeTransfer;
|
|
|
+ transfer = this._objTransfor;
|
|
|
+ obj.addChildNodes([transfer.id], false);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ selected = [] as any[];
|
|
|
_downClickedCompId = "";
|
|
|
onDocMouseDown(e: MouseEvent) {
|
|
|
this._mouseDownTimestamp = Date.now();
|
|
@@ -211,12 +211,12 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
if (!this._mouseDownFlag) {
|
|
|
//选框点击判断
|
|
|
let isClickSelRect = false;
|
|
|
- if (this.selected.length > 0) {
|
|
|
- const card = this.store.currStreamCard.$el;
|
|
|
+ if ( this._objTransfor ) {
|
|
|
+ const card = this.getCurrCard().$el;
|
|
|
box = card.getBoundingClientRect();
|
|
|
- const cardX = pageX;
|
|
|
- const cardY = e.clientY - box.top;
|
|
|
- isClickSelRect = this.objContainer?.testClick(cardX, cardY) as boolean;
|
|
|
+ const cardX = this.helper.pxToDesignSize(pageX);
|
|
|
+ const cardY = this.helper.pxToDesignSize(e.clientY - box.top);
|
|
|
+ isClickSelRect = this._objTransfor.testWorldClick(cardX, cardY);
|
|
|
if (isClickSelRect) {
|
|
|
this._state = MODE_MOVING;
|
|
|
}
|
|
@@ -273,7 +273,7 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
this._initMovePos.y = -1;
|
|
|
}
|
|
|
_initMovePos = { x: -1, y: -1 };
|
|
|
-
|
|
|
+
|
|
|
getDivFlag(div: HTMLElement, flag = "editable") {
|
|
|
let c: any = div;
|
|
|
if (!c) return "";
|
|
@@ -399,22 +399,20 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
}
|
|
|
|
|
|
movingMousemove(e: MouseEvent) {
|
|
|
- const objContainer = this.objContainer as ObjsContainer;
|
|
|
+ const objContainer = this._objTransfor as NodeTransfer;
|
|
|
const magnet = this.assistMagnet as AssistMagnetCtrl;
|
|
|
|
|
|
+ console.log("movinging")
|
|
|
if (this._initMovePos.x == -1 && this._initMovePos.y == -1) {
|
|
|
- const obj = this.objContainer as ObjsContainer;
|
|
|
- this._initMovePos = { x: obj.parent.x, y: obj.parent.y };
|
|
|
+ this._initMovePos = { x: objContainer.x, y: objContainer.y };
|
|
|
}
|
|
|
magnet.test(e);
|
|
|
|
|
|
objContainer.setPivot(0);
|
|
|
objContainer.translate(
|
|
|
- magnet.clientX - this._movePreClientX,
|
|
|
- magnet.clientY - this._movePreClientY
|
|
|
+ this.helper.pxToDesignSize( magnet.clientX - this._movePreClientX),
|
|
|
+ this.helper.pxToDesignSize(magnet.clientY - this._movePreClientY),
|
|
|
);
|
|
|
-
|
|
|
- this.upgateGizmoStyle();
|
|
|
}
|
|
|
|
|
|
_movePreClientX = 0;
|
|
@@ -475,8 +473,8 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
}
|
|
|
|
|
|
if (isClick) {
|
|
|
- this._state = MODE_NONE;
|
|
|
- this.actions.pickComp(this._downClickedCompId);
|
|
|
+ this._state = MODE_NONE;
|
|
|
+ this.selectObj(this._downClickedCompId, e);
|
|
|
}
|
|
|
|
|
|
if (this._state == MODE_SEL_RECT && !isClick) {
|
|
@@ -509,53 +507,16 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
this._downed = false;
|
|
|
this._moveSelectUpdated = false;
|
|
|
|
|
|
- this.upgateGizmoStyle();
|
|
|
+ // this.upgateGizmoStyle();
|
|
|
this.assistRuler?.draw();
|
|
|
this.assistMagnet?.onMouseUp();
|
|
|
+
|
|
|
}
|
|
|
|
|
|
+
|
|
|
moveMouseUp(e: MouseEvent, clicked: boolean) {
|
|
|
const history = this.controls.historyCtrl.history;
|
|
|
|
|
|
- const obj = this.objContainer as ObjsContainer;
|
|
|
- const lastX = obj.parent.x,
|
|
|
- lastY = obj.parent.y;
|
|
|
-
|
|
|
- const initX = this._initMovePos.x,
|
|
|
- initY = this._initMovePos.y;
|
|
|
-
|
|
|
- this._initMovePos.x = -1;
|
|
|
- this._initMovePos.y = -1;
|
|
|
-
|
|
|
- if (initX == -1 && initY == -1) return;
|
|
|
-
|
|
|
- obj.setPivot(0);
|
|
|
-
|
|
|
- history.record({
|
|
|
- undo: () => {
|
|
|
- console.log("undo ");
|
|
|
- const currObj = this.objContainer as ObjsContainer;
|
|
|
- currObj.setPivot(0);
|
|
|
- currObj.parent.x = initX;
|
|
|
- currObj.parent.y = initY;
|
|
|
- currObj.parent.updateTransform();
|
|
|
- currObj.updateCompState();
|
|
|
-
|
|
|
- this.upgateGizmoStyle();
|
|
|
- this.helper.extendStreamCard(this.store.currStreamCardId);
|
|
|
- },
|
|
|
- redo: () => {
|
|
|
- const currObj = this.objContainer as ObjsContainer;
|
|
|
- currObj.setPivot(0);
|
|
|
- currObj.parent.x = lastX;
|
|
|
- currObj.parent.y = lastY;
|
|
|
- currObj.parent.updateTransform();
|
|
|
- currObj.updateCompState();
|
|
|
- this.upgateGizmoStyle();
|
|
|
- this.helper.extendStreamCard(this.store.currStreamCardId);
|
|
|
- },
|
|
|
- } as any);
|
|
|
- history.submit();
|
|
|
}
|
|
|
|
|
|
rectSelect(x: number, y: number, width: number, height: number) {
|
|
@@ -578,10 +539,10 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
|
|
|
upgateGizmoStyle() {
|
|
|
this.transferStyle.mode = this._state;
|
|
|
- if (this.selected.length < 1) {
|
|
|
- this.transferStyle.showGizmo = false;
|
|
|
- return;
|
|
|
- }
|
|
|
+ // if (this.selected.length < 1) {
|
|
|
+ // this.transferStyle.showGizmo = false;
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
|
|
|
this.assistCtrl?.flashDrawCardDists();
|
|
|
this.transferStyle.showGizmo = false;
|
|
@@ -615,7 +576,8 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
|
|
|
this.transferStyle.matrix = matrix;
|
|
|
this.transferStyle.matrixInvert = matrixInvert;
|
|
|
- this.transferStyle.showOrthScale = this.selected.length == 1;
|
|
|
+
|
|
|
+ // this.transferStyle.showOrthScale = this.selected.length == 1;
|
|
|
}
|
|
|
|
|
|
selectId(id: string) {
|
|
@@ -684,51 +646,38 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
objContainer?: ObjsContainer;
|
|
|
|
|
|
selecteObjs(objs: any[], ContainerBox?: ObjsContainer) {
|
|
|
- if (this.selected.length == 0 && objs.length == 0) return;
|
|
|
-
|
|
|
- if (
|
|
|
- this.selected.length == 1 &&
|
|
|
- objs.length == 1 &&
|
|
|
- this.selected[0] == objs[0]
|
|
|
- )
|
|
|
- return;
|
|
|
-
|
|
|
- if (this.objContainer) {
|
|
|
- this.objContainer.destroy();
|
|
|
- this.objContainer = undefined;
|
|
|
- }
|
|
|
-
|
|
|
- let newObjContainer = undefined;
|
|
|
-
|
|
|
- if (objs.length > 0 && objs[0]) {
|
|
|
- newObjContainer = ContainerBox ? ContainerBox : new ObjsContainer(objs);
|
|
|
- if (ContainerBox) {
|
|
|
- objs.forEach((obj) => {
|
|
|
- ContainerBox.parent.addChildWorldNoChange(obj);
|
|
|
- });
|
|
|
- ContainerBox.selected = objs;
|
|
|
- ContainerBox.parent.updateTransform();
|
|
|
- }
|
|
|
- }
|
|
|
- this.objContainer = newObjContainer;
|
|
|
- this.selected = objs;
|
|
|
-
|
|
|
- this.emitChange();
|
|
|
-
|
|
|
- this.upgateGizmoStyle();
|
|
|
-
|
|
|
- return this.selected;
|
|
|
+ // if (this.selected.length == 0 && objs.length == 0) return;
|
|
|
+ // if (
|
|
|
+ // this.selected.length == 1 &&
|
|
|
+ // objs.length == 1 &&
|
|
|
+ // this.selected[0] == objs[0]
|
|
|
+ // )
|
|
|
+ // return;
|
|
|
+
|
|
|
+ // if (this.objContainer) {
|
|
|
+ // this.objContainer.destroy();
|
|
|
+ // this.objContainer = undefined;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // let newObjContainer = undefined;
|
|
|
+
|
|
|
+ // if (objs.length > 0 && objs[0]) {
|
|
|
+ // newObjContainer = ContainerBox ? ContainerBox : new ObjsContainer(objs);
|
|
|
+ // if (ContainerBox) {
|
|
|
+ // objs.forEach((obj) => {
|
|
|
+ // ContainerBox.parent.addChildWorldNoChange(obj);
|
|
|
+ // });
|
|
|
+ // ContainerBox.selected = objs;
|
|
|
+ // ContainerBox.parent.updateTransform();
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // this.objContainer = newObjContainer;
|
|
|
+ // this.emitChange();
|
|
|
+ // this.upgateGizmoStyle();
|
|
|
+ // return this.selected;
|
|
|
+ console.log("select objs");
|
|
|
}
|
|
|
|
|
|
- emitChange() {
|
|
|
- const selected = this.selected;
|
|
|
- if (selected.length && selected[0]) {
|
|
|
- this.bus.emit("showProps", selected[0].from);
|
|
|
- } else {
|
|
|
- this.bus.emit("showProps");
|
|
|
- }
|
|
|
- this.bus.emit("selectedChange");
|
|
|
- }
|
|
|
|
|
|
rotateCenter?: { x: number; y: number };
|
|
|
ratatePre = 0;
|
|
@@ -737,13 +686,13 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
lastRad = 0;
|
|
|
|
|
|
rotateMousemove(e: MouseEvent) {
|
|
|
- const card = this.store.currStreamCard;
|
|
|
|
|
|
+ const card = this.getCurrCard();
|
|
|
const rect = card.$el.getBoundingClientRect();
|
|
|
- let StartX = e.clientX - rect.left;
|
|
|
- let StartY = e.clientY - rect.top;
|
|
|
+ let StartX = this.helper.pxToDesignSize(e.clientX - rect.left);
|
|
|
+ let StartY = this.helper.pxToDesignSize(e.clientY - rect.top);
|
|
|
|
|
|
- const objContainer = this.objContainer as ObjsContainer;
|
|
|
+ const objContainer = this._objTransfor as NodeTransfer;
|
|
|
|
|
|
//获取当前屏幕坐标和选框中心点坐标,计算旋转值
|
|
|
if (!this.rotateCenter) {
|
|
@@ -795,45 +744,12 @@ export class SelectCtrl extends ModuleControl<EditorModule> {
|
|
|
console.log("rotate=>", dta);
|
|
|
|
|
|
objContainer.rotate(dta);
|
|
|
-
|
|
|
- // this.emit("translateChange", this.objContainer)
|
|
|
- this.upgateGizmoStyle();
|
|
|
}
|
|
|
|
|
|
rotateMouseUp(e: MouseEvent) {
|
|
|
this.rotateCenter = undefined;
|
|
|
if (!this.rotateCmd) return;
|
|
|
- let scope = this;
|
|
|
- let last = this.lastRad;
|
|
|
- let initrad = scope.objinitAngleRad;
|
|
|
-
|
|
|
- const history = this.controls.historyCtrl.history;
|
|
|
- this.objContainer?.setPivot(0);
|
|
|
-
|
|
|
- history.record({
|
|
|
- undo: () => {
|
|
|
- const objContainer = this.objContainer as ObjsContainer;
|
|
|
-
|
|
|
- this.objContainer?.setPivot(4);
|
|
|
- this.objContainer?.rotate(initrad);
|
|
|
- this.objContainer?.setPivot(0);
|
|
|
- this.objContainer?.updateCompState();
|
|
|
- this.upgateGizmoStyle();
|
|
|
- this.helper.extendStreamCard(this.store.currStreamCardId);
|
|
|
- },
|
|
|
-
|
|
|
- redo: () => {
|
|
|
- console.log("redo ");
|
|
|
- const objContainer = this.objContainer as ObjsContainer;
|
|
|
- this.objContainer?.setPivot(4);
|
|
|
- this.objContainer?.rotate(last);
|
|
|
- this.objContainer?.setPivot(0);
|
|
|
- this.objContainer?.updateCompState();
|
|
|
- this.upgateGizmoStyle();
|
|
|
- this.helper.extendStreamCard(this.store.currStreamCardId);
|
|
|
- },
|
|
|
- } as any);
|
|
|
- history.submit();
|
|
|
+ // this._objTransfor?.setPivot(0);
|
|
|
this.rotateCmd = false;
|
|
|
}
|
|
|
|