transfer.ts 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. import { CompBase } from "./base"
  2. import { HistoryController } from "./history";
  3. export type TransferValue = {
  4. stageX: number;
  5. stageY: number;
  6. showOrthScale: boolean;
  7. toolbars: string[];
  8. matrixInvert: string;
  9. relWidth: number;
  10. relHeight: number;
  11. showScaleBridge: boolean;
  12. showScaletop: boolean;
  13. showScalebottom: boolean;
  14. selected: string[];
  15. }
  16. export class NodeTransfer extends CompBase<TransferValue> {
  17. override onCreated() {
  18. this.compKey = "Transfer";
  19. this.state.size = [750, 60];
  20. }
  21. override init(): void {
  22. this._bounds.clear();
  23. this.value.selected.forEach(id=>{
  24. const obj = this.getObj(id);
  25. obj.getLocalBounds()
  26. this._bounds.addBounds(obj._bounds);
  27. })
  28. const rect = this._bounds.getRectangle();
  29. this.state.size[0] = rect.width;
  30. this.state.size[1] = rect.height;
  31. this.position = {x: rect.x, y: rect.y} as any;
  32. this.value.onSelectedChanged(()=>{
  33. this.updateSeleted();
  34. })
  35. super.init();
  36. this.updateMatrix();
  37. }
  38. translate(x: number, y:number) {
  39. this.x += x;
  40. this.y += y;
  41. this.updateMatrix();
  42. }
  43. rotate(r:number) {
  44. this.rotation = r;
  45. this.updateMatrix();
  46. }
  47. updateSeleted() {
  48. const selected = this.value.selected;
  49. console.log("selected=>", selected);
  50. const parent = this.getObj(this.value.selected[0]).parent as CompBase<any>; //获取父亲对象
  51. const last = [] as string[];
  52. parent.state.children.forEach(id=>{
  53. if (selected.indexOf(id) == -1) last.push(id);
  54. })
  55. parent.changeChildNodes(last, false);
  56. //更新当前内容
  57. this.changeChildNodes(selected, true);
  58. }
  59. }
  60. export function createNodeTransfer(values: Partial<TransferValue>, h: HistoryController) {
  61. const options = { stageX: 0,
  62. showScaletop: true,
  63. selected: [],
  64. showScalebottom: true, stageY: 0,relWidth:0, relHeight:0, showScaleBridge:true, matrixInvert:"matrix(1,0,0,1,0,0)", showOrthScale:false, toolbars:[], ...values};
  65. const obj = new NodeTransfer(options)
  66. obj.init();
  67. obj.setHistory(h);
  68. return obj;
  69. }