index.ts 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924
  1. import { Effect, ModuleControl } from "queenjs";
  2. import { reactive } from "vue";
  3. import { EditorModule } from "../../module";
  4. import { ObjsContainer } from "./ObjsContainer";
  5. import { CompObject } from "./compObj";
  6. import Event from "./event";
  7. import { Matrix } from "./matrix";
  8. import { Project, VectorLenth } from "./objects/mathUtils";
  9. import { Point } from "./objects/point";
  10. import { indexOf } from "lodash";
  11. import { AssistCtrl } from "./assistCtrl";
  12. import { AssistRulerCtrl } from "./assistRulerCtrl";
  13. import { AssistMagnetCtrl } from "./assistMagnetCtrl";
  14. import { DesignComp } from "../../objects/DesignTemp/DesignComp";
  15. import { RxValue } from "../ReactCtrl/rxValue";
  16. import { HistoryCtrl } from "../HistoryCtrl";
  17. import { HistoryController } from "../ReactCtrl/history";
  18. import { Gizemo } from "./gizemo";
  19. import { history } from "../../objects/DesignTemp/factory";
  20. /**
  21. * 页面画布空间进行选择
  22. */
  23. const MODE_SEL_RECT = 1;
  24. const MODE_MOVING = 2;
  25. const MODE_ROTATE = 3;
  26. const MODE_SCALE_SCALE = 5;
  27. const MODE_RULER_LINE = 6;
  28. const MODE_RULER_DRAG = 7;
  29. const MODE_NONE = 0;
  30. export class SelectCtrl extends ModuleControl<EditorModule> {
  31. transEvent = {
  32. startX: 0,
  33. startY: 0,
  34. offsetX: 0,
  35. offsetY: 0,
  36. width: 0,
  37. height: 0,
  38. };
  39. transferStyle = reactive({
  40. baseCardTop: "0px",
  41. showGizmo: false,
  42. editingText: false,
  43. width: 0,
  44. height: 0,
  45. relWidth: 0,
  46. relHeight: 0,
  47. matrix: "matrix(1,0,0,1,0,0)",
  48. matrixInvert: "matrix(1,0,0,1,0,0)",
  49. showOrthScale: false,
  50. mode: MODE_NONE,
  51. });
  52. selected: any[] = []; //选中的所有组件ids
  53. pageEl?: HTMLElement;
  54. selCanvas = {} as HTMLCanvasElement;
  55. _downed = false;
  56. _selCtx = {} as CanvasRenderingContext2D;
  57. _state = MODE_NONE;
  58. _selDownX = 0;
  59. _selDownY = 0;
  60. _selBox = {} as DOMRect;
  61. _selCanvaseSize = { w: 0, h: 0 };
  62. _downClientX = 0;
  63. _downClientY = 0;
  64. //groupCtrl = new GroupActionCtrl(this.module);
  65. bus = new Event();
  66. viewport?: HTMLElement;
  67. assistCtrl?: AssistCtrl;
  68. assistRuler?: AssistRulerCtrl;
  69. assistMagnet?: AssistMagnetCtrl;
  70. getPageBox() {
  71. return (this.pageEl as (HTMLElement)).getBoundingClientRect();
  72. }
  73. _cardBox = {x:0,y:0,width: 0, height: 0, bottom: 0, top: 0, left: 0};
  74. getCurrCardViewPortBox() {//屏幕空间坐标clientX 转中间viewport空间
  75. const box = this.store.currStreamCard.$el.getBoundingClientRect();
  76. const viewportbox = this.getViewPortBox();
  77. const _cardBox = this._cardBox;
  78. _cardBox.x = box.x - viewportbox.x;
  79. _cardBox.y = box.y - viewportbox.y;
  80. _cardBox.width = box.width;
  81. _cardBox.height = box.height;
  82. _cardBox.left = box.left - viewportbox.left;
  83. _cardBox.top = box.top - viewportbox.top;
  84. return _cardBox;
  85. }
  86. _tempPos = {x: 0, y:0}
  87. viewportPos2DesignPos(clientX: number, clientY:number) {
  88. const box = this.store.currStreamCard.$el.getBoundingClientRect();
  89. let scale = this.controls.editorCtrl.state.scale;
  90. this._tempPos.x = (clientX - box.left) / scale;
  91. this._tempPos.y = (clientY - box.top) / scale;
  92. return this._tempPos;
  93. }
  94. getViewPortBox() {
  95. //@ts-ignore
  96. const box = this.viewport.getBoundingClientRect();
  97. return box;
  98. }
  99. getCurrCard() {
  100. return this.store.currStreamCard;
  101. }
  102. getCurrCardBox() {
  103. return this.store.currStreamCard.$el.getBoundingClientRect();
  104. }
  105. getProjectId() {
  106. const page = this.controls.pageCtrl;
  107. return page.designData._id;
  108. }
  109. getUnSelectChilds() {
  110. const page = this.controls.pageCtrl;
  111. const childs = page.currStreamCard.children.default || [];
  112. let n = childs.length;
  113. let out = [];
  114. const gizmo = this.controls.selectCtrl.gizmo;
  115. while(n--) {
  116. if (gizmo.selectedIds.indexOf(childs[n]) == -1) {
  117. out.push(new CompObject( this.store.compMap[childs[n]]));
  118. }
  119. }
  120. return out;
  121. }
  122. gizmo = new Gizemo((id)=>{
  123. return this.compMap[id] as DesignComp;
  124. })
  125. initEvents(
  126. pageEl: HTMLElement,
  127. selCanvas: HTMLCanvasElement,
  128. viewport: HTMLElement
  129. ) {
  130. this.viewport = viewport;
  131. this.pageEl = pageEl;
  132. this.selCanvas = selCanvas;
  133. const b = selCanvas.getBoundingClientRect();
  134. selCanvas.width = b.width * 2;
  135. selCanvas.height = b.height * 2;
  136. this._selCtx = selCanvas.getContext("2d") as CanvasRenderingContext2D;
  137. this._selCanvaseSize.w = selCanvas.width;
  138. this._selCanvaseSize.h = selCanvas.height;
  139. this.assistCtrl = new AssistCtrl(this);
  140. this.assistRuler = new AssistRulerCtrl(this);
  141. this.assistMagnet = new AssistMagnetCtrl(this);
  142. viewport.addEventListener("mousedown", this.onDocMouseDown.bind(this));
  143. window.addEventListener("resize", this.onResize.bind(this));
  144. this.gizmo.on("change", ()=>{
  145. this.upgateGizmoStyle();
  146. this.helper.extendStreamCard(this.store.currStreamCardId);
  147. })
  148. }
  149. _mouseDownFlag = "";
  150. _mouseDownTimestamp = 0;
  151. _downClickedCompId = "";
  152. onDocMouseDown(e: MouseEvent) {
  153. this._mouseDownTimestamp = Date.now();
  154. if (e.button != 0 || !this.pageEl || !this.selCanvas || this.controls.editorCtrl.isMoving() ) return;
  155. document.addEventListener("mousemove", this.onDocMouseMove, {
  156. capture: true,
  157. });
  158. //mouseup和click都会被触发, 监听click事件可以阻止子组件的点击行为
  159. document.addEventListener("click", this.onDocMouseUp.bind(this), {
  160. capture: true,
  161. once: true,
  162. });
  163. const draging = this.assistRuler?.dragTest(e)
  164. this._state = draging ? MODE_RULER_DRAG : MODE_NONE;
  165. const sel = this.selCanvas.getBoundingClientRect();
  166. this._selBox = sel;
  167. const pos = this.getViewportPos(e);
  168. this._selDownX = pos.x;
  169. this._selDownY = pos.y;
  170. this._downClientX = e.clientX;
  171. this._downClientY = e.clientY;
  172. this._downClickedCompId = this.compClickTest2(e);
  173. this._downed = true;
  174. this._mouseDownFlag = this.getDivTransformFlag(e.target as any);
  175. const gizmo = this.gizmo;
  176. if (!draging) {
  177. if (!this._mouseDownFlag) {
  178. //选框点击判断
  179. let isClickSelRect = false;
  180. if (gizmo.selected.length > 0) {
  181. const pos = this.viewportPos2DesignPos(e.clientX, e.clientY);
  182. isClickSelRect = gizmo.testClick(pos.x, pos.y) as boolean;
  183. if (isClickSelRect) {
  184. this._state = MODE_MOVING;
  185. }
  186. }
  187. if (!isClickSelRect) {
  188. //点击在选框之外
  189. this._state = MODE_SEL_RECT;
  190. }
  191. } else if (this._mouseDownFlag == "rotate") {
  192. this._state = MODE_ROTATE;
  193. } else if (this._mouseDownFlag.indexOf("move") > -1) {
  194. this._state = MODE_MOVING;
  195. } else if (this._mouseDownFlag.indexOf("scale") > -1) {
  196. this._state = MODE_SCALE_SCALE
  197. } else if (this._mouseDownFlag.indexOf("ruler") > -1) {
  198. this._state = MODE_RULER_LINE;
  199. }
  200. }
  201. this._movePreClientX = this._downClientX;
  202. this._movePreClientY = this._downClientY;
  203. this._initMovePos.x = -1;
  204. this._initMovePos.y = -1;
  205. this.gizmo.state.mouse = this._mouseDownFlag;
  206. }
  207. _initMovePos = { x: -1, y: -1 };
  208. getDivFlag(div: HTMLElement, flag = "editable") {
  209. let c: any = div;
  210. if (!c) return "";
  211. let i = 0;
  212. do {
  213. if (c[flag]) return c[flag];
  214. c = c.parentElement;
  215. i += 1;
  216. if (i > 16) {
  217. return "";
  218. }
  219. } while (c);
  220. return "";
  221. }
  222. getDivId(div: HTMLElement) {
  223. let c: any = div;
  224. if (!c) return;
  225. let i = 0;
  226. do {
  227. if (c.id) return c.id;
  228. c = c.parentElement;
  229. i += 1;
  230. if (i > 5) {
  231. return;
  232. }
  233. } while (c);
  234. }
  235. getDivTransformFlag(div: HTMLElement) {
  236. const id = this.getDivId(div);
  237. if (!id) return "";
  238. if (
  239. id.indexOf("rotate") > -1 ||
  240. id.indexOf("move") > -1 ||
  241. id.indexOf("scale") > -1 ||
  242. id.indexOf("toolbar") > -1 ||
  243. id.indexOf("ruler") > -1
  244. )
  245. return id;
  246. return "";
  247. }
  248. compClickTest2(e: MouseEvent) {
  249. const compId = this.getDivFlag(e.target as any, "compId");
  250. console.log("down click=>", compId);
  251. return compId;
  252. }
  253. compClickTest(e: MouseEvent) {
  254. const page = this.controls.pageCtrl;
  255. const cards = page.streamCardIds;
  256. let n = cards.length;
  257. const compMap = page.designData.compMap;
  258. //@ts-ignore
  259. const pbox = this.pageEl.getBoundingClientRect();
  260. const pageX = e.clientX - pbox?.left;
  261. const Out: any[] = [];
  262. while (n--) {
  263. const cardComp = compMap[cards[n]];
  264. const box = cardComp.$el.getBoundingClientRect();
  265. const cardY = e.clientY - box.top;
  266. const cardChilds = cardComp.children.default || [];
  267. let maxZ = -1;
  268. let topItem = null;
  269. for (const key of cardChilds) {
  270. const c = compMap[key];
  271. const m = Matrix.createFromDiv(c.$el);
  272. const localp = m.applyInverse(new Point(pageX, cardY));
  273. const cw = this.helper.designSizeToPx(c.layout.size?.[0] as number);
  274. const ch = this.helper.designSizeToPx(c.layout.size?.[1] as number);
  275. const out =
  276. localp.x < 0 || localp.x > cw || localp.y < 0 || localp.y > ch;
  277. if (!out) {
  278. let z = 0;
  279. if (z > maxZ) {
  280. maxZ = z;
  281. topItem = {
  282. id: key,
  283. el: c.$el,
  284. cardX: pageX,
  285. cardY: cardY,
  286. cardId: cards[n],
  287. startMatrix: m,
  288. };
  289. }
  290. }
  291. }
  292. if (topItem) {
  293. Out.push(topItem);
  294. return Out;
  295. }
  296. }
  297. return Out;
  298. }
  299. streamCardClickTest(e: MouseEvent) {
  300. const page = this.controls.pageCtrl;
  301. const cards = page.streamCardIds;
  302. let n = cards.length;
  303. const compMap = page.designData.compMap;
  304. //@ts-ignore
  305. const pbox = this.pageEl.getBoundingClientRect();
  306. const pageX = e.clientX - pbox?.left;
  307. if (pageX < 0 || pageX > pbox.width) return "";
  308. while (n--) {
  309. const card = compMap[cards[n]];
  310. const box = card.$el.getBoundingClientRect();
  311. if (e.clientY >= box.top && e.clientY <= box.bottom)
  312. return { id: cards[n], x: pageX, y: e.clientY - box.top };
  313. }
  314. return "";
  315. }
  316. _moveSelectUpdated = false;
  317. translate(xOffset: number, yOffset: number) {
  318. this.gizmo.translate(xOffset, yOffset);
  319. }
  320. movingMousemove(e: MouseEvent) {
  321. const gizmo = this.gizmo
  322. const magnet = this.assistMagnet as AssistMagnetCtrl;
  323. if (this._initMovePos.x == -1 && this._initMovePos.y == -1) {
  324. this._initMovePos = { x: gizmo.parent.x, y: gizmo.parent.y };
  325. }
  326. magnet.test(e);
  327. const s = this.controls.editorCtrl.state.scale;
  328. gizmo.translate(
  329. (magnet.clientX - this._movePreClientX) / s,
  330. (magnet.clientY - this._movePreClientY ) / s
  331. );
  332. }
  333. _movePreClientX = 0;
  334. _movePreClientY = 0;
  335. onDocMouseMove = (e: MouseEvent) => {
  336. if (!this.pageEl) return;
  337. if (this._state) {
  338. e.preventDefault();
  339. e.stopPropagation();
  340. }
  341. switch (this._state) {
  342. case MODE_SEL_RECT: //选框模式
  343. this.drawSelRect(e);
  344. break;
  345. case MODE_MOVING:
  346. this.movingMousemove(e);
  347. break;
  348. case MODE_ROTATE:
  349. this.rotateMousemove(e);
  350. break;
  351. case MODE_SCALE_SCALE:
  352. this.scaleMousemove(e);
  353. break
  354. case MODE_RULER_LINE:
  355. this.assistRuler?.rulerLineMouseMove(e);
  356. break;
  357. case MODE_RULER_DRAG:
  358. this.assistRuler?.onDragMove(e);
  359. break;
  360. }
  361. this._movePreClientY = e.clientY;
  362. this._movePreClientX = e.clientX;
  363. };
  364. get compMap() {
  365. const page = this.controls.pageCtrl;
  366. return page.designData.compMap;
  367. }
  368. onDocMouseUp(e: MouseEvent) {
  369. let isClick = false;
  370. let offsetT = Date.now() - this._mouseDownTimestamp;
  371. const dx = Math.abs(e.clientX - this._downClientX);
  372. const dy = Math.abs(e.clientY - this._downClientY);
  373. if (dx < 2 && dy < 2 && offsetT < 200) {
  374. isClick = true;
  375. }
  376. const page = this.controls.pageCtrl;
  377. const gizmo = this.controls.selectCtrl.gizmo;
  378. gizmo.state.setMouse("");
  379. document.removeEventListener("mousemove", this.onDocMouseMove, {
  380. capture: true,
  381. });
  382. if (this._mouseDownFlag == "toolbar") {
  383. return;
  384. }
  385. if (isClick) {
  386. this._state = MODE_NONE;
  387. if ((!e.shiftKey && !e.ctrlKey) ) {
  388. this.controls.editorCtrl.clickPickComp(this._downClickedCompId);
  389. } else {
  390. const paths = this.helper.getCompTrees(this._downClickedCompId)
  391. if (paths[2]) {
  392. this._selectObjs([paths[2].id], e)
  393. }
  394. }
  395. if (gizmo.lastSelChanged) {
  396. history.submit();
  397. }
  398. }
  399. if (this._state == MODE_SEL_RECT && !isClick) {
  400. //选择空间转 streamCard空间
  401. const card = page.currStreamCard;
  402. const box = card.$el.getBoundingClientRect();
  403. const s = this.controls.editorCtrl.state.scale;
  404. this.rectSelect(
  405. (this._lastSelRect[0] - box.left)/s,
  406. (this._lastSelRect[1] - box.top) / s,
  407. this._lastSelRect[2] / s,
  408. this._lastSelRect[3] / s,
  409. e
  410. );
  411. if (gizmo.lastSelChanged) {
  412. history.submit();
  413. }
  414. }
  415. if (this._state == MODE_ROTATE) {
  416. this.rotateMouseUp(e);
  417. } else if (
  418. this._state == MODE_SCALE_SCALE
  419. ) {
  420. this.scaleMouseUp(e);
  421. } else if (this._state == MODE_MOVING) {
  422. this.moveMouseUp(e, isClick);
  423. } else if (this._state == MODE_RULER_LINE) {
  424. this.assistRuler?.rulerLineMouseUp(e, isClick)
  425. }else if (this._state == MODE_RULER_DRAG) {
  426. this.assistRuler?.onDragUp(e)
  427. }
  428. this._state = MODE_NONE;
  429. this._downed = false;
  430. this._moveSelectUpdated = false;
  431. this.upgateGizmoStyle();
  432. this.helper.extendStreamCard(this.store.currStreamCardId);
  433. this.assistRuler?.draw();
  434. this.assistMagnet?.onMouseUp();
  435. }
  436. moveMouseUp(e: MouseEvent, clicked: boolean) {
  437. const initX = this._initMovePos.x,
  438. initY = this._initMovePos.y;
  439. if (initX == -1 && initY == -1) return;
  440. this.gizmo.history.submit();
  441. }
  442. rectSelect(x: number, y: number, width: number, height: number, e:MouseEvent) {
  443. const childs =
  444. this.compMap[this.controls.pageCtrl.state.currStreamCardId].children.default || [];
  445. let n = childs.length;
  446. const outs:string[] = [];
  447. while (n--) {
  448. const o = new CompObject(this.compMap[childs[n]]);
  449. if (o.testRect({ x, y, w: width, h: height }, true)) {
  450. //相交
  451. outs.push(o.comp.id);
  452. }
  453. }
  454. this._selectObjs(outs, e);
  455. }
  456. _selectObjs( outs:string[], e:MouseEvent) {
  457. //过滤掉锁定的对象
  458. let n = outs.length;
  459. while(n--) {
  460. const c = outs[n]
  461. const comp = this.helper.findComp(c)as DesignComp;
  462. if (comp.layout.locked) {
  463. outs.splice(n, 1);
  464. }
  465. }
  466. const gizemo = this.controls.selectCtrl.gizmo;
  467. let objs = gizemo.selected.map(item=>item.comp.id);
  468. let lastId = outs[outs.length-1];
  469. if (e.shiftKey) {
  470. objs.forEach(o=>{
  471. if (outs.indexOf(o) == -1) {
  472. outs.push(o);
  473. }
  474. })
  475. }
  476. let selected = outs;
  477. if (e.ctrlKey) {//反选
  478. selected = [];
  479. objs.forEach(o=>{
  480. if (outs.indexOf(o) == -1) selected.push(o);
  481. })
  482. lastId = selected[selected.length-1] || "";
  483. }
  484. if (lastId) {
  485. this.controls.propsCtrl.showProp(lastId);
  486. this.controls.pageCtrl.setCurrComp(lastId);
  487. }
  488. if (selected.length < 1) {
  489. this.controls.propsCtrl.showProp(this.store.currStreamCardId);
  490. }
  491. this.gizmo.selectObjs(selected);
  492. }
  493. upgateGizmoStyle() {
  494. this.transferStyle.mode = this._state;
  495. const selected = this.gizmo.selected;
  496. if (selected.length < 1) {
  497. this.transferStyle.showGizmo = false;
  498. return;
  499. }
  500. this.assistCtrl?.flashDrawCardDists();
  501. this.transferStyle.showGizmo = false;
  502. const s = this.controls.editorCtrl.state.scale;
  503. //@ts-ignore
  504. const yoff = this.store.currStreamCard.$el.getBoundingClientRect().top - this.pageEl?.getBoundingClientRect().top;
  505. this.transferStyle.baseCardTop = yoff / s + "px";
  506. this.transferStyle.showGizmo = true;
  507. const selector = this.gizmo;
  508. let obj = this.gizmo.parent;
  509. let w = selector.rect.width,
  510. h = selector.rect.height;
  511. let tmp = new Matrix();
  512. tmp.copyFrom(obj.worldTransform);
  513. let matrix = `matrix(${tmp.a},${tmp.b},${tmp.c},${tmp.d},${tmp.tx},${tmp.ty})`;
  514. tmp.rotate(-tmp.getRotate());
  515. tmp.invert();
  516. let matrixInvert = `matrix(${tmp.a},${tmp.b},${tmp.c},${tmp.d},0,0)`;
  517. this.transferStyle.width = w;
  518. this.transferStyle.height = h;
  519. this.transferStyle.relWidth = w * obj.scale.x;
  520. this.transferStyle.relHeight = h * obj.scale.y;
  521. this.transferStyle.matrix = matrix;
  522. this.transferStyle.matrixInvert = matrixInvert;
  523. this.transferStyle.showOrthScale = selected.length == 1;
  524. if (selected.length == 1) {
  525. const comp = selected[0].comp
  526. if (comp.compKey == "Group") {
  527. this.transferStyle.showOrthScale = false;
  528. }
  529. if (comp.layout.locked) {
  530. this.transferStyle.showGizmo = false;
  531. }
  532. if (comp.compKey == "Text") {
  533. if (!this.helper.isStreamCardChild(comp.id)) {
  534. this.transferStyle.showGizmo = false;
  535. }
  536. }
  537. }
  538. }
  539. selectId(id: string) {
  540. //选中ids之前 id对应组件必须已经渲染
  541. console.log("selectId=>", id);
  542. }
  543. _lastSelRect = [0, 0, 0, 0];
  544. getViewportPos(e:MouseEvent) {
  545. this._tempPos.x = (e.clientX - this._selBox.left); /// this.controls.editorCtrl.state.scale;
  546. this._tempPos.y = (e.clientY - this._selBox.top ); /// this.controls.editorCtrl.state.scale;
  547. return this._tempPos;
  548. }
  549. drawSelRect(e: MouseEvent) {
  550. this.assistRuler?.draw();
  551. const ctx = this._selCtx;
  552. const dx = this._selDownX;
  553. const dy = this._selDownY;
  554. const pos = this.getViewportPos(e);
  555. const currX = pos.x;
  556. const currY = pos.y;
  557. const x = Math.min(currX, dx),
  558. y = Math.min(dy, currY);
  559. ctx.fillStyle = "rgba(232, 139, 0, 0.16)";
  560. const w = Math.abs(currX - dx);
  561. const h = Math.abs(currY - dy);
  562. ctx.fillRect(x * 2, y * 2, w * 2, h * 2);
  563. ctx.lineWidth = 2;
  564. ctx.strokeStyle = "#E88B00";
  565. ctx.strokeRect(x * 2, y * 2, w * 2, h * 2);
  566. this._lastSelRect[0] = x + this._selBox.left;
  567. this._lastSelRect[1] = y + this._selBox.top;
  568. this._lastSelRect[2] = w;
  569. this._lastSelRect[3] = h;
  570. }
  571. checkHover() {
  572. this.selCanvas;
  573. }
  574. onResize() {
  575. const b = this.selCanvas.getBoundingClientRect();
  576. this.selCanvas.width = b.width * 2;
  577. this.selCanvas.height = b.height * 2;
  578. this._selCtx = this.selCanvas.getContext("2d") as CanvasRenderingContext2D;
  579. this._selCanvaseSize.w = b.width * 2;
  580. this._selCanvaseSize.h = b.height * 2;
  581. }
  582. //
  583. checkIntersect(compId: string, e: MouseEvent) {
  584. const currCard = this.store.currStreamCard.$el;
  585. const page = this.controls.pageCtrl;
  586. const comp = page.designData.compMap[compId];
  587. //排除坐标没有在streamCard空间内的坐标
  588. //把当前的card坐标转为 组件的自己local坐标判断是否在方框外面
  589. const cardBox = currCard.getBoundingClientRect();
  590. const cardX = e.clientX - cardBox.left;
  591. const cardY = e.clientY - cardBox.top;
  592. //const m = Matrix.createFromComp(comp.layout.transform)
  593. }
  594. get objContainer() {
  595. return this.gizmo
  596. };
  597. getSelectBound() {
  598. const Objc = this.objContainer
  599. const w = Objc.getBound();
  600. const s = this.controls.editorCtrl.state.scale;
  601. w.x = w.x * s;
  602. w.y = w.y * s;
  603. w.width = w.width *s;
  604. w.height = w.height *s;
  605. return w;
  606. }
  607. emitChange() {
  608. const selected = this.selected;
  609. if (selected.length && selected[0]) {
  610. this.bus.emit("showProps", selected[0].from);
  611. } else {
  612. this.bus.emit("showProps");
  613. }
  614. this.bus.emit("selectedChange");
  615. }
  616. rotateCenter?: { x: number; y: number };
  617. ratatePre = 0;
  618. objinitAngleRad = 0;
  619. rotateCmd = false;
  620. lastRad = 0;
  621. rotateMousemove(e: MouseEvent) {
  622. const pos = this.viewportPos2DesignPos(e.clientX, e.clientY)
  623. let StartX = pos.x;
  624. let StartY = pos.y;
  625. const objContainer = this.objContainer;
  626. //获取当前屏幕坐标和选框中心点坐标,计算旋转值
  627. if (!this.rotateCenter) {
  628. //let rect = this.objContainer.parent.getBounds(false);
  629. let center = objContainer.setPivot(4);
  630. this.rotateCenter = center;
  631. let vec = { x: StartX - center.x, y: StartY - center.y };
  632. let angle = Math.atan2(vec.y, vec.x);
  633. if (angle < 0) angle += 2 * Math.PI;
  634. this.ratatePre = angle;
  635. this.objinitAngleRad = objContainer.parent.rotation;
  636. this.rotateCmd = true;
  637. return;
  638. }
  639. let center = this.rotateCenter;
  640. let vec = { x: StartX - center.x, y: StartY - center.y };
  641. let angle = Math.atan2(vec.y, vec.x);
  642. if (angle < 0) angle += 2 * Math.PI;
  643. let dta = this.objinitAngleRad + angle - this.ratatePre;
  644. if (e.shiftKey) {
  645. //规整到0 90 180 270
  646. if (dta < 0) dta += 2 * Math.PI;
  647. let Deg45 = Math.PI / 4.0;
  648. let Deg90 = Math.PI / 2.0;
  649. let Deg135 = Deg45 * 3;
  650. let Deg225 = Deg45 * 5;
  651. let Deg270 = Deg45 * 6;
  652. let Deg315 = Deg45 * 7;
  653. if (dta < Deg45) {
  654. dta = 0;
  655. } else if (dta < Deg135) {
  656. dta = Deg90;
  657. } else if (dta < Deg225) {
  658. dta = Math.PI;
  659. } else if (dta < Deg315) {
  660. dta = Deg270;
  661. } else {
  662. dta = 0;
  663. }
  664. }
  665. this.lastRad = dta;
  666. objContainer.rotate(dta);
  667. // this.emit("translateChange", this.objContainer)
  668. this.upgateGizmoStyle();
  669. }
  670. rotateMouseUp(e: MouseEvent) {
  671. this.rotateCenter = undefined;
  672. if (!this.rotateCmd) return;
  673. this.rotateCmd = false;
  674. this.gizmo.history.submit();
  675. }
  676. //缩放选中的对象
  677. scalePivot?: any;
  678. scaleIndex = 0;
  679. mainAxisVector = { x: 0, y: 0 };
  680. initScale = { x: 1, y: 1 };
  681. mainAxisVectorLenth = 0;
  682. xAxisVector = { x: 1, y: 1 };
  683. xAxisVectorLength = 0;
  684. yAxisVector = { x: 1, y: 1 };
  685. yAxisVectorLength = 0;
  686. scaleCmd = false;
  687. lastScale = { x: 1, y: 1 };
  688. initScaleWith = { w: 0, h: 0 };
  689. // 0 --5-- 1
  690. // | |
  691. // 8 4 6
  692. // | |
  693. // 3 --7---2
  694. scaleMousemove(event: MouseEvent) {
  695. let dirIndexs = [
  696. "scaleBottomright",
  697. "scaleBottomleft",
  698. "scaleTopleft",
  699. "scaleTopright",
  700. "scaleCenter",
  701. "scalebottom",
  702. "scaleleft",
  703. "scaletop",
  704. "scaleright"
  705. ];
  706. const maget = this.assistMagnet as AssistMagnetCtrl;
  707. maget.test(event);
  708. const pos = this.viewportPos2DesignPos(maget.clientX, maget.clientY)
  709. let StartX = pos.x;
  710. let StartY = pos.y;
  711. console.log("StartX=>", StartX)
  712. const objContainer = this.objContainer;
  713. const gizmo = this.gizmo;
  714. //获取当前屏幕坐标和选框中心点坐标,计算旋转值
  715. if (!this.scalePivot) {
  716. let dir = this._mouseDownFlag;
  717. const scaleIndex = dirIndexs.indexOf(dir);
  718. let pivot = objContainer.setPivot(scaleIndex);
  719. this.scaleIndex = scaleIndex;
  720. this.scalePivot = pivot;
  721. this.mainAxisVector = { x: StartX - pivot.x, y: StartY - pivot.y };
  722. let scale = objContainer.parent.scale;
  723. this.initScale = { x: scale.x, y: scale.y };
  724. this.initScaleWith = { w: objContainer.width, h: objContainer.height };
  725. this.mainAxisVectorLenth = VectorLenth(
  726. this.mainAxisVector.x,
  727. this.mainAxisVector.y
  728. );
  729. let ret = objContainer.getPivotXY(scaleIndex);
  730. this.xAxisVector = ret.x;
  731. this.xAxisVectorLength = VectorLenth(ret.x.x, ret.x.y);
  732. this.yAxisVector = ret.y;
  733. this.yAxisVectorLength = VectorLenth(ret.y.x, ret.y.y);
  734. return;
  735. }
  736. this.scaleCmd = true;
  737. let center = this.scalePivot;
  738. let vec = { x: StartX - center.x, y: StartY - center.y };
  739. if (event.shiftKey) {
  740. //按住shift 自由缩放
  741. let dtaX = Project(vec, this.xAxisVector) / this.xAxisVectorLength;
  742. let dtaY = Project(vec, this.yAxisVector) / this.yAxisVectorLength;
  743. this.lastScale.x = dtaX * this.initScale.x;
  744. this.lastScale.y = dtaY * this.initScale.y;
  745. // objContainer.scale(this.lastScale.x, this.lastScale.y);
  746. const currW = this.initScaleWith.w * this.lastScale.x;
  747. objContainer.scaleSize(currW, this.lastScale.y * this.initScaleWith.h);
  748. } else {
  749. let mainVec = this.mainAxisVector;
  750. let dtaScale = Project(vec, mainVec) / this.mainAxisVectorLenth;
  751. let i = dirIndexs.indexOf(this._mouseDownFlag);
  752. if (i < 4) {
  753. this.lastScale.x = dtaScale * this.initScale.x;
  754. this.lastScale.y = dtaScale * this.initScale.y;
  755. gizmo.scale(this.lastScale.x, this.lastScale.y);
  756. } else if (i == 6 || i == 8) {
  757. this.lastScale.x = dtaScale * this.initScale.x;
  758. gizmo.scaleX(this.lastScale.x);
  759. } else if (i == 5 || i == 7) {
  760. this.lastScale.y = dtaScale * this.initScale.y;
  761. gizmo.scaleY(this.lastScale.y);
  762. }
  763. }
  764. this.upgateGizmoStyle();
  765. }
  766. scaleMouseUp(event: MouseEvent) {
  767. this.scalePivot = undefined;
  768. if (this.scaleCmd) {
  769. this.scaleCmd = false;
  770. this.gizmo.history.submit();
  771. }
  772. }
  773. }