@univerjs/sheets-drawing-ui 0.5.4 → 0.5.5-nightly.202501201336
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/facade.js +1 -1
- package/lib/cjs/index.js +2 -2
- package/lib/es/facade.js +237 -219
- package/lib/es/index.js +1841 -1379
- package/lib/types/facade/f-worksheet.d.ts +111 -2
- package/lib/types/index.d.ts +1 -1
- package/lib/types/services/canvas-float-dom-manager.service.d.ts +62 -7
- package/lib/umd/facade.js +1 -1
- package/lib/umd/index.js +2 -2
- package/package.json +13 -13
- package/LICENSE +0 -176
package/lib/cjs/facade.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var R=Object.defineProperty;var B=(i,t,e)=>t in i?R(i,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):i[t]=e;var O=(i,t,e)=>B(i,typeof t!="symbol"?t+"":t,e);const o=require("@univerjs/core"),h=require("@univerjs/drawing"),k=require("@univerjs/engine-render"),c=require("@univerjs/sheets-drawing-ui"),v=require("@univerjs/sheets-ui"),u=require("@univerjs/sheets-drawing"),T=require("@univerjs/sheets-ui/facade"),E=require("@univerjs/sheets/facade"),A=require("@univerjs/ui");var j=Object.defineProperty,F=Object.getOwnPropertyDescriptor,y=(i,t,e,r)=>{for(var n=r>1?void 0:r?F(t,e):t,s=i.length-1,a;s>=0;s--)(a=i[s])&&(n=(r?a(t,e,n):a(n))||n);return r&&n&&j(t,e,n),n},p=(i,t)=>(e,r)=>t(e,r,i);function M(i,t){const{from:e,to:r,flipY:n=!1,flipX:s=!1,angle:a=0,skewX:g=0,skewY:d=0}=i.sheetTransform,{column:I,columnOffset:l,row:w,rowOffset:_}=e,S=v.convertPositionSheetOverGridToAbsolute(i.unitId,i.subUnitId,{from:e,to:r},t),{left:D,top:C,width:b,height:G}=S;return{...i,column:I,columnOffset:l,row:w,rowOffset:_,width:b,height:G,flipY:n,flipX:s,angle:a,skewX:g,skewY:d}}function x(i,t,e){const{column:r,columnOffset:n,row:s,rowOffset:a,flipY:g=!1,flipX:d=!1,angle:I=0,skewX:l=0,skewY:w=0,width:_,height:S}=i,D=v.convertPositionCellToSheetOverGrid(i.unitId,i.subUnitId,{column:r,columnOffset:n,row:s,rowOffset:a},_,S,t,e),{sheetTransform:C,transform:b}=D;return{...i,sheetTransform:{...C,flipY:g,flipX:d,angle:I,skewX:l,skewY:w},transform:{...b,flipY:g,flipX:d,angle:I,skewX:l,skewY:w}}}let f=class{constructor(i,t,e){O(this,"_image");this._injector=e,this._image={drawingId:o.generateRandomId(6),drawingType:o.DrawingTypeEnum.DRAWING_IMAGE,imageSourceType:o.ImageSourceType.BASE64,source:"",unitId:i,subUnitId:t,column:0,columnOffset:0,row:0,rowOffset:0,width:0,height:0}}setImage(i){const e=this._injector.get(k.IRenderManagerService).getRenderById(i.unitId);if(!e)throw new Error(`Render Unit with unitId ${i.unitId} not found`);const r=e.with(v.SheetSkeletonManagerService);return i.sheetTransform==null&&(i.sheetTransform={from:{column:0,columnOffset:0,row:0,rowOffset:0},to:{column:0,columnOffset:0,row:0,rowOffset:0}}),this._image=M(i,r),this}setSource(i,t){const e=t!=null?t:o.ImageSourceType.URL;return this._image.source=i,this._image.imageSourceType=e,this}getsource(){return this._image.source}getSourceType(){return this._image.imageSourceType}setColumn(i){return this._image.column=i,this}setRow(i){return this._image.row=i,this}setColumnOffset(i){return this._image.columnOffset=i,this}setRowOffset(i){return this._image.rowOffset=i,this}setWidth(i){return this._image.width=i,this}setHeight(i){return this._image.height=i,this}setAnchorType(i){return this._image.anchorType=i,this}setCropTop(i){return this._initializeSrcRect(),this._image.srcRect.top=i,this}setCropLeft(i){return this._initializeSrcRect(),this._image.srcRect.left=i,this}setCropBottom(i){return this._initializeSrcRect(),this._image.srcRect.bottom=i,this}setCropRight(i){return this._initializeSrcRect(),this._image.srcRect.right=i,this}_initializeSrcRect(){this._image.srcRect==null&&(this._image.srcRect={top:0,left:0,bottom:0,right:0})}setRotate(i){return this._image.angle=i,this}setUnitId(i){return this._image.unitId=i,this}setSubUnitId(i){return this._image.subUnitId=i,this}async buildAsync(){const t=this._injector.get(k.IRenderManagerService).getRenderById(this._image.unitId);if(!t)throw new Error(`Render Unit with unitId ${this._image.unitId} not found`);const e=t.with(v.ISheetSelectionRenderService),r=t.with(v.SheetSkeletonManagerService);if(this._image.width===0||this._image.height===0){const n=await h.getImageSize(this._image.source),s=n.width,a=n.height;this._image.width===0&&(this._image.width=s),this._image.height===0&&(this._image.height=a)}return x(this._image,e,r)}};f=y([p(2,o.Inject(o.Injector))],f);let m=class extends o.FBase{constructor(i,t,e){super(),this._image=i,this._commandService=t,this._injector=e}getId(){return this._image.drawingId}getType(){return this._image.drawingType}remove(){return this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._image.unitId,drawings:[this._image]})}toBuilder(){const i=this._injector.createInstance(f);return i.setImage(this._image),i}setSource(i,t){const e=t!=null?t:o.ImageSourceType.URL;return this._image.source=i,this._image.imageSourceType=e,this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._image.unitId,drawings:[this._image]})}async setPositionAsync(i,t,e,r){const n=this.toBuilder();n.setColumn(t),n.setRow(i),e!=null&&n.setRowOffset(e),r!=null&&n.setColumnOffset(r);const s=await n.buildAsync();return this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._image.unitId,drawings:[s]})}async setSizeAsync(i,t){const e=this.toBuilder();e.setWidth(i),e.setHeight(t);const r=await e.buildAsync();return this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._image.unitId,drawings:[r]})}setCrop(i,t,e,r){return this._image.srcRect==null&&(this._image.srcRect={top:0,left:0,bottom:0,right:0}),i!=null&&(this._image.srcRect.top=i),t!=null&&(this._image.srcRect.left=t),e!=null&&(this._image.srcRect.bottom=e),r!=null&&(this._image.srcRect.right=r),this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._image.unitId,drawings:[this._image]})}setRotate(i){return this._image.sheetTransform.angle=i,this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._image.unitId,drawings:[this._image]})}setForward(){return this._commandService.syncExecuteCommand(c.SetDrawingArrangeCommand.id,{unitId:this._image.unitId,subUnitId:this._image.subUnitId,drawingIds:[this._image.drawingId],arrangeType:o.ArrangeTypeEnum.forward})}setBackward(){return this._commandService.syncExecuteCommand(c.SetDrawingArrangeCommand.id,{unitId:this._image.unitId,subUnitId:this._image.subUnitId,drawingIds:[this._image.drawingId],arrangeType:o.ArrangeTypeEnum.backward})}setBack(){return this._commandService.syncExecuteCommand(c.SetDrawingArrangeCommand.id,{unitId:this._image.unitId,subUnitId:this._image.subUnitId,drawingIds:[this._image.drawingId],arrangeType:o.ArrangeTypeEnum.back})}setFront(){return this._commandService.syncExecuteCommand(c.SetDrawingArrangeCommand.id,{unitId:this._image.unitId,subUnitId:this._image.subUnitId,drawingIds:[this._image.drawingId],arrangeType:o.ArrangeTypeEnum.front})}};m=y([p(1,o.ICommandService),p(2,o.Inject(o.Injector))],m);class P extends E.FWorksheet{addFloatDomToPosition(t,e){const r=this._workbook.getUnitId(),n=this._worksheet.getSheetId(),{key:s,disposableCollection:a}=T.transformComponentKey(t,this._injector.get(A.ComponentManager)),d=this._injector.get(c.SheetCanvasFloatDomManagerService).addFloatDomToPosition({...t,componentKey:s,unitId:r,subUnitId:n},e);return d?(a.add(d.dispose),{id:d.id,dispose:()=>{a.dispose(),d.dispose()}}):(a.dispose(),null)}async insertImage(t,e,r,n,s){const a=this.newOverGridImage();if(typeof t=="string")a.setSource(t);else{const I=await t.getBlob().getDataAsString();a.setSource(I,o.ImageSourceType.BASE64)}e!==void 0?a.setColumn(e):a.setColumn(0),r!==void 0?a.setRow(r):a.setRow(0),n!==void 0?a.setColumnOffset(n):a.setColumnOffset(0),s!==void 0?a.setRowOffset(s):a.setRowOffset(0);const g=await a.buildAsync();return this._commandService.syncExecuteCommand(c.InsertSheetDrawingCommand.id,{unitId:this._fWorkbook.getId(),drawings:[g]})}insertImages(t){const e=t.map(r=>(r.unitId=this._fWorkbook.getId(),r.subUnitId=this.getSheetId(),r));return this._commandService.syncExecuteCommand(c.InsertSheetDrawingCommand.id,{unitId:this._fWorkbook.getId(),drawings:e}),this}deleteImages(t){const e=t.map(r=>({unitId:this._fWorkbook.getId(),drawingId:r.getId(),subUnitId:this.getSheetId(),drawingType:r.getType()}));return this._commandService.syncExecuteCommand(c.RemoveSheetDrawingCommand.id,{unitId:this._fWorkbook.getId(),drawings:e}),this}getImages(){const e=this._injector.get(u.ISheetDrawingService).getDrawingData(this._fWorkbook.getId(),this.getSheetId()),r=[];for(const n in e){const s=e[n];s.drawingType===o.DrawingTypeEnum.DRAWING_IMAGE&&r.push(this._injector.createInstance(m,s))}return r}getImageById(t){const r=this._injector.get(u.ISheetDrawingService).getDrawingByParam({unitId:this._fWorkbook.getId(),subUnitId:this.getSheetId(),drawingId:t});return r&&r.drawingType===o.DrawingTypeEnum.DRAWING_IMAGE?this._injector.createInstance(m,r):null}getActiveImages(){const e=this._injector.get(u.ISheetDrawingService).getFocusDrawings(),r=[];for(const n in e){const s=e[n];r.push(this._injector.createInstance(m,s))}return r}updateImages(t){return this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._fWorkbook.getId(),drawings:t}),this}onImageInserted(t){const e=this._injector.get(u.ISheetDrawingService);return o.toDisposable(e.add$.subscribe(r=>{const n=r.map(s=>this._injector.createInstance(m,e.getDrawingByParam(s)));t(n)}))}onImageDeleted(t){const e=this._injector.get(u.ISheetDrawingService);return o.toDisposable(e.remove$.subscribe(r=>{const n=r.map(s=>this._injector.createInstance(m,e.getDrawingByParam(s)));t(n)}))}onImageChanged(t){const e=this._injector.get(u.ISheetDrawingService);return o.toDisposable(e.update$.subscribe(r=>{const n=r.map(s=>this._injector.createInstance(m,e.getDrawingByParam(s)));t(n)}))}newOverGridImage(){const t=this._fWorkbook.getId(),e=this.getSheetId();return this._injector.createInstance(f,t,e)}}E.FWorksheet.extend(P);class U extends o.FEnum{get DrawingType(){return o.DrawingTypeEnum}get ImageSourceType(){return o.ImageSourceType}get SheetDrawingAnchorType(){return u.SheetDrawingAnchorType}}o.FEnum.extend(U);class W extends o.FEventName{get BeforeOverGridImageChange(){return"BeforeOverGridImageChange"}get OverGridImageChanged(){return"OverGridImageChanged"}get BeforeOverGridImageInsert(){return"BeforeOverGridImageInsert"}get OverGridImageInserted(){return"OverGridImageInserted"}get BeforeOverGridImageRemove(){return"BeforeOverGridImageRemove"}get OverGridImageRemoved(){return"OverGridImageRemoved"}get BeforeOverGridImageSelect(){return"BeforeOverGridImageSelect"}get OverGridImageSelected(){return"OverGridImageSelected"}}o.FEventName.extend(W);class q extends o.FUniver{_initialize(t){const e=t.get(o.ICommandService);this.disposeWithMe(e.beforeCommandExecuted(r=>{switch(r.id){case c.InsertSheetDrawingCommand.id:this._beforeOverGridImageInsert(r.params);break;case c.RemoveSheetDrawingCommand.id:this._beforeOverGridImageRemove(r.params);break;case c.SetSheetDrawingCommand.id:this._beforeOverGridImageChange(r.params);break;case h.SetDrawingSelectedOperation.id:this._beforeOverGridImageSelect(r.params);break}})),this.disposeWithMe(e.onCommandExecuted(r=>{switch(r.id){case c.InsertSheetDrawingCommand.id:this._overGridImageInserted(r.params);break;case c.RemoveSheetDrawingCommand.id:this._overGridImageRemoved(r.params);break;case c.SetSheetDrawingCommand.id:this._overGridImageChanged(r.params);break;case h.SetDrawingSelectedOperation.id:this._overGridImageSelected(r.params);break}}))}_beforeOverGridImageInsert(t){if(!this.hasEventCallback(this.Event.BeforeOverGridImageInsert))return;const e=this.getActiveWorkbook();if(e==null||t==null)return;const{drawings:r}=t,n={workbook:e,insertImageParams:r};if(this.fireEvent(this.Event.BeforeOverGridImageInsert,n),n.cancel)throw new Error("Canceled by BeforeOverGridImageInsert event")}_overGridImageInserted(t){if(!this.hasEventCallback(this.Event.OverGridImageInserted))return;const e=this.getActiveWorkbook();if(e==null||t==null)return;const{drawings:r}=t;this.fireEvent(this.Event.OverGridImageInserted,{workbook:e,images:this._createFOverGridImage(r)})}_beforeOverGridImageRemove(t){if(!this.hasEventCallback(this.Event.BeforeOverGridImageRemove))return;const e=this.getActiveWorkbook();if(e==null||t==null)return;const{drawings:r}=t,n=this._injector.get(h.IDrawingManagerService),s=r.map(g=>n.getDrawingByParam(g)),a={workbook:e,images:this._createFOverGridImage(s)};if(this.fireEvent(this.Event.BeforeOverGridImageRemove,a),a.cancel)throw new Error("Canceled by BeforeOverGridImageRemove event")}_overGridImageRemoved(t){if(!this.hasEventCallback(this.Event.OverGridImageRemoved))return;const e=this.getActiveWorkbook();if(e==null||t==null)return;const{drawings:r}=t;this.fireEvent(this.Event.OverGridImageRemoved,{workbook:e,removeImageParams:r})}_beforeOverGridImageChange(t){if(!this.hasEventCallback(this.Event.BeforeOverGridImageChange))return;const e=this.getActiveWorkbook();if(e==null||t==null)return;const{drawings:r}=t,n=this._injector.get(h.IDrawingManagerService),s=[];r.forEach(g=>{const d=n.getDrawingByParam(g);d!=null&&s.push({changeParam:g,image:this._injector.createInstance(m,d)})});const a={workbook:e,images:s};if(this.fireEvent(this.Event.BeforeOverGridImageChange,a),a.cancel)throw n.updateNotification(r),new Error("Canceled by BeforeOverGridImageChange event")}_overGridImageChanged(t){if(!this.hasEventCallback(this.Event.OverGridImageChanged))return;const e=this.getActiveWorkbook();if(e==null||t==null)return;const{drawings:r}=t,n=this._injector.get(h.IDrawingManagerService),s=r.map(a=>this._injector.createInstance(m,n.getDrawingByParam(a)));this.fireEvent(this.Event.OverGridImageChanged,{workbook:e,images:s})}_beforeOverGridImageSelect(t){if(!this.hasEventCallback(this.Event.BeforeOverGridImageSelect))return;const e=this._injector.get(h.IDrawingManagerService),r=this.getActiveWorkbook();if(r==null)return;const n=e.getFocusDrawings(),s=t.map(g=>e.getDrawingByParam(g)),a={workbook:r,selectedImages:this._createFOverGridImage(s),oldSelectedImages:this._createFOverGridImage(n)};if(this.fireEvent(this.Event.BeforeOverGridImageSelect,a),a.cancel)throw new Error("Canceled by BeforeOverGridImageSelect event")}_overGridImageSelected(t){if(!this.hasEventCallback(this.Event.OverGridImageSelected))return;const e=this.getActiveWorkbook(),r=this._injector.get(h.IDrawingManagerService);if(e==null)return;const n=t.map(s=>r.getDrawingByParam(s));this.fireEvent(this.Event.OverGridImageSelected,{workbook:e,selectedImages:this._createFOverGridImage(n)})}_createFOverGridImage(t){return t.map(e=>this._injector.createInstance(m,e))}}o.FUniver.extend(q);
|
|
1
|
+
"use strict";var B=Object.defineProperty;var j=(i,t,e)=>t in i?B(i,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):i[t]=e;var y=(i,t,e)=>j(i,typeof t!="symbol"?t+"":t,e);const o=require("@univerjs/core"),I=require("@univerjs/drawing"),E=require("@univerjs/engine-render"),c=require("@univerjs/sheets-drawing-ui"),v=require("@univerjs/sheets-ui"),l=require("@univerjs/sheets-drawing"),p=require("@univerjs/sheets-ui/facade"),G=require("@univerjs/sheets/facade"),D=require("@univerjs/ui");var A=Object.defineProperty,F=Object.getOwnPropertyDescriptor,R=(i,t,e,r)=>{for(var n=r>1?void 0:r?F(t,e):t,s=i.length-1,a;s>=0;s--)(a=i[s])&&(n=(r?a(t,e,n):a(n))||n);return r&&n&&A(t,e,n),n},C=(i,t)=>(e,r)=>t(e,r,i);function M(i,t){const{from:e,to:r,flipY:n=!1,flipX:s=!1,angle:a=0,skewX:d=0,skewY:g=0}=i.sheetTransform,{column:u,columnOffset:m,row:w,rowOffset:S}=e,_=v.convertPositionSheetOverGridToAbsolute(i.unitId,i.subUnitId,{from:e,to:r},t),{left:k,top:O,width:b,height:T}=_;return{...i,column:u,columnOffset:m,row:w,rowOffset:S,width:b,height:T,flipY:n,flipX:s,angle:a,skewX:d,skewY:g}}function U(i,t,e){const{column:r,columnOffset:n,row:s,rowOffset:a,flipY:d=!1,flipX:g=!1,angle:u=0,skewX:m=0,skewY:w=0,width:S,height:_}=i,k=v.convertPositionCellToSheetOverGrid(i.unitId,i.subUnitId,{column:r,columnOffset:n,row:s,rowOffset:a},S,_,t,e),{sheetTransform:O,transform:b}=k;return{...i,sheetTransform:{...O,flipY:d,flipX:g,angle:u,skewX:m,skewY:w},transform:{...b,flipY:d,flipX:g,angle:u,skewX:m,skewY:w}}}let f=class{constructor(i,t,e){y(this,"_image");this._injector=e,this._image={drawingId:o.generateRandomId(6),drawingType:o.DrawingTypeEnum.DRAWING_IMAGE,imageSourceType:o.ImageSourceType.BASE64,source:"",unitId:i,subUnitId:t,column:0,columnOffset:0,row:0,rowOffset:0,width:0,height:0}}setImage(i){const e=this._injector.get(E.IRenderManagerService).getRenderById(i.unitId);if(!e)throw new Error(`Render Unit with unitId ${i.unitId} not found`);const r=e.with(v.SheetSkeletonManagerService);return i.sheetTransform==null&&(i.sheetTransform={from:{column:0,columnOffset:0,row:0,rowOffset:0},to:{column:0,columnOffset:0,row:0,rowOffset:0}}),this._image=M(i,r),this}setSource(i,t){const e=t!=null?t:o.ImageSourceType.URL;return this._image.source=i,this._image.imageSourceType=e,this}getsource(){return this._image.source}getSourceType(){return this._image.imageSourceType}setColumn(i){return this._image.column=i,this}setRow(i){return this._image.row=i,this}setColumnOffset(i){return this._image.columnOffset=i,this}setRowOffset(i){return this._image.rowOffset=i,this}setWidth(i){return this._image.width=i,this}setHeight(i){return this._image.height=i,this}setAnchorType(i){return this._image.anchorType=i,this}setCropTop(i){return this._initializeSrcRect(),this._image.srcRect.top=i,this}setCropLeft(i){return this._initializeSrcRect(),this._image.srcRect.left=i,this}setCropBottom(i){return this._initializeSrcRect(),this._image.srcRect.bottom=i,this}setCropRight(i){return this._initializeSrcRect(),this._image.srcRect.right=i,this}_initializeSrcRect(){this._image.srcRect==null&&(this._image.srcRect={top:0,left:0,bottom:0,right:0})}setRotate(i){return this._image.angle=i,this}setUnitId(i){return this._image.unitId=i,this}setSubUnitId(i){return this._image.subUnitId=i,this}async buildAsync(){const t=this._injector.get(E.IRenderManagerService).getRenderById(this._image.unitId);if(!t)throw new Error(`Render Unit with unitId ${this._image.unitId} not found`);const e=t.with(v.ISheetSelectionRenderService),r=t.with(v.SheetSkeletonManagerService);if(this._image.width===0||this._image.height===0){const n=await I.getImageSize(this._image.source),s=n.width,a=n.height;this._image.width===0&&(this._image.width=s),this._image.height===0&&(this._image.height=a)}return U(this._image,e,r)}};f=R([C(2,o.Inject(o.Injector))],f);let h=class extends o.FBase{constructor(i,t,e){super(),this._image=i,this._commandService=t,this._injector=e}getId(){return this._image.drawingId}getType(){return this._image.drawingType}remove(){return this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._image.unitId,drawings:[this._image]})}toBuilder(){const i=this._injector.createInstance(f);return i.setImage(this._image),i}setSource(i,t){const e=t!=null?t:o.ImageSourceType.URL;return this._image.source=i,this._image.imageSourceType=e,this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._image.unitId,drawings:[this._image]})}async setPositionAsync(i,t,e,r){const n=this.toBuilder();n.setColumn(t),n.setRow(i),e!=null&&n.setRowOffset(e),r!=null&&n.setColumnOffset(r);const s=await n.buildAsync();return this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._image.unitId,drawings:[s]})}async setSizeAsync(i,t){const e=this.toBuilder();e.setWidth(i),e.setHeight(t);const r=await e.buildAsync();return this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._image.unitId,drawings:[r]})}setCrop(i,t,e,r){return this._image.srcRect==null&&(this._image.srcRect={top:0,left:0,bottom:0,right:0}),i!=null&&(this._image.srcRect.top=i),t!=null&&(this._image.srcRect.left=t),e!=null&&(this._image.srcRect.bottom=e),r!=null&&(this._image.srcRect.right=r),this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._image.unitId,drawings:[this._image]})}setRotate(i){return this._image.sheetTransform.angle=i,this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._image.unitId,drawings:[this._image]})}setForward(){return this._commandService.syncExecuteCommand(c.SetDrawingArrangeCommand.id,{unitId:this._image.unitId,subUnitId:this._image.subUnitId,drawingIds:[this._image.drawingId],arrangeType:o.ArrangeTypeEnum.forward})}setBackward(){return this._commandService.syncExecuteCommand(c.SetDrawingArrangeCommand.id,{unitId:this._image.unitId,subUnitId:this._image.subUnitId,drawingIds:[this._image.drawingId],arrangeType:o.ArrangeTypeEnum.backward})}setBack(){return this._commandService.syncExecuteCommand(c.SetDrawingArrangeCommand.id,{unitId:this._image.unitId,subUnitId:this._image.subUnitId,drawingIds:[this._image.drawingId],arrangeType:o.ArrangeTypeEnum.back})}setFront(){return this._commandService.syncExecuteCommand(c.SetDrawingArrangeCommand.id,{unitId:this._image.unitId,subUnitId:this._image.subUnitId,drawingIds:[this._image.drawingId],arrangeType:o.ArrangeTypeEnum.front})}};h=R([C(1,o.ICommandService),C(2,o.Inject(o.Injector))],h);class x extends G.FWorksheet{addFloatDomToPosition(t,e){const r=this._workbook.getUnitId(),n=this._worksheet.getSheetId(),{key:s,disposableCollection:a}=p.transformComponentKey(t,this._injector.get(D.ComponentManager)),g=this._injector.get(c.SheetCanvasFloatDomManagerService).addFloatDomToPosition({...t,componentKey:s,unitId:r,subUnitId:n},e);return g?(a.add(g.dispose),{id:g.id,dispose:()=>{a.dispose(),g.dispose()}}):(a.dispose(),null)}addFloatDomToRange(t,e,r,n){const s=this._workbook.getUnitId(),a=this._worksheet.getSheetId(),{key:d,disposableCollection:g}=p.transformComponentKey(e,this._injector.get(D.ComponentManager)),m=this._injector.get(c.SheetCanvasFloatDomManagerService).addFloatDomToRange(t.getRange(),{...e,componentKey:d,unitId:s,subUnitId:a},r,n);return m?(g.add(m.dispose),{id:m.id,dispose:()=>{g.dispose(),m.dispose()}}):(g.dispose(),null)}addFloatDomToColumnHeader(t,e,r,n){const s=this._workbook.getUnitId(),a=this._worksheet.getSheetId(),{key:d,disposableCollection:g}=p.transformComponentKey(e,this._injector.get(D.ComponentManager)),m=this._injector.get(c.SheetCanvasFloatDomManagerService).addFloatDomToColumnHeader(t,{...e,componentKey:d,unitId:s,subUnitId:a},r,n);return m?(g.add(m.dispose),{id:m.id,dispose:()=>{g.dispose(),m.dispose()}}):(g.dispose(),null)}async insertImage(t,e,r,n,s){const a=this.newOverGridImage();if(typeof t=="string")a.setSource(t);else{const u=await t.getBlob().getDataAsString();a.setSource(u,o.ImageSourceType.BASE64)}e!==void 0?a.setColumn(e):a.setColumn(0),r!==void 0?a.setRow(r):a.setRow(0),n!==void 0?a.setColumnOffset(n):a.setColumnOffset(0),s!==void 0?a.setRowOffset(s):a.setRowOffset(0);const d=await a.buildAsync();return this._commandService.syncExecuteCommand(c.InsertSheetDrawingCommand.id,{unitId:this._fWorkbook.getId(),drawings:[d]})}insertImages(t){const e=t.map(r=>(r.unitId=this._fWorkbook.getId(),r.subUnitId=this.getSheetId(),r));return this._commandService.syncExecuteCommand(c.InsertSheetDrawingCommand.id,{unitId:this._fWorkbook.getId(),drawings:e}),this}deleteImages(t){const e=t.map(r=>({unitId:this._fWorkbook.getId(),drawingId:r.getId(),subUnitId:this.getSheetId(),drawingType:r.getType()}));return this._commandService.syncExecuteCommand(c.RemoveSheetDrawingCommand.id,{unitId:this._fWorkbook.getId(),drawings:e}),this}getImages(){const e=this._injector.get(l.ISheetDrawingService).getDrawingData(this._fWorkbook.getId(),this.getSheetId()),r=[];for(const n in e){const s=e[n];s.drawingType===o.DrawingTypeEnum.DRAWING_IMAGE&&r.push(this._injector.createInstance(h,s))}return r}getImageById(t){const r=this._injector.get(l.ISheetDrawingService).getDrawingByParam({unitId:this._fWorkbook.getId(),subUnitId:this.getSheetId(),drawingId:t});return r&&r.drawingType===o.DrawingTypeEnum.DRAWING_IMAGE?this._injector.createInstance(h,r):null}getActiveImages(){const e=this._injector.get(l.ISheetDrawingService).getFocusDrawings(),r=[];for(const n in e){const s=e[n];r.push(this._injector.createInstance(h,s))}return r}updateImages(t){return this._commandService.syncExecuteCommand(c.SetSheetDrawingCommand.id,{unitId:this._fWorkbook.getId(),drawings:t}),this}onImageInserted(t){const e=this._injector.get(l.ISheetDrawingService);return o.toDisposable(e.add$.subscribe(r=>{const n=r.map(s=>this._injector.createInstance(h,e.getDrawingByParam(s)));t(n)}))}onImageDeleted(t){const e=this._injector.get(l.ISheetDrawingService);return o.toDisposable(e.remove$.subscribe(r=>{const n=r.map(s=>this._injector.createInstance(h,e.getDrawingByParam(s)));t(n)}))}onImageChanged(t){const e=this._injector.get(l.ISheetDrawingService);return o.toDisposable(e.update$.subscribe(r=>{const n=r.map(s=>this._injector.createInstance(h,e.getDrawingByParam(s)));t(n)}))}newOverGridImage(){const t=this._fWorkbook.getId(),e=this.getSheetId();return this._injector.createInstance(f,t,e)}}G.FWorksheet.extend(x);class P extends o.FEnum{get DrawingType(){return o.DrawingTypeEnum}get ImageSourceType(){return o.ImageSourceType}get SheetDrawingAnchorType(){return l.SheetDrawingAnchorType}}o.FEnum.extend(P);class W extends o.FEventName{get BeforeOverGridImageChange(){return"BeforeOverGridImageChange"}get OverGridImageChanged(){return"OverGridImageChanged"}get BeforeOverGridImageInsert(){return"BeforeOverGridImageInsert"}get OverGridImageInserted(){return"OverGridImageInserted"}get BeforeOverGridImageRemove(){return"BeforeOverGridImageRemove"}get OverGridImageRemoved(){return"OverGridImageRemoved"}get BeforeOverGridImageSelect(){return"BeforeOverGridImageSelect"}get OverGridImageSelected(){return"OverGridImageSelected"}}o.FEventName.extend(W);class q extends o.FUniver{_initialize(t){const e=t.get(o.ICommandService);this.disposeWithMe(e.beforeCommandExecuted(r=>{switch(r.id){case c.InsertSheetDrawingCommand.id:this._beforeOverGridImageInsert(r.params);break;case c.RemoveSheetDrawingCommand.id:this._beforeOverGridImageRemove(r.params);break;case c.SetSheetDrawingCommand.id:this._beforeOverGridImageChange(r.params);break;case I.SetDrawingSelectedOperation.id:this._beforeOverGridImageSelect(r.params);break}})),this.disposeWithMe(e.onCommandExecuted(r=>{switch(r.id){case c.InsertSheetDrawingCommand.id:this._overGridImageInserted(r.params);break;case c.RemoveSheetDrawingCommand.id:this._overGridImageRemoved(r.params);break;case c.SetSheetDrawingCommand.id:this._overGridImageChanged(r.params);break;case I.SetDrawingSelectedOperation.id:this._overGridImageSelected(r.params);break}}))}_beforeOverGridImageInsert(t){if(!this.hasEventCallback(this.Event.BeforeOverGridImageInsert))return;const e=this.getActiveWorkbook();if(e==null||t==null)return;const{drawings:r}=t,n={workbook:e,insertImageParams:r};if(this.fireEvent(this.Event.BeforeOverGridImageInsert,n),n.cancel)throw new Error("Canceled by BeforeOverGridImageInsert event")}_overGridImageInserted(t){if(!this.hasEventCallback(this.Event.OverGridImageInserted))return;const e=this.getActiveWorkbook();if(e==null||t==null)return;const{drawings:r}=t;this.fireEvent(this.Event.OverGridImageInserted,{workbook:e,images:this._createFOverGridImage(r)})}_beforeOverGridImageRemove(t){if(!this.hasEventCallback(this.Event.BeforeOverGridImageRemove))return;const e=this.getActiveWorkbook();if(e==null||t==null)return;const{drawings:r}=t,n=this._injector.get(I.IDrawingManagerService),s=r.map(d=>n.getDrawingByParam(d)),a={workbook:e,images:this._createFOverGridImage(s)};if(this.fireEvent(this.Event.BeforeOverGridImageRemove,a),a.cancel)throw new Error("Canceled by BeforeOverGridImageRemove event")}_overGridImageRemoved(t){if(!this.hasEventCallback(this.Event.OverGridImageRemoved))return;const e=this.getActiveWorkbook();if(e==null||t==null)return;const{drawings:r}=t;this.fireEvent(this.Event.OverGridImageRemoved,{workbook:e,removeImageParams:r})}_beforeOverGridImageChange(t){if(!this.hasEventCallback(this.Event.BeforeOverGridImageChange))return;const e=this.getActiveWorkbook();if(e==null||t==null)return;const{drawings:r}=t,n=this._injector.get(I.IDrawingManagerService),s=[];r.forEach(d=>{const g=n.getDrawingByParam(d);g!=null&&s.push({changeParam:d,image:this._injector.createInstance(h,g)})});const a={workbook:e,images:s};if(this.fireEvent(this.Event.BeforeOverGridImageChange,a),a.cancel)throw n.updateNotification(r),new Error("Canceled by BeforeOverGridImageChange event")}_overGridImageChanged(t){if(!this.hasEventCallback(this.Event.OverGridImageChanged))return;const e=this.getActiveWorkbook();if(e==null||t==null)return;const{drawings:r}=t,n=this._injector.get(I.IDrawingManagerService),s=r.map(a=>this._injector.createInstance(h,n.getDrawingByParam(a)));this.fireEvent(this.Event.OverGridImageChanged,{workbook:e,images:s})}_beforeOverGridImageSelect(t){if(!this.hasEventCallback(this.Event.BeforeOverGridImageSelect))return;const e=this._injector.get(I.IDrawingManagerService),r=this.getActiveWorkbook();if(r==null)return;const n=e.getFocusDrawings(),s=t.map(d=>e.getDrawingByParam(d)),a={workbook:r,selectedImages:this._createFOverGridImage(s),oldSelectedImages:this._createFOverGridImage(n)};if(this.fireEvent(this.Event.BeforeOverGridImageSelect,a),a.cancel)throw new Error("Canceled by BeforeOverGridImageSelect event")}_overGridImageSelected(t){if(!this.hasEventCallback(this.Event.OverGridImageSelected))return;const e=this.getActiveWorkbook(),r=this._injector.get(I.IDrawingManagerService);if(e==null)return;const n=t.map(s=>r.getDrawingByParam(s));this.fireEvent(this.Event.OverGridImageSelected,{workbook:e,selectedImages:this._createFOverGridImage(n)})}_createFOverGridImage(t){return t.map(e=>this._injector.createInstance(h,e))}}o.FUniver.extend(q);
|
package/lib/cjs/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var Kt=Object.defineProperty;var zt=(i,r,n)=>r in i?Kt(i,r,{enumerable:!0,configurable:!0,writable:!0,value:n}):i[r]=n;var q=(i,r,n)=>zt(i,typeof r!="symbol"?r+"":r,n);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("@univerjs/core"),Nt=require("@univerjs/docs-drawing"),O=require("@univerjs/drawing"),pe=require("@univerjs/drawing-ui"),A=require("@univerjs/engine-render"),f=require("@univerjs/sheets-drawing"),U=require("@univerjs/sheets-ui"),F=require("@univerjs/ui"),B=require("rxjs"),_=require("@univerjs/sheets"),J=require("react"),jt=require("@univerjs/docs-ui"),ie=require("@univerjs/design"),qt="sheets-drawing-ui.config",Ot={},G={id:"sheet.operation.clear-drawing-transformer",type:u.CommandType.MUTATION,handler:(i,r)=>{const n=i.get(A.IRenderManagerService);return r.forEach(e=>{var t,o;(o=(t=n.getRenderById(e))==null?void 0:t.scene.getTransformer())==null||o.debounceRefreshControls()}),!0}},Ae={id:"sheet.command.remove-sheet-image",type:u.CommandType.COMMAND,handler:(i,r)=>{var D,M,T;const n=i.get(u.ICommandService),e=i.get(u.IUndoRedoService),t=i.get(_.SheetInterceptorService),o=i.get(f.ISheetDrawingService);if(!r)return!1;const{drawings:s}=r,a=[];s.forEach(y=>{const{unitId:R}=y;a.push(R)});const d=o.getBatchRemoveOp(s),{unitId:m,subUnitId:l,undo:c,redo:g,objects:h}=d,p=t.onCommandExecute({id:Ae.id,params:r}),w={id:f.SetDrawingApplyMutation.id,params:{unitId:m,subUnitId:l,op:g,objects:h,type:f.DrawingApplyType.REMOVE}},S={id:f.SetDrawingApplyMutation.id,params:{unitId:m,subUnitId:l,op:c,objects:h,type:f.DrawingApplyType.INSERT}};return u.sequenceExecute([...(D=p.preRedos)!=null?D:[],w,...p.redos],n)?(e.pushUndoRedo({unitID:m,undoMutations:[...(M=p.preUndos)!=null?M:[],S,...p.undos,{id:G.id,params:a}],redoMutations:[...(T=p.preRedos)!=null?T:[],w,...p.redos,{id:G.id,params:a}]}),!0):!1}},Wt="COMPONENT_SHEET_DRAWING_PANEL",St={id:"sidebar.operation.sheet-image",type:u.CommandType.COMMAND,handler:async(i,r)=>{const n=i.get(F.ISidebarService),e=i.get(u.LocaleService),t=i.get(u.IUniverInstanceService),o=i.get(u.ICommandService);if(!_.getSheetCommandTarget(t))return!1;switch(r.value){case"open":n.open({header:{title:e.t("sheetImage.panel.title")},children:{label:Wt},onClose:()=>{o.syncExecuteCommand(O.SetDrawingSelectedOperation.id,[])},width:360});break;case"close":default:n.close();break}return!0}},_t={id:"sheet.operation.edit-sheet-image",type:u.CommandType.OPERATION,handler:(i,r)=>{const n=i.get(u.ICommandService);return r==null?!1:(n.syncExecuteCommand(O.SetDrawingSelectedOperation.id,[r]),n.executeCommand(St.id,{value:"open"}),!0)}};var ht={exports:{}},Ee={};/**
|
|
2
2
|
* @license React
|
|
3
3
|
* react-jsx-runtime.production.min.js
|
|
4
4
|
*
|
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
*
|
|
7
7
|
* This source code is licensed under the MIT license found in the
|
|
8
8
|
* LICENSE file in the root directory of this source tree.
|
|
9
|
-
*/var ze;function ht(){if(ze)return oe;ze=1;var i=Y,r=Symbol.for("react.element"),t=Symbol.for("react.fragment"),e=Object.prototype.hasOwnProperty,n=i.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,o={key:!0,ref:!0,__self:!0,__source:!0};function s(c,d,m){var l,a={},h=null,g=null;m!==void 0&&(h=""+m),d.key!==void 0&&(h=""+d.key),d.ref!==void 0&&(g=d.ref);for(l in d)e.call(d,l)&&!o.hasOwnProperty(l)&&(a[l]=d[l]);if(c&&c.defaultProps)for(l in d=c.defaultProps,d)a[l]===void 0&&(a[l]=d[l]);return{$$typeof:r,type:c,key:h,ref:g,props:a,_owner:n.current}}return oe.Fragment=t,oe.jsx=s,oe.jsxs=s,oe}var Ke;function mt(){return Ke||(Ke=1,be.exports=ht()),be.exports}var k=mt();const pt="univer-upload-loading",ft="univer-upload-loading-body",wt="univer-upload-loading-body-animation",St="univer-UniverCircleAnimation",_t="univer-upload-loading-body-text",ge={uploadLoading:pt,uploadLoadingBody:ft,uploadLoadingBodyAnimation:wt,univerCircleAnimation:St,uploadLoadingBodyText:_t},vt=()=>{const i=u.useDependency(E.IImageIoService),r=u.useDependency(u.LocaleService),[t,e]=Y.useState(0);return Y.useEffect(()=>{const n=i.change$.subscribe(o=>{e(o)});return()=>{n.unsubscribe()}},[i]),k.jsx("div",{style:{display:t>0?"block":"none"},className:ge.uploadLoading,children:k.jsxs("div",{className:ge.uploadLoadingBody,children:[k.jsx("div",{className:ge.uploadLoadingBodyAnimation}),k.jsx("div",{className:ge.uploadLoadingBodyText,children:`${r.t("uploadLoading.loading")}: ${t}`})]})})};var It=Object.defineProperty,Dt=Object.getOwnPropertyDescriptor,Ct=(i,r,t,e)=>{for(var n=e>1?void 0:e?Dt(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&It(r,t,n),n},J=(i,r)=>(t,e)=>r(t,e,i);let Se=class extends u.RxDisposable{constructor(r,t,e,n,o,s,c,d){super();V(this,"_initImagePopupMenu",new Set);this._injector=r,this._drawingManagerService=t,this._canvasPopManagerService=e,this._renderManagerService=n,this._univerInstanceService=o,this._contextService=s,this._uiPartsService=c,this._commandService=d,this._init()}_init(){this._univerInstanceService.getCurrentTypeOfUnit$(u.UniverInstanceType.UNIVER_SHEET).pipe(N.takeUntil(this.dispose$)).subscribe(r=>this._create(r)),this._univerInstanceService.getTypeOfUnitDisposed$(u.UniverInstanceType.UNIVER_SHEET).pipe(N.takeUntil(this.dispose$)).subscribe(r=>this._dispose(r)),this._univerInstanceService.getAllUnitsForType(u.UniverInstanceType.UNIVER_SHEET).forEach(r=>this._create(r)),this._uiPartsService.registerComponent(G.BuiltInUIPart.CONTENT,()=>u.connectInjector(vt,this._injector))}_dispose(r){const t=r.getUnitId();this._renderManagerService.removeRender(t)}_create(r){if(!r)return;const t=r.getUnitId();this._renderManagerService.has(t)&&!this._initImagePopupMenu.has(t)&&(this._popupMenuListener(t),this._initImagePopupMenu.add(t))}_hasCropObject(r){const t=r.getAllObjectsByOrder();for(const e of t)if(e instanceof ee.ImageCropperObject)return!0;return!1}_popupMenuListener(r){var o;const t=(o=this._renderManagerService.getRenderById(r))==null?void 0:o.scene;if(!t)return;const e=t.getTransformerByCreate();if(!e)return;let n;this.disposeWithMe(u.toDisposable(e.createControl$.subscribe(()=>{if(this._contextService.setContextValue(u.FOCUSING_COMMON_DRAWINGS,!0),this._hasCropObject(t))return;const s=e.getSelectedObjectMap();if(s.size>1){n==null||n.dispose();return}const c=s.values().next().value;if(!c)return;const d=c.oKey,m=this._drawingManagerService.getDrawingOKey(d);if(!m)return;const{unitId:l,subUnitId:a,drawingId:h,drawingType:g}=m,f=m.data;if(f&&f.disablePopup)return;n==null||n.dispose();const w=this._canvasPopManagerService.getFeatureMenu(l,a,h,g);n=this.disposeWithMe(this._canvasPopManagerService.attachPopupToObject(c,{componentKey:ee.COMPONENT_IMAGE_POPUP_MENU,direction:"horizontal",offset:[2,0],extraProps:{menuItems:w||this._getImageMenuItems(l,a,h,g)}}))}))),this.disposeWithMe(e.clearControl$.subscribe(()=>{n==null||n.dispose(),this._contextService.setContextValue(u.FOCUSING_COMMON_DRAWINGS,!1),this._commandService.syncExecuteCommand(E.SetDrawingSelectedOperation.id,[])})),this.disposeWithMe(this._contextService.contextChanged$.subscribe(s=>{s[u.FOCUSING_COMMON_DRAWINGS]===!1&&(n==null||n.dispose())})),this.disposeWithMe(e.changing$.subscribe(()=>{n==null||n.dispose()}))}_getImageMenuItems(r,t,e,n){return[{label:"image-popup.edit",index:0,commandId:We.id,commandParams:{unitId:r,subUnitId:t,drawingId:e},disable:n===u.DrawingTypeEnum.DRAWING_DOM},{label:"image-popup.delete",index:1,commandId:ce.id,commandParams:{unitId:r,drawings:[{unitId:r,subUnitId:t,drawingId:e}]},disable:!1},{label:"image-popup.crop",index:2,commandId:ee.OpenImageCropOperation.id,commandParams:{unitId:r,subUnitId:t,drawingId:e},disable:n===u.DrawingTypeEnum.DRAWING_DOM},{label:"image-popup.reset",index:3,commandId:ee.ImageResetSizeOperation.id,commandParams:[{unitId:r,subUnitId:t,drawingId:e}],disable:n===u.DrawingTypeEnum.DRAWING_DOM}]}};Se=Ct([J(0,u.Inject(u.Injector)),J(1,E.IDrawingManagerService),J(2,u.Inject(P.SheetCanvasPopManagerService)),J(3,U.IRenderManagerService),J(4,u.IUniverInstanceService),J(5,u.IContextService),J(6,u.Inject(G.IUIPartsService)),J(7,u.ICommandService)],Se);function F(i,r,t){const{from:e,to:n,flipY:o=!1,flipX:s=!1,angle:c=0,skewX:d=0,skewY:m=0}=i,l=t.getCurrent();if(l==null)return;const a=P.convertPositionSheetOverGridToAbsolute(l.unitId,l.sheetId,{from:e,to:n},t);let{left:h,top:g,width:f,height:w}=a;const S=t.getCurrentSkeleton(),I=S.rowHeaderWidth+S.columnTotalWidth,y=S.columnHeaderHeight+S.rowTotalHeight;return h+f>I&&(h=I-f),g+w>y&&(g=y-w),{flipY:o,flipX:s,angle:c,skewX:d,skewY:m,left:h,top:g,width:f,height:w}}function $(i,r){const{left:t=0,top:e=0,width:n=0,height:o=0,flipY:s=!1,flipX:c=!1,angle:d=0,skewX:m=0,skewY:l=0}=i,a=r.getCellWithCoordByOffset(t,e);if(a==null)return;const h={column:a.actualColumn,columnOffset:U.precisionTo(t-a.startX,1),row:a.actualRow,rowOffset:U.precisionTo(e-a.startY,1)},g=r.getCellWithCoordByOffset(t+n,e+o);if(g==null)return;const f={column:g.actualColumn,columnOffset:U.precisionTo(t+n-g.startX,1),row:g.actualRow,rowOffset:U.precisionTo(e+o-g.startY,1)};return{flipY:s,flipX:c,angle:d,skewX:m,skewY:l,from:h,to:f}}var yt=Object.defineProperty,Mt=Object.getOwnPropertyDescriptor,Rt=(i,r,t,e)=>{for(var n=e>1?void 0:e?Mt(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&yt(r,t,n),n},he=(i,r)=>(t,e)=>r(t,e,i);let Pe=class extends u.Disposable{constructor(i,r,t,e,n){super(),this._context=i,this._sheetDrawingService=r,this._drawingManagerService=t,this._sheetSelectionRenderService=e,this._sheetSkeletonManagerService=n,this._init()}_init(){this._drawingInitializeListener()}_drawingInitializeListener(){this._sheetDrawingService.initializeNotification(this._context.unitId);const i=this._sheetDrawingService.getDrawingDataForUnit(this._context.unitId);for(const r in i){const t=i[r];for(const e in t.data){const n=t.data[e];n.transform=F(n.sheetTransform,this._sheetSelectionRenderService,this._sheetSkeletonManagerService)}}this._drawingManagerService.registerDrawingData(this._context.unitId,this._sheetDrawingService.getDrawingDataForUnit(this._context.unitId)),this._drawingManagerService.initializeNotification(this._context.unitId)}};Pe=Rt([he(1,p.ISheetDrawingService),he(2,E.IDrawingManagerService),he(3,u.Inject(P.ISheetSelectionRenderService)),he(4,u.Inject(P.SheetSkeletonManagerService))],Pe);function Tt(i){const r=[];return i.forEach(t=>{const{parent:e,children:n}=t,{unitId:o,subUnitId:s,drawingId:c}=e,d=U.getGroupState(0,0,n.map(a=>a.transform||{})),m=n.map(a=>{const h=a.transform||{left:0,top:0},{unitId:g,subUnitId:f,drawingId:w}=a;return{unitId:g,subUnitId:f,drawingId:w,transform:{...h,left:h.left-d.left,top:h.top-d.top},groupId:c}}),l={unitId:o,subUnitId:s,drawingId:c,drawingType:u.DrawingTypeEnum.DRAWING_GROUP,transform:d};r.push({parent:l,children:m})}),r}function bt(i){const r=[];return i.forEach(t=>{const{parent:e,children:n}=t,{unitId:o,subUnitId:s,drawingId:c,transform:d={width:0,height:0}}=e;if(d==null)return;const m=n.map(a=>{const{transform:h}=a,{unitId:g,subUnitId:f,drawingId:w}=a,S=U.transformObjectOutOfGroup(h||{},d,d.width||0,d.height||0);return{unitId:g,subUnitId:f,drawingId:w,transform:S,groupId:void 0}}),l={unitId:o,subUnitId:s,drawingId:c,drawingType:u.DrawingTypeEnum.DRAWING_GROUP,transform:{left:0,top:0}};r.push({parent:l,children:m})}),r}const Le={id:"sheet.command.group-sheet-image",type:u.CommandType.COMMAND,handler:(i,r)=>{const t=i.get(u.ICommandService),e=i.get(u.IUndoRedoService),n=i.get(p.ISheetDrawingService);if(!r)return!1;const o=[];r.forEach(({parent:g,children:f})=>{o.push(g.unitId),f.forEach(w=>{o.push(w.unitId)})});const s=n.getGroupDrawingOp(r),{unitId:c,subUnitId:d,undo:m,redo:l,objects:a}=s;return t.syncExecuteCommand(p.SetDrawingApplyMutation.id,{op:l,unitId:c,subUnitId:d,objects:a,type:p.DrawingApplyType.GROUP})?(e.pushUndoRedo({unitID:c,undoMutations:[{id:p.SetDrawingApplyMutation.id,params:{op:m,unitId:c,subUnitId:d,objects:bt(a),type:p.DrawingApplyType.UNGROUP}},{id:x.id,params:o}],redoMutations:[{id:p.SetDrawingApplyMutation.id,params:{op:l,unitId:c,subUnitId:d,objects:a,type:p.DrawingApplyType.GROUP}},{id:x.id,params:o}]}),!0):!1}},de={id:"sheet.command.insert-sheet-image",type:u.CommandType.COMMAND,handler:(i,r)=>{var y,C,T;const t=i.get(u.ICommandService),e=i.get(u.IUndoRedoService),n=i.get(p.ISheetDrawingService),o=i.get(_.SheetInterceptorService);if(!r)return!1;const s=r.drawings,c=s.map(D=>D.unitId),d=n.getBatchAddOp(s),{unitId:m,subUnitId:l,undo:a,redo:h,objects:g}=d,f=o.onCommandExecute({id:de.id,params:r}),w={id:p.SetDrawingApplyMutation.id,params:{op:h,unitId:m,subUnitId:l,objects:g,type:p.DrawingApplyType.INSERT}},S={id:p.SetDrawingApplyMutation.id,params:{op:a,unitId:m,subUnitId:l,objects:g,type:p.DrawingApplyType.REMOVE}};return u.sequenceExecute([...(y=f.preRedos)!=null?y:[],w,...f.redos],t)?(e.pushUndoRedo({unitID:m,undoMutations:[...(C=f.preUndos)!=null?C:[],S,...f.undos,{id:x.id,params:c}],redoMutations:[...(T=f.preRedos)!=null?T:[],w,...f.redos,{id:x.id,params:c}]}),!0):!1}},xe={id:"sheet.command.set-drawing-arrange",type:u.CommandType.COMMAND,handler:(i,r)=>{const t=i.get(u.ICommandService),e=i.get(u.IUndoRedoService);if(!r)return!1;const n=i.get(p.ISheetDrawingService),{unitId:o,subUnitId:s,drawingIds:c,arrangeType:d}=r,m={unitId:o,subUnitId:s,drawingIds:c};let l;if(d===u.ArrangeTypeEnum.forward?l=n.getForwardDrawingsOp(m):d===u.ArrangeTypeEnum.backward?l=n.getBackwardDrawingOp(m):d===u.ArrangeTypeEnum.front?l=n.getFrontDrawingsOp(m):d===u.ArrangeTypeEnum.back&&(l=n.getBackDrawingsOp(m)),l==null)return!1;const{objects:a,redo:h,undo:g}=l;return t.syncExecuteCommand(p.SetDrawingApplyMutation.id,{op:h,unitId:o,subUnitId:s,objects:a,type:p.DrawingApplyType.ARRANGE})?(e.pushUndoRedo({unitID:o,undoMutations:[{id:p.SetDrawingApplyMutation.id,params:{op:g,unitId:o,subUnitId:s,objects:a,type:p.DrawingApplyType.ARRANGE}}],redoMutations:[{id:p.SetDrawingApplyMutation.id,params:{op:h,unitId:o,subUnitId:s,objects:a,type:p.DrawingApplyType.ARRANGE}}]}),!0):!1}},le={id:"sheet.command.set-sheet-image",type:u.CommandType.COMMAND,handler:(i,r)=>{const t=i.get(u.ICommandService),e=i.get(u.IUndoRedoService),n=i.get(p.ISheetDrawingService);if(!r)return!1;const{drawings:o}=r,s=n.getBatchUpdateOp(o),{unitId:c,subUnitId:d,undo:m,redo:l,objects:a}=s;return t.syncExecuteCommand(p.SetDrawingApplyMutation.id,{unitId:c,subUnitId:d,op:l,objects:a,type:p.DrawingApplyType.UPDATE})?(e.pushUndoRedo({unitID:c,undoMutations:[{id:p.SetDrawingApplyMutation.id,params:{unitId:c,subUnitId:d,op:m,objects:a,type:p.DrawingApplyType.UPDATE}},{id:x.id,params:[c]}],redoMutations:[{id:p.SetDrawingApplyMutation.id,params:{unitId:c,subUnitId:d,op:l,objects:a,type:p.DrawingApplyType.UPDATE}},{id:x.id,params:[c]}]}),!0):!1}},Be={id:"sheet.command.ungroup-sheet-image",type:u.CommandType.COMMAND,handler:(i,r)=>{const t=i.get(u.ICommandService),e=i.get(u.IUndoRedoService),n=i.get(p.ISheetDrawingService);if(!r)return!1;const o=[];r.forEach(({parent:g,children:f})=>{o.push(g.unitId),f.forEach(w=>{o.push(w.unitId)})});const s=n.getUngroupDrawingOp(r),{unitId:c,subUnitId:d,undo:m,redo:l,objects:a}=s;return t.syncExecuteCommand(p.SetDrawingApplyMutation.id,{op:l,unitId:c,subUnitId:d,objects:a,type:p.DrawingApplyType.UNGROUP})?(e.pushUndoRedo({unitID:c,undoMutations:[{id:p.SetDrawingApplyMutation.id,params:{op:m,unitId:c,subUnitId:d,objects:Tt(a),type:p.DrawingApplyType.GROUP}},{id:x.id,params:o}],redoMutations:[{id:p.SetDrawingApplyMutation.id,params:{op:l,unitId:c,subUnitId:d,objects:a,type:p.DrawingApplyType.UNGROUP}},{id:x.id,params:o}]}),!0):!1}};var Et=Object.defineProperty,Ot=Object.getOwnPropertyDescriptor,At=(i,r,t,e)=>{for(var n=e>1?void 0:e?Ot(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&Et(r,t,n),n},X=(i,r)=>(t,e)=>r(t,e,i);function Pt(i,r,t){const e=t*Math.PI/180,n=Math.abs(i*Math.cos(e))+Math.abs(r*Math.sin(e)),o=Math.abs(i*Math.sin(e))+Math.abs(r*Math.cos(e));return{rotatedWidth:n,rotatedHeight:o}}function et(i,r,t,e,n){var y;const{rotatedHeight:o,rotatedWidth:s}=Pt(t,e,n),d=i.get(U.IRenderManagerService).getRenderById(r.unitId);if(!d)return!1;const l=(y=d.with(P.SheetSkeletonManagerService).getWorksheetSkeleton(r.subUnitId))==null?void 0:y.skeleton;if(l==null)return!1;const a=l.getCellByIndex(r.row,r.col),h=a.mergeInfo.endX-a.mergeInfo.startX-2,g=a.mergeInfo.endY-a.mergeInfo.startY-2,f=s/o,S=Math.ceil(Math.min(h,g*f))/s,I=!S||Number.isNaN(S)?.001:S;return{width:t*I,height:e*I}}let ae=class extends u.Disposable{constructor(r,t,e,n,o,s,c,d,m,l,a,h,g){super();V(this,"_workbookSelections");this._context=r,this._skeletonManagerService=t,this._commandService=e,this._selectionRenderService=n,this._imageIoService=o,this._fileOpenerService=s,this._sheetDrawingService=c,this._drawingManagerService=d,this._contextService=m,this._messageService=l,this._localeService=a,this._injector=g,this._workbookSelections=h.getWorkbookSelections(this._context.unitId),this._updateImageListener(),this._updateOrderListener(),this._groupDrawingListener(),this._focusDrawingListener()}async insertFloatImage(){const r=await this._fileOpenerService.openFile({multiple:!0,accept:E.DRAWING_IMAGE_ALLOW_IMAGE_LIST.map(e=>`.${e.replace("image/","")}`).join(",")}),t=r.length;return t>E.DRAWING_IMAGE_COUNT_LIMIT?(this._messageService.show({type:K.MessageType.Error,content:this._localeService.t("update-status.exceedMaxCount",String(E.DRAWING_IMAGE_COUNT_LIMIT))}),!1):t===0?!1:(r.forEach(async e=>await this._insertFloatImage(e)),!0)}async insertCellImage(){const t=(await this._fileOpenerService.openFile({multiple:!1,accept:E.DRAWING_IMAGE_ALLOW_IMAGE_LIST.map(e=>`.${e.replace("image/","")}`).join(",")}))[0];return t?(await this._insertCellImage(t),!0):!1}async _insertFloatImage(r){let t;try{t=await this._imageIoService.saveImage(r)}catch(y){const C=y.message;C===E.ImageUploadStatusType.ERROR_EXCEED_SIZE?this._messageService.show({type:K.MessageType.Error,content:this._localeService.t("update-status.exceedMaxSize",String(E.DRAWING_IMAGE_ALLOW_SIZE/(1024*1024)))}):C===E.ImageUploadStatusType.ERROR_IMAGE_TYPE?this._messageService.show({type:K.MessageType.Error,content:this._localeService.t("update-status.invalidImageType")}):C===E.ImageUploadStatusType.ERROR_IMAGE&&this._messageService.show({type:K.MessageType.Error,content:this._localeService.t("update-status.invalidImage")})}if(t==null)return;const e=this._getUnitInfo(),{unitId:n,subUnitId:o}=e,{imageId:s,imageSourceType:c,source:d,base64Cache:m}=t,{width:l,height:a,image:h}=await E.getImageSize(m||""),{width:g,height:f}=this._context.scene;this._imageIoService.addImageSourceCache(d,c,h);let w=1;if(l>E.DRAWING_IMAGE_WIDTH_LIMIT||a>E.DRAWING_IMAGE_HEIGHT_LIMIT){const y=E.DRAWING_IMAGE_WIDTH_LIMIT/l,C=E.DRAWING_IMAGE_HEIGHT_LIMIT/a;w=Math.max(y,C)}const S=this._getImagePosition(l*w,a*w,g,f);if(S==null)return;const I={unitId:n,subUnitId:o,drawingId:s,drawingType:u.DrawingTypeEnum.DRAWING_IMAGE,imageSourceType:c,source:d,transform:F(S,this._selectionRenderService,this._skeletonManagerService),sheetTransform:S};this._commandService.executeCommand(de.id,{unitId:n,drawings:[I]})}async _insertCellImage(r){let t;try{t=await this._imageIoService.saveImage(r)}catch(S){const I=S.message;I===E.ImageUploadStatusType.ERROR_EXCEED_SIZE?this._messageService.show({type:K.MessageType.Error,content:this._localeService.t("update-status.exceedMaxSize",String(E.DRAWING_IMAGE_ALLOW_SIZE/(1024*1024)))}):I===E.ImageUploadStatusType.ERROR_IMAGE_TYPE?this._messageService.show({type:K.MessageType.Error,content:this._localeService.t("update-status.invalidImageType")}):I===E.ImageUploadStatusType.ERROR_IMAGE&&this._messageService.show({type:K.MessageType.Error,content:this._localeService.t("update-status.invalidImage")})}if(t==null)return;const{imageId:e,imageSourceType:n,source:o,base64Cache:s}=t,{width:c,height:d,image:m}=await E.getImageSize(s||"");this._imageIoService.addImageSourceCache(o,n,m);const l=this._workbookSelections.getCurrentLastSelection();if(!l)return!1;const a=u.createDocumentModelWithStyle("",{}),h=et(this._injector,{unitId:this._context.unitId,subUnitId:this._context.unit.getActiveSheet().getSheetId(),row:l.primary.actualRow,col:l.primary.actualColumn},c,d,0);if(!h)return!1;const g={size:{width:h.width,height:h.height},positionH:{relativeFrom:u.ObjectRelativeFromH.PAGE,posOffset:0},positionV:{relativeFrom:u.ObjectRelativeFromV.PARAGRAPH,posOffset:0},angle:0},f={unitId:a.getUnitId(),subUnitId:a.getUnitId(),drawingId:e,drawingType:u.DrawingTypeEnum.DRAWING_IMAGE,imageSourceType:n,source:o,transform:Ze.docDrawingPositionToTransform(g),docTransform:g,behindDoc:u.BooleanNumber.FALSE,title:"",description:"",layoutType:u.PositionedObjectLayoutType.INLINE,wrapText:u.WrapTextType.BOTH_SIDES,distB:0,distL:0,distR:0,distT:0},w=u.BuildTextUtils.drawing.add({documentDataModel:a,drawings:[f],selection:{collapsed:!0,startOffset:0,endOffset:0}});return w?(a.apply(w),this._commandService.syncExecuteCommand(_.SetRangeValuesCommand.id,{value:{[l.primary.actualRow]:{[l.primary.actualColumn]:{p:a.getSnapshot(),t:1}}}})):!1}_getUnitInfo(){const r=this._context.unit,t=r.getActiveSheet(),e=r.getUnitId(),n=t.getSheetId();return{unitId:e,subUnitId:n}}_getImagePosition(r,t,e,n){const o=this._workbookSelections.getCurrentSelections();let s={startRow:0,endRow:0,startColumn:0,endColumn:0};o&&o.length>0&&(s=o[o.length-1].range);const c=P.attachRangeWithCoord(this._skeletonManagerService.getCurrent().skeleton,s);if(c==null)return;let{startColumn:d,startRow:m,startX:l,startY:a}=c,h=!1;if(l+r>e&&(l=e-r,l<0&&(l=0,r=e),h=!0),a+t>n&&(a=n-t,a<0&&(a=0,t=n),h=!0),h){const S=this._selectionRenderService.getCellWithCoordByOffset(l,a);if(S==null)return;l=S.startX,a=S.startY,d=S.actualColumn,m=S.actualRow}const g={column:d,columnOffset:0,row:m,rowOffset:0},f=this._selectionRenderService.getCellWithCoordByOffset(l+r,a+t);if(f==null)return;const w={column:f.actualColumn,columnOffset:l+r-f.startX,row:f.actualRow,rowOffset:a+t-f.startY};return{from:g,to:w}}_updateOrderListener(){this.disposeWithMe(this._drawingManagerService.featurePluginOrderUpdate$.subscribe(r=>{const{unitId:t,subUnitId:e,drawingIds:n,arrangeType:o}=r;this._commandService.executeCommand(xe.id,{unitId:t,subUnitId:e,drawingIds:n,arrangeType:o})}))}_updateImageListener(){this.disposeWithMe(this._drawingManagerService.featurePluginUpdate$.subscribe(r=>{const t=[];r.length!==0&&(r.forEach(e=>{const{unitId:n,subUnitId:o,drawingId:s,drawingType:c,transform:d}=e;if(d==null)return;const m=this._sheetDrawingService.getDrawingByParam({unitId:n,subUnitId:o,drawingId:s});if(m==null||m.unitId!==this._context.unitId)return;const l=$({...m.transform,...d},this._selectionRenderService);if(l==null)return;const a={...e,transform:{...m.transform,...d,...F(l,this._selectionRenderService,this._skeletonManagerService)},sheetTransform:{...l}};t.push(a)}),t.length>0&&this._commandService.executeCommand(le.id,{unitId:r[0].unitId,drawings:t}))}))}_groupDrawingListener(){this.disposeWithMe(this._drawingManagerService.featurePluginGroupUpdate$.subscribe(r=>{this._commandService.executeCommand(Le.id,r);const{unitId:t,subUnitId:e,drawingId:n}=r[0].parent;this._commandService.syncExecuteCommand(E.SetDrawingSelectedOperation.id,[{unitId:t,subUnitId:e,drawingId:n}])})),this.disposeWithMe(this._drawingManagerService.featurePluginUngroupUpdate$.subscribe(r=>{this._commandService.executeCommand(Be.id,r)}))}_focusDrawingListener(){this.disposeWithMe(this._drawingManagerService.focus$.subscribe(r=>{r==null||r.length===0?(this._contextService.setContextValue(u.FOCUSING_COMMON_DRAWINGS,!1),this._sheetDrawingService.focusDrawing([])):(this._contextService.setContextValue(u.FOCUSING_COMMON_DRAWINGS,!0),this._sheetDrawingService.focusDrawing(r))}))}};ae=At([X(1,u.Inject(P.SheetSkeletonManagerService)),X(2,u.ICommandService),X(3,P.ISheetSelectionRenderService),X(4,E.IImageIoService),X(5,G.ILocalFileService),X(6,p.ISheetDrawingService),X(7,E.IDrawingManagerService),X(8,u.IContextService),X(9,G.IMessageService),X(10,u.Inject(u.LocaleService)),X(11,u.Inject(_.SheetsSelectionsService)),X(12,u.Inject(u.Injector))],ae);var Ut=Object.defineProperty,Nt=Object.getOwnPropertyDescriptor,jt=(i,r,t,e)=>{for(var n=e>1?void 0:e?Nt(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&Ut(r,t,n),n},ne=(i,r)=>(t,e)=>r(t,e,i);function Ue(i,r,t){var e,n,o,s;if(((n=(e=t==null?void 0:t.p)==null?void 0:e.body)==null?void 0:n.dataStream.length)===3&&((s=(o=t.p)==null?void 0:o.drawingsOrder)==null?void 0:s.length)===1){const c=t.p.drawings[t.p.drawingsOrder[0]],d=et(i,{unitId:r.unitId,subUnitId:r.subUnitId,row:r.row,col:r.col},c.docTransform.size.width,c.docTransform.size.height,c.docTransform.angle);if(d)return c.transform.width=d.width,c.transform.height=d.height,c.docTransform.size.width=d.width,c.docTransform.size.height=d.height,c.transform.left=0,c.transform.top=0,c.docTransform.positionH.posOffset=0,c.docTransform.positionV.posOffset=0,t.p.documentStyle.pageSize.width=1/0,t.p.documentStyle.pageSize.height=1/0,!0}return!1}let _e=class extends u.Disposable{constructor(i,r,t,e,n,o,s){super(),this._commandService=i,this._sheetInterceptorService=r,this._univerInstanceService=t,this._injector=e,this._drawingManagerService=n,this._docDrawingController=o,this._editorBridgeService=s,this._initHandleResize(),this._handleInitEditor(),this._handleWriteCell(),this._initCellContentInterceptor()}_initHandleResize(){this.disposeWithMe(this._commandService.onCommandExecuted(i=>{let r,t=[];if(i.id===_.SetWorksheetRowHeightMutation.id){const e=i.params;t=e.ranges,r=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId})}else if(i.id===_.SetWorksheetColWidthMutation.id){const e=i.params;t=e.ranges,r=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId})}else if(i.id===_.SetWorksheetRowIsAutoHeightMutation.id){const e=i.params;t=e.ranges,r=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId})}else if(i.id===_.SetWorksheetRowAutoHeightMutation.id){const e=i.params;r=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId}),t=e.rowsAutoHeightInfo.map(n=>({startRow:n.row,endRow:n.row,startColumn:0,endColumn:9999}))}else if(i.id===_.AddWorksheetMergeMutation.id){const e=i.params;t=e.ranges,r=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId})}else if(i.id===_.RemoveWorksheetMergeMutation.id){const e=i.params;t=e.ranges,r=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId})}r&&t.length&&t.forEach(e=>{const n=u.Range.transformRange(e,r.worksheet);for(let o=n.startRow;o<=n.endRow;o++)for(let s=n.startColumn;s<=n.endColumn;s++)Ue(this._injector,{unitId:r.unitId,subUnitId:r.subUnitId,row:o,col:s},r.worksheet.getCellRaw(o,s))})}))}_handleInitEditor(){this.disposeWithMe(this._editorBridgeService.visible$.subscribe(i=>{i.visible?i.visible&&(this._drawingManagerService.removeDrawingDataForUnit(u.DOCS_NORMAL_EDITOR_UNIT_ID_KEY),this._docDrawingController.loadDrawingDataForUnit(u.DOCS_NORMAL_EDITOR_UNIT_ID_KEY),this._drawingManagerService.initializeNotification(u.DOCS_NORMAL_EDITOR_UNIT_ID_KEY)):this._drawingManagerService.removeDrawingDataForUnit(u.DOCS_NORMAL_EDITOR_UNIT_ID_KEY)})),this.disposeWithMe(this._commandService.onCommandExecuted(i=>{i.id===Ze.ReplaceSnapshotCommand.id&&i.params.unitId===u.DOCS_ZEN_EDITOR_UNIT_ID_KEY&&(this._drawingManagerService.removeDrawingDataForUnit(u.DOCS_ZEN_EDITOR_UNIT_ID_KEY),this._docDrawingController.loadDrawingDataForUnit(u.DOCS_ZEN_EDITOR_UNIT_ID_KEY),this._drawingManagerService.initializeNotification(u.DOCS_ZEN_EDITOR_UNIT_ID_KEY))}))}_handleWriteCell(){this.disposeWithMe(this._sheetInterceptorService.writeCellInterceptor.intercept(_.AFTER_CELL_EDIT,{priority:9999,handler:(i,r,t)=>(Ue(this._injector,{unitId:r.unitId,subUnitId:r.subUnitId,row:r.row,col:r.col},i),t(i))}))}_initCellContentInterceptor(){this.disposeWithMe(this._sheetInterceptorService.intercept(_.INTERCEPTOR_POINT.CELL_CONTENT,{effect:u.InterceptorEffectEnum.Style,priority:_.InterceptCellContentPriority.CELL_IMAGE,handler:(i,r,t)=>{var e;return i!=null&&i.p&&((e=i.p.drawingsOrder)!=null&&e.length)&&(i.interceptorStyle||(i.interceptorStyle={}),i.interceptorStyle.tr={a:0}),t(i)}}))}};_e=jt([ne(0,u.ICommandService),ne(1,u.Inject(_.SheetInterceptorService)),ne(2,u.IUniverInstanceService),ne(3,u.Inject(u.Injector)),ne(4,E.IDrawingManagerService),ne(5,u.Inject(Je.DocDrawingController)),ne(6,u.Inject(P.IEditorBridgeService))],_e);var Wt=Object.defineProperty,Lt=Object.getOwnPropertyDescriptor,xt=(i,r,t,e)=>{for(var n=e>1?void 0:e?Lt(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&Wt(r,t,n),n},qe=(i,r)=>(t,e)=>r(t,e,i);let ve=class extends u.Disposable{constructor(i,r){super(),this._autoFillService=i,this._injector=r,this._initAutoFillHooks()}_initAutoFillHooks(){this.disposeWithMe(this._autoFillService.addHook({id:"sheet-cell-image-autofill",onBeforeSubmit:(i,r,t,e)=>{new u.ObjectMatrix(e).forValue((n,o,s)=>{Ue(this._injector,{unitId:i.unitId,subUnitId:i.subUnitId,row:n,col:o},s)})}}))}};ve=xt([qe(0,u.Inject(P.IAutoFillService)),qe(1,u.Inject(u.Injector))],ve);var Bt=Object.defineProperty,$t=Object.getOwnPropertyDescriptor,Gt=(i,r,t,e)=>{for(var n=e>1?void 0:e?$t(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&Bt(r,t,n),n},me=(i,r)=>(t,e)=>r(t,e,i);let Ie=class extends u.Disposable{constructor(r,t,e,n){super();V(this,"_isSetCursor",!1);this._hoverManagerService=r,this._renderManagerService=t,this._selectionsService=e,this._drawingRenderService=n}_initHover(){}_initImageClick(){}};Ie=Gt([me(0,u.Inject(P.HoverManagerService)),me(1,u.Inject(U.IRenderManagerService)),me(2,u.Inject(_.SheetsSelectionsService)),me(3,u.Inject(ee.DrawingRenderService))],Ie);var kt=Object.defineProperty,Ft=Object.getOwnPropertyDescriptor,Ht=(i,r,t,e)=>{for(var n=e>1?void 0:e?Ft(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&kt(r,t,n),n},Ee=(i,r)=>(t,e)=>r(t,e,i);let De=class extends u.Disposable{constructor(r,t,e){super();V(this,"_copyInfo");this._sheetClipboardService=r,this._renderManagerService=t,this._sheetDrawingService=e,this._initCopyPaste()}_initCopyPaste(){this._sheetClipboardService.addClipboardHook({id:"SHEET_IMAGE_UI_PLUGIN",onBeforeCopy:(r,t,e)=>this._collect(r,t,e),onPasteCells:(r,t,e,n)=>{const{copyType:o=P.COPY_TYPE.COPY,pasteType:s}=n,{range:c}=r||{},{range:d,unitId:m,subUnitId:l}=t;return this._generateMutations(d,{copyType:o,pasteType:s,copyRange:c,unitId:m,subUnitId:l})},onPastePlainText:(r,t)=>({undos:[],redos:[]})})}_collect(r,t,e){var h;const n=(h=this._renderManagerService.getRenderById(r))==null?void 0:h.with(P.SheetSkeletonManagerService);if(!n)return;const o=n.attachRangeWithCoord(e);if(!o)return;const{startX:s,endX:c,startY:d,endY:m}=o,l=this._sheetDrawingService.getDrawingData(r,t),a=[];Object.keys(l).forEach(g=>{const f=l[g],{transform:w}=f;if(f.anchorType!==p.SheetDrawingAnchorType.Both||!w)return;const{left:S=0,top:I=0,width:y=0,height:C=0}=w,{drawingStartX:T,drawingEndX:D,drawingStartY:R,drawingEndY:v}={drawingStartX:S,drawingEndX:S+y,drawingStartY:I,drawingEndY:I+C};s<=T&&D<=c&&d<=R&&v<=m&&a.push(f)}),a.length&&(this._copyInfo={drawings:a,unitId:r,subUnitId:t})}_generateMutations(r,t){var L;if(!this._copyInfo)return{redos:[],undos:[]};if([P.PREDEFINED_HOOK_NAME.SPECIAL_PASTE_COL_WIDTH,P.PREDEFINED_HOOK_NAME.SPECIAL_PASTE_VALUE,P.PREDEFINED_HOOK_NAME.SPECIAL_PASTE_FORMAT,P.PREDEFINED_HOOK_NAME.SPECIAL_PASTE_FORMULA].includes(t.pasteType))return{redos:[],undos:[]};const{copyRange:n}=t;if(!n)return{redos:[],undos:[]};const{drawings:o,unitId:s,subUnitId:c}=this._copyInfo,{ranges:[d,m],mapFunc:l}=P.virtualizeDiscreteRanges([n,r]),{row:a,col:h}=l(d.startRow,d.startColumn),{row:g,col:f}=l(m.startRow,m.startColumn),w=(L=this._renderManagerService.getRenderById(s))==null?void 0:L.with(P.SheetSkeletonManagerService);if(!w)return{redos:[],undos:[]};const S=w.attachRangeWithCoord({startRow:a,endRow:a,startColumn:h,endColumn:h}),I=w.attachRangeWithCoord({startRow:g,endRow:g,startColumn:f,endColumn:f});if(!S||!I)return{redos:[],undos:[]};const y=[],C=[],T=I.startX-S.startX,D=I.startY-S.startY,R=g-a,v=f-h,A=t.copyType===P.COPY_TYPE.CUT,{_sheetDrawingService:b}=this;return o.forEach(j=>{const{transform:O,sheetTransform:M}=j;if(!O)return;const W={...j,unitId:s,subUnitId:c,drawingId:A?j.drawingId:u.Tools.generateRandomId(),transform:{...O,left:O.left+T,top:O.top+D},sheetTransform:{to:{...M.to,row:M.to.row+R,column:M.to.column+v},from:{...M.from,row:M.from.row+R,column:M.from.column+v}}};if(A){const{undo:B,redo:te,objects:q}=b.getBatchUpdateOp([W]);y.push({id:p.SetDrawingApplyMutation.id,params:{unitId:s,subUnitId:c,type:p.DrawingApplyType.UPDATE,op:te,objects:q}}),C.push({id:p.SetDrawingApplyMutation.id,params:{unitId:s,subUnitId:c,type:p.DrawingApplyType.UPDATE,op:B,objects:q}})}else{const{undo:B,redo:te,objects:q}=b.getBatchAddOp([W]);y.push({id:p.SetDrawingApplyMutation.id,params:{op:te,unitId:s,subUnitId:c,objects:q,type:p.DrawingApplyType.INSERT}}),C.push({id:p.SetDrawingApplyMutation.id,params:{op:B,unitId:s,subUnitId:c,objects:q,type:p.DrawingApplyType.REMOVE}})}}),{redos:y,undos:C}}};De=Ht([Ee(0,P.ISheetClipboardService),Ee(1,U.IRenderManagerService),Ee(2,p.ISheetDrawingService)],De);var Vt=Object.defineProperty,Yt=Object.getOwnPropertyDescriptor,Xt=(i,r,t,e)=>{for(var n=e>1?void 0:e?Yt(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&Vt(r,t,n),n},se=(i,r)=>(t,e)=>r(t,e,i);let Ce=class extends u.Disposable{constructor(i,r,t,e,n){super(),this._drawingManagerService=i,this._renderManagerService=r,this._permissionService=t,this._univerInstanceService=e,this._userManagerService=n,this._initDrawingVisible(),this._initDrawingEditable(),this._initViewPermissionChange(),this._initEditPermissionChange()}_initDrawingVisible(){const i=this._univerInstanceService.getCurrentTypeOfUnit$(u.UniverInstanceType.UNIVER_SHEET);this.disposeWithMe(N.combineLatest([i,this._userManagerService.currentUser$]).subscribe(([r,t])=>{if(!r){this._drawingManagerService.setDrawingVisible(!1);return}r.activeSheet$.subscribe(e=>{if(!e){this._drawingManagerService.setDrawingVisible(!1);return}const n=r.getUnitId(),o=e.getSheetId();if(this._permissionService.composePermission([new _.WorkbookViewPermission(n).id,new _.WorksheetViewPermission(n,o).id]).every(c=>c.value))this._drawingManagerService.setDrawingVisible(!0);else{this._drawingManagerService.setDrawingVisible(!1);const c=r.getUnitId(),d=e.getSheetId(),m=this._drawingManagerService.getDrawingData(c,d),l=Object.values(m),a=this._renderManagerService.getRenderById(c),h=a==null?void 0:a.scene;if(h==null)return;h.getAllObjectsByOrder().forEach(f=>{f.classType===U.RENDER_CLASS_TYPE.IMAGE&&l.some(w=>f.oKey.includes(w.drawingId))&&h.removeObject(f)})}})}))}_initDrawingEditable(){const i=this._univerInstanceService.getCurrentTypeOfUnit$(u.UniverInstanceType.UNIVER_SHEET);this.disposeWithMe(N.combineLatest([i,this._userManagerService.currentUser$]).subscribe(([r,t])=>{if(!r){this._drawingManagerService.setDrawingEditable(!1);return}r.activeSheet$.subscribe(e=>{if(!e){this._drawingManagerService.setDrawingEditable(!1);return}const n=r.getUnitId(),o=e.getSheetId();if(this._permissionService.composePermission([new _.WorkbookEditablePermission(n).id,new _.WorksheetEditPermission(n,o).id]).every(c=>c.value))this._drawingManagerService.setDrawingEditable(!0);else{this._drawingManagerService.setDrawingEditable(!1);const c=r.getUnitId(),d=e.getSheetId(),m=this._drawingManagerService.getDrawingData(c,d),l=Object.values(m),a=this._renderManagerService.getRenderById(c),h=a==null?void 0:a.scene;if(h==null)return;h.getAllObjectsByOrder().forEach(f=>{f.classType===U.RENDER_CLASS_TYPE.IMAGE&&l.some(w=>f.oKey.includes(w.drawingId))&&h.detachTransformerFrom(f)})}})}))}_initViewPermissionChange(){const i=this._univerInstanceService.getCurrentTypeOfUnit$(u.UniverInstanceType.UNIVER_SHEET);this.disposeWithMe(N.combineLatest([i,this._userManagerService.currentUser$]).subscribe(([r,t])=>{r&&r.activeSheet$.subscribe(e=>{var a;if(!e)return;const n=r.getUnitId(),o=e.getSheetId();let s=!0;const c=this._renderManagerService.getRenderById(n),d=c==null?void 0:c.scene;if(d==null)return;const m=d.getTransformerByCreate(),l=this._permissionService.composePermission$([new _.WorkbookViewPermission(n).id,new _.WorksheetViewPermission(n,o).id]).pipe(N.map(h=>h.every(g=>g.value)));l==null||l.pipe(N.filter(h=>h!==s),N.distinctUntilChanged()).subscribe({next:h=>{s=h,this._drawingManagerService.setDrawingVisible(h);const g=d.getAllObjectsByOrder(),f=this._drawingManagerService.getDrawingData(n,o),w=Object.values(f);h?this._drawingManagerService.addNotification(w):(g.forEach(S=>{S.classType===U.RENDER_CLASS_TYPE.IMAGE&&w.some(I=>S.oKey.includes(I.drawingId))&&d.removeObject(S)}),m.clearSelectedObjects())}}),(a=this._permissionService.getPermissionPoint$(new _.WorksheetViewPermission(n,o).id))==null||a.pipe(N.filter(h=>h.value!==s),N.distinctUntilChanged()).subscribe({complete:()=>{s=!0,this._drawingManagerService.setDrawingVisible(!0);const h=this._drawingManagerService.getDrawingData(n,o),g=Object.values(h);this._drawingManagerService.addNotification(g)}})})}))}_initEditPermissionChange(){const i=this._univerInstanceService.getCurrentTypeOfUnit$(u.UniverInstanceType.UNIVER_SHEET);this.disposeWithMe(N.combineLatest([i,this._userManagerService.currentUser$]).subscribe(([r,t])=>{r&&r.activeSheet$.subscribe(e=>{var a;if(!e)return;const n=r.getUnitId(),o=e.getSheetId();let s=!0;const c=this._renderManagerService.getRenderById(n),d=c==null?void 0:c.scene;if(d==null)return;const m=d.getTransformerByCreate(),l=this._permissionService.composePermission$([new _.WorkbookEditablePermission(n).id,new _.WorksheetEditPermission(n,o).id]).pipe(N.map(h=>h.every(g=>g.value)));l==null||l.pipe(N.filter(h=>h!==s),N.distinctUntilChanged()).subscribe({next:h=>{s=h,this._drawingManagerService.setDrawingEditable(h);const g=d.getAllObjectsByOrder(),f=this._drawingManagerService.getDrawingData(n,o),w=Object.values(f);h?(g.forEach(S=>{S.classType===U.RENDER_CLASS_TYPE.IMAGE&&w.some(I=>S.oKey.includes(I.drawingId))&&d.attachTransformerTo(S)}),this._drawingManagerService.addNotification(w)):(g.forEach(S=>{S.classType===U.RENDER_CLASS_TYPE.IMAGE&&w.some(I=>S.oKey.includes(I.drawingId))&&d.detachTransformerFrom(S)}),m.clearSelectedObjects())}}),(a=this._permissionService.getPermissionPoint$(new _.WorksheetEditPermission(n,o).id))==null||a.pipe(N.filter(h=>h.value!==s),N.distinctUntilChanged()).subscribe({complete:()=>{s=!0;const h=r.getUnitId(),g=e.getSheetId(),f=this._drawingManagerService.getDrawingData(h,g),w=Object.values(f),S=this._renderManagerService.getRenderById(h),I=S==null?void 0:S.scene;if(I==null)return;this._drawingManagerService.setDrawingEditable(!0),I.getAllObjectsByOrder().forEach(C=>{C.classType===U.RENDER_CLASS_TYPE.IMAGE&&w.some(T=>C.oKey.includes(T.drawingId))&&I.detachTransformerFrom(C)})}})})}))}};Ce=Xt([se(0,E.IDrawingManagerService),se(1,U.IRenderManagerService),se(2,u.IPermissionService),se(3,u.IUniverInstanceService),se(4,u.Inject(u.UserManagerService))],Ce);var zt=Object.defineProperty,Kt=Object.getOwnPropertyDescriptor,qt=(i,r,t,e)=>{for(var n=e>1?void 0:e?Kt(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&zt(r,t,n),n},pe=(i,r)=>(t,e)=>r(t,e,i);let ye=class extends u.Disposable{constructor(i,r,t,e){super(),this._sheetPrintInterceptorService=i,this._drawingRenderService=r,this._drawingManagerService=t,this._renderManagerService=e,this._initPrinting()}_initPrinting(){this.disposeWithMe(this._sheetPrintInterceptorService.interceptor.intercept(this._sheetPrintInterceptorService.interceptor.getInterceptPoints().PRINTING_COMPONENT_COLLECT,{handler:(i,r,t)=>{const{unitId:e,scene:n,subUnitId:o}=r,s=this._drawingManagerService.getDrawingDataForUnit(e),c=s==null?void 0:s[o];return c&&c.order.forEach(d=>{this._drawingRenderService.renderDrawing(c.data[d],n)}),t()}})),this.disposeWithMe(this._sheetPrintInterceptorService.interceptor.intercept(this._sheetPrintInterceptorService.interceptor.getInterceptPoints().PRINTING_RANGE,{handler:(i,r,t)=>{const{unitId:e,subUnitId:n}=r,o=this._renderManagerService.getRenderById(e);if(!o)return t(i);const s=o.with(P.SheetSkeletonManagerService).getWorksheetSkeleton(n);if(!s)return t(i);const c=this._drawingManagerService.getDrawingDataForUnit(e),d=c==null?void 0:c[r.subUnitId];if(!d)return t(i);const{scaleX:m,scaleY:l}=o.scene,a=i?{...i}:{startColumn:0,endColumn:0,endRow:0,startRow:0},h=d.order.map(g=>d.data[g]).filter(g=>g.drawingType!==u.DrawingTypeEnum.DRAWING_DOM);return h.length?(h.forEach(g=>{if(!g.groupId&&g.transform&&u.Tools.isDefine(g.transform.left)&&u.Tools.isDefine(g.transform.top)&&u.Tools.isDefine(g.transform.width)&&u.Tools.isDefine(g.transform.height)){const f=s.skeleton.getCellIndexByOffset(g.transform.left,g.transform.top,m,l,{x:0,y:0}),w=s.skeleton.getCellIndexByOffset(g.transform.left+g.transform.width,g.transform.top+g.transform.height,m,l,{x:0,y:0});f.column<a.startColumn&&(a.startColumn=f.column),f.row<a.startRow&&(a.startRow=f.row),a.endRow<w.row&&(a.endRow=w.row),a.endColumn<w.column&&(a.endColumn=w.column)}}),t(a)):t(i)}}))}};ye=qt([pe(0,u.Inject(P.SheetPrintInterceptorService)),pe(1,u.Inject(ee.DrawingRenderService)),pe(2,E.IDrawingManagerService),pe(3,U.IRenderManagerService)],ye);var Jt=Object.defineProperty,Zt=Object.getOwnPropertyDescriptor,Qt=(i,r,t,e)=>{for(var n=e>1?void 0:e?Zt(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&Jt(r,t,n),n},Z=(i,r)=>(t,e)=>r(t,e,i);const en=[_.InsertRowCommand.id,_.InsertColCommand.id,_.RemoveRowCommand.id,_.RemoveColCommand.id,_.DeleteRangeMoveLeftCommand.id,_.DeleteRangeMoveUpCommand.id,_.InsertRangeMoveDownCommand.id,_.InsertRangeMoveRightCommand.id,_.DeltaRowHeightCommand.id,_.SetRowHeightCommand.id,_.DeltaColumnWidthCommand.id,_.SetColWidthCommand.id,_.SetRowHiddenCommand.id,_.SetSpecificRowsVisibleCommand.id,_.SetSpecificColsVisibleCommand.id,_.SetColHiddenCommand.id,_.MoveColsCommand.id,_.MoveRowsCommand.id,_.MoveRangeCommand.id],tn=[_.SetRowVisibleMutation.id,_.SetRowHiddenMutation.id,_.SetColVisibleMutation.id,_.SetColHiddenMutation.id,_.SetWorksheetRowHeightMutation.id,_.SetWorksheetColWidthMutation.id];let Ne=class extends u.Disposable{constructor(i,r,t,e,n,o,s,c,d){super(),this._context=i,this._renderManagerService=r,this._commandService=t,this._selectionRenderService=e,this._skeletonManagerService=n,this._sheetInterceptorService=o,this._sheetDrawingService=s,this._drawingManagerService=c,this._univerInstanceService=d,this._sheetInterceptorListener(),this._commandListener(),this._sheetRefreshListener()}_sheetInterceptorListener(){this.disposeWithMe(this._sheetInterceptorService.interceptCommand({getMutations:i=>{if(!en.includes(i.id))return{redos:[],undos:[]};if(i.params==null)return{redos:[],undos:[]};const r=i.id;if(r===_.InsertRowCommand.id)return this._moveRowInterceptor(i.params,"insert");if([_.MoveColsCommand.id,_.MoveRowsCommand.id,_.MoveRangeCommand.id].includes(r))return this._moveRangeInterceptor(i.params);if(r===_.InsertColCommand.id)return this._moveColInterceptor(i.params,"insert");if(r===_.RemoveRowCommand.id)return this._moveRowInterceptor(i.params,"remove");if(r===_.RemoveColCommand.id)return this._moveColInterceptor(i.params,"remove");if(r===_.DeleteRangeMoveLeftCommand.id){const{range:t}=i.params;return this._getRangeMoveUndo(t,0)}else if(r===_.DeleteRangeMoveUpCommand.id){const{range:t}=i.params;return this._getRangeMoveUndo(t,1)}else if(r===_.InsertRangeMoveDownCommand.id){const{range:t}=i.params;return this._getRangeMoveUndo(t,2)}else if(r===_.InsertRangeMoveRightCommand.id){const{range:t}=i.params;return this._getRangeMoveUndo(t,3)}else if(r===_.SetRowHiddenCommand.id||r===_.SetSpecificRowsVisibleCommand.id){const t=i.params,{unitId:e,subUnitId:n,ranges:o}=t;return this._getDrawingUndoForRowVisible(e,n,o)}else if(r===_.SetSpecificColsVisibleCommand.id||r===_.SetColHiddenCommand.id){const t=i.params,{unitId:e,subUnitId:n,ranges:o}=t;return this._getDrawingUndoForColVisible(e,n,o)}else if(r===_.DeltaRowHeightCommand.id||r===_.SetRowHeightCommand.id||r===_.DeltaColumnWidthCommand.id||r===_.SetColWidthCommand.id){const t=i.params,{unitId:e,subUnitId:n,ranges:o}=t,s=r===_.DeltaRowHeightCommand.id||r===_.SetRowHeightCommand.id;return this._getDrawingUndoForRowAndColSize(e,n,o,s)}return{redos:[],undos:[]}}}))}_getRangeMoveUndo(i,r){const t=_.getSheetCommandTarget(this._univerInstanceService);if(t==null)return{redos:[],undos:[]};const e=t.unitId,n=t.subUnitId,o=[],s=[],c=this._sheetDrawingService.getDrawingData(e,n),d=[],m=[];if(Object.keys(c).forEach(l=>{const a=c[l],{updateDrawings:h,deleteDrawings:g}=this._getUpdateOrDeleteDrawings(i,r,a);d.push(...h),m.push(...g)}),d.length===0&&m.length===0)return{redos:[],undos:[]};if(d.length>0){const l=this._sheetDrawingService.getBatchUpdateOp(d),{undo:a,redo:h,objects:g}=l;o.push({id:p.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:n,op:h,objects:g,type:p.DrawingApplyType.UPDATE}}),s.push({id:p.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:n,op:a,objects:g,type:p.DrawingApplyType.UPDATE}})}if(m.length>0){const l=this._sheetDrawingService.getBatchRemoveOp(m),a=l.undo,h=l.redo,g=l.objects;o.push({id:p.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:n,op:h,objects:g,type:p.DrawingApplyType.REMOVE}}),s.push({id:p.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:n,op:a,objects:g,type:p.DrawingApplyType.INSERT}})}return o.push({id:x.id,params:[e]}),s.push({id:x.id,params:[e]}),{redos:o,undos:s}}_getUpdateOrDeleteDrawings(i,r,t){const e=[],n=[],{sheetTransform:o,anchorType:s=p.SheetDrawingAnchorType.Position,transform:c,unitId:d,subUnitId:m,drawingId:l}=t,{from:a,to:h}=o,{row:g,column:f}=a,{row:w,column:S}=h;if(o==null||c==null)return{updateDrawings:e,deleteDrawings:n};const{startRow:I,endRow:y,startColumn:C,endColumn:T}=i;let D=null,R=null;if(r===0&&g>=I&&w<=y)if(f>=C&&S<=T)n.push({unitId:d,subUnitId:m,drawingId:l});else{const v=this._shrinkCol(o,c,C,T,s);D=v==null?void 0:v.newSheetTransform,R=v==null?void 0:v.newTransform}else if(r===1&&f>=C&&S<=T)if(g>=I&&w<=y)n.push({unitId:d,subUnitId:m,drawingId:l});else{const v=this._shrinkRow(o,c,I,y,s);D=v==null?void 0:v.newSheetTransform,R=v==null?void 0:v.newTransform}else if(r===2){const v=this._expandRow(o,c,I,y,s);D=v==null?void 0:v.newSheetTransform,R=v==null?void 0:v.newTransform}else if(r===3){const v=this._expandCol(o,c,C,T,s);D=v==null?void 0:v.newSheetTransform,R=v==null?void 0:v.newTransform}if(D!=null&&R!=null){const v=F(D,this._selectionRenderService,this._skeletonManagerService);e.push({...t,sheetTransform:D,transform:v})}return{updateDrawings:e,deleteDrawings:n}}_remainDrawingSize(i,r,t){const e=$({...i},this._selectionRenderService);e!=null&&r.push({...t,sheetTransform:e})}_getDrawingUndoForColVisible(i,r,t){const e=this._drawingManagerService.getDrawingData(i,r),n=[],o=[];if(Object.keys(e).forEach(l=>{const a=e[l],{sheetTransform:h,transform:g,anchorType:f=p.SheetDrawingAnchorType.Position}=a;if(f===p.SheetDrawingAnchorType.None)this._remainDrawingSize(g,n,a);else{const{from:w,to:S}=h,{row:I,column:y}=w,{row:C,column:T}=S;for(let D=0;D<t.length;D++){const R=t[D],{startRow:v,endRow:A,startColumn:b,endColumn:L}=R;if(T<b)continue;if(f===p.SheetDrawingAnchorType.Position){let M=null,W=null;if(y>=b&&y<=L){const B=this._skeletonManagerService.attachRangeWithCoord({startColumn:y,endColumn:L,startRow:w.row,endRow:S.row});if(B==null)return;W={...g,left:B.startX}}if(W!=null&&(M=$(W,this._selectionRenderService),M!=null&&W!=null)){n.push({...a,sheetTransform:M,transform:W});break}this._remainDrawingSize(g,n,a);continue}if(y>=b&&T<=L)continue;let j=null,O=null;if(y>=b&&y<=L){const M=this._skeletonManagerService.attachRangeWithCoord({startColumn:y,endColumn:L,startRow:w.row,endRow:S.row});if(M==null)return;O={...g,left:(M==null?void 0:M.startX)||0,width:((g==null?void 0:g.width)||0)-M.endX+M.startX}}else if(T>=b&&T<=L){const M=this._skeletonManagerService.attachRangeWithCoord({startColumn:b,endColumn:T,startRow:w.row,endRow:S.row});if(M==null)return;O={...g,left:M.startX-((g==null?void 0:g.width)||0)}}else{const M=this._skeletonManagerService.attachRangeWithCoord({startColumn:b,endColumn:L,startRow:w.row,endRow:S.row});if(M==null)return;if(O={...g,width:((g==null?void 0:g.width)||0)-M.endX+M.startX},j=$(O,this._selectionRenderService),j!=null&&O!=null){o.push({...a,sheetTransform:j,transform:O});break}}if(O!=null&&(j=$(O,this._selectionRenderService)),O!=null&&j!=null){n.push({...a,sheetTransform:j,transform:O});break}else this._remainDrawingSize(g,n,a)}}}),n.length===0&&o.length===0)return{redos:[],undos:[]};const{redos:s,undos:c}=this._createUndoAndRedoMutation(i,r,n),d=[],m=[];if(o.length>0){const{redos:l,undos:a}=this._createUndoAndRedoMutation(i,r,o);d.push(...l),m.push(...a)}return{redos:s,undos:c,preRedos:d,preUndos:m}}_createUndoAndRedoMutation(i,r,t){const e=this._sheetDrawingService.getBatchUpdateOp(t),{undo:n,redo:o,objects:s}=e,c=[{id:p.SetDrawingApplyMutation.id,params:{unitId:i,subUnitId:r,op:o,objects:s,type:p.DrawingApplyType.UPDATE}},{id:x.id,params:[i]}],d=[{id:p.SetDrawingApplyMutation.id,params:{unitId:i,subUnitId:r,op:n,objects:s,type:p.DrawingApplyType.UPDATE}},{id:x.id,params:[i]}];return{redos:c,undos:d}}_getDrawingUndoForRowVisible(i,r,t){const e=this._drawingManagerService.getDrawingData(i,r),n=[],o=[];if(Object.keys(e).forEach(l=>{const a=e[l],{sheetTransform:h,transform:g,anchorType:f=p.SheetDrawingAnchorType.Position}=a;if(f===p.SheetDrawingAnchorType.None)this._remainDrawingSize(g,n,a);else{const{from:w,to:S}=h,{row:I,column:y}=w,{row:C,column:T}=S;for(let D=0;D<t.length;D++){const R=t[D],{startRow:v,endRow:A,startColumn:b,endColumn:L}=R;if(C<v)continue;if(f===p.SheetDrawingAnchorType.Position){let M=null,W=null;if(I>=v&&I<=A){const B=this._skeletonManagerService.attachRangeWithCoord({startColumn:w.column,endColumn:S.column,startRow:I,endRow:A});if(B==null)return;W={...g,top:B.startY}}if(W!=null&&(M=$(W,this._selectionRenderService),M!=null&&W!=null)){n.push({...a,sheetTransform:M,transform:W});break}this._remainDrawingSize(g,n,a);continue}if(I>=v&&C<=A)continue;let j=null,O=null;if(I>=v&&I<=A){const M=this._skeletonManagerService.attachRangeWithCoord({startColumn:w.column,endColumn:S.column,startRow:I,endRow:A});if(M==null)return;O={...g,top:(M==null?void 0:M.startY)||0,height:((g==null?void 0:g.height)||0)-M.endY+M.startY}}else if(C>=v&&C<=A){const M=this._skeletonManagerService.attachRangeWithCoord({startColumn:w.column,endColumn:S.column,startRow:v,endRow:C});if(M==null)return;O={...g,top:M.startY-((g==null?void 0:g.height)||0)}}else{const M=this._skeletonManagerService.attachRangeWithCoord({startColumn:w.column,endColumn:S.column,startRow:v,endRow:A});if(M==null)return;if(O={...g,height:((g==null?void 0:g.height)||0)-M.endY+M.startY},j=$(O,this._selectionRenderService),j!=null&&O!=null){o.push({...a,sheetTransform:j,transform:O});break}}if(O!=null&&(j=$(O,this._selectionRenderService)),O!=null&&j!=null){n.push({...a,sheetTransform:j,transform:O});break}else this._remainDrawingSize(g,n,a)}}}),n.length===0&&o.length===0)return{redos:[],undos:[]};const{redos:s,undos:c}=this._createUndoAndRedoMutation(i,r,n),d=[],m=[];if(o.length>0){const{redos:l,undos:a}=this._createUndoAndRedoMutation(i,r,o);d.push(...l),m.push(...a)}return{redos:s,undos:c,preRedos:d,preUndos:m}}_getDrawingUndoForRowAndColSize(i,r,t,e){const n=this._drawingManagerService.getDrawingData(i,r),o=[];return Object.keys(n).forEach(s=>{const c=n[s],{sheetTransform:d,transform:m,anchorType:l=p.SheetDrawingAnchorType.Position}=c;if(l===p.SheetDrawingAnchorType.None)this._remainDrawingSize(m,o,c);else{const{from:a,to:h}=d,{row:g,column:f}=a,{row:w,column:S}=h;for(let I=0;I<t.length;I++){const y=t[I],{startRow:C,endRow:T,startColumn:D,endColumn:R}=y;if(w<C||S<D)continue;if(l===p.SheetDrawingAnchorType.Position&&(g<=C&&w>=T||f<=D&&S>=R)){this._remainDrawingSize(m,o,c);continue}const v=F({...d},this._selectionRenderService,this._skeletonManagerService);if(v!=null){o.push({...c,transform:v});break}}}}),o.length===0?{redos:[],undos:[]}:this._createUndoAndRedoMutation(i,r,o)}_getUnitIdAndSubUnitId(i,r){let t,e;if(r==="insert")t=i.unitId,e=i.subUnitId;else{const n=_.getSheetCommandTarget(this._univerInstanceService);if(n==null)return;t=n.unitId,e=n.subUnitId}return{unitId:t,subUnitId:e}}_moveRangeInterceptor(i){var C,T;const{toRange:r,fromRange:t}=i,e=_.getSheetCommandTarget(this._univerInstanceService);if(!e)return{redos:[],undos:[]};const{unitId:n,subUnitId:o}=e,s=(T=(C=this._renderManagerService.getRenderById(n))==null?void 0:C.with(P.SheetSkeletonManagerService))==null?void 0:T.getCurrentSkeleton();if(!s)return{redos:[],undos:[]};const c=P.attachRangeWithCoord(s,t);if(!c)return{redos:[],undos:[]};const{startX:d,endX:m,startY:l,endY:a}=c,h=this._sheetDrawingService.getDrawingData(n,o),g=[];Object.keys(h).forEach(D=>{const R=h[D];if(R.anchorType!==p.SheetDrawingAnchorType.Both)return;const{transform:v}=R;if(!v)return;const{left:A=0,top:b=0,width:L=0,height:j=0}=v,{drawingStartX:O,drawingEndX:M,drawingStartY:W,drawingEndY:B}={drawingStartX:A,drawingEndX:A+L,drawingStartY:b,drawingEndY:b+j};d<=O&&M<=m&&l<=W&&B<=a&&g.push(R)});const f=[],w=[],S=r.startRow-t.startRow,I=r.startColumn-t.startColumn,y=g.map(D=>{const R=D.sheetTransform,v={to:{...R.to,row:R.to.row+S,column:R.to.column+I},from:{...R.from,row:R.from.row+S,column:R.from.column+I}},A=F(v,this._selectionRenderService,this._skeletonManagerService);return{unitId:n,subUnitId:o,drawingId:D.drawingId,transform:A,sheetTransform:v}});if(y.length){const D=this._sheetDrawingService.getBatchUpdateOp(y),{undo:R,redo:v,objects:A}=D;f.push({id:p.SetDrawingApplyMutation.id,params:{unitId:n,subUnitId:o,op:v,objects:A,type:p.DrawingApplyType.UPDATE}}),w.push({id:p.SetDrawingApplyMutation.id,params:{unitId:n,subUnitId:o,op:R,objects:A,type:p.DrawingApplyType.UPDATE}})}return{redos:f,undos:w}}_moveRowInterceptor(i,r){const t=this._getUnitIdAndSubUnitId(i,r);if(t==null)return{redos:[],undos:[]};const{unitId:e,subUnitId:n}=t,{range:o}=i,s=o.startRow,c=o.endRow,d=[],m=[],l=this._sheetDrawingService.getDrawingData(e,n),a=[],h=[];if(Object.keys(l).forEach(g=>{const f=l[g],{sheetTransform:w,transform:S,anchorType:I=p.SheetDrawingAnchorType.Position}=f;if(w==null||S==null)return;let y,C;if(r==="insert"){const D=this._expandRow(w,S,s,c,I);y=D==null?void 0:D.newSheetTransform,C=D==null?void 0:D.newTransform}else{const{from:D,to:R}=w,{row:v}=D,{row:A}=R;if(I===p.SheetDrawingAnchorType.Both&&v>=s&&A<=c)h.push({unitId:e,subUnitId:n,drawingId:g});else{const b=this._shrinkRow(w,S,s,c,I);y=b==null?void 0:b.newSheetTransform,C=b==null?void 0:b.newTransform}}if(!y||!C)return;const T={unitId:e,subUnitId:n,drawingId:g,transform:C,sheetTransform:y};a.push(T)}),a.length===0&&h.length===0)return{redos:[],undos:[]};if(a.length>0){const g=this._sheetDrawingService.getBatchUpdateOp(a),{undo:f,redo:w,objects:S}=g;d.push({id:p.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:n,op:w,objects:S,type:p.DrawingApplyType.UPDATE}}),m.push({id:p.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:n,op:f,objects:S,type:p.DrawingApplyType.UPDATE}})}if(h.length>0){const g=this._sheetDrawingService.getBatchRemoveOp(h),f=g.undo,w=g.redo,S=g.objects;d.push({id:p.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:n,op:w,objects:S,type:p.DrawingApplyType.REMOVE}}),m.push({id:p.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:n,op:f,objects:S,type:p.DrawingApplyType.INSERT}})}return d.push({id:x.id,params:[e]}),m.push({id:x.id,params:[e]}),{redos:d,undos:m}}_moveColInterceptor(i,r){const t=this._getUnitIdAndSubUnitId(i,r);if(t==null)return{redos:[],undos:[]};const{unitId:e,subUnitId:n}=t,{range:o}=i,s=o.startColumn,c=o.endColumn,d=[],m=[],l=this._sheetDrawingService.getDrawingData(e,n),a=[],h=[];if(Object.keys(l).forEach(g=>{const f=l[g],{sheetTransform:w,transform:S,anchorType:I=p.SheetDrawingAnchorType.Position}=f;if(w==null||S==null)return;let y,C;if(r==="insert"){const D=this._expandCol(w,S,s,c,I);y=D==null?void 0:D.newSheetTransform,C=D==null?void 0:D.newTransform}else{const{from:D,to:R}=w,{column:v}=D,{column:A}=R;if(I===p.SheetDrawingAnchorType.Both&&v>=s&&A<=c)h.push({unitId:e,subUnitId:n,drawingId:g});else{const b=this._shrinkCol(w,S,s,c,I);y=b==null?void 0:b.newSheetTransform,C=b==null?void 0:b.newTransform}}if(!y||!C)return;const T={unitId:e,subUnitId:n,drawingId:g,transform:C,sheetTransform:y};a.push(T)}),a.length===0&&h.length===0)return{redos:[],undos:[]};if(a.length>0){const g=this._sheetDrawingService.getBatchUpdateOp(a),{undo:f,redo:w,objects:S}=g;d.push({id:p.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:n,op:w,objects:S,type:p.DrawingApplyType.UPDATE}}),m.push({id:p.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:n,op:f,objects:S,type:p.DrawingApplyType.UPDATE}})}if(h.length>0){const g=this._sheetDrawingService.getBatchRemoveOp(h),f=g.undo,w=g.redo,S=g.objects;d.push({id:p.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:n,op:w,objects:S,type:p.DrawingApplyType.REMOVE}}),m.push({id:p.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:n,op:f,objects:S,type:p.DrawingApplyType.INSERT}})}return d.push({id:x.id,params:[e]}),m.push({id:x.id,params:[e]}),{redos:d,undos:m}}_expandCol(i,r,t,e,n=p.SheetDrawingAnchorType.Position){const o=e-t+1,{from:s,to:c}=i,{column:d}=s,{column:m}=c;if(n===p.SheetDrawingAnchorType.None)return{newSheetTransform:$({...r},this._selectionRenderService),newTransform:r};let l=null,a=null;if(d>=t){const h=this._skeletonManagerService.attachRangeWithCoord({startColumn:t,endColumn:e,startRow:s.row,endRow:c.row});if(h==null)return;a={...r,left:(r.left||0)+h.endX-h.startX},l=$(a,this._selectionRenderService)}else if(m>=e)if(n===p.SheetDrawingAnchorType.Both)l={from:{...s},to:{...c,column:m+o}},a=F(l,this._selectionRenderService,this._skeletonManagerService);else return{newSheetTransform:$({...r},this._selectionRenderService),newTransform:r};return l!=null&&a!=null?{newSheetTransform:l,newTransform:a}:null}_shrinkCol(i,r,t,e,n=p.SheetDrawingAnchorType.Position){const o=e-t+1,{from:s,to:c}=i,{column:d}=s,{column:m}=c;if(n===p.SheetDrawingAnchorType.None)return{newSheetTransform:$({...r},this._selectionRenderService),newTransform:r};let l=null,a=null;if(d>e)l={from:{...s,column:d-o},to:{...c,column:m-o}},a=F(l,this._selectionRenderService,this._skeletonManagerService);else{if(d>=t&&m<=e)return null;if(d<t&&m>e)if(n===p.SheetDrawingAnchorType.Both)l={from:{...s},to:{...c,column:m-o}},a=F(l,this._selectionRenderService,this._skeletonManagerService);else return{newSheetTransform:$({...r},this._selectionRenderService),newTransform:r};else if(d>=t&&d<=e){if(d===t)a={...r,left:(r.left||0)-i.from.columnOffset};else{const h=this._skeletonManagerService.attachRangeWithCoord({startColumn:t,endColumn:d-1,startRow:s.row,endRow:c.row});if(h==null)return;a={...r,left:(r.left||0)-h.endX+h.startX-i.from.columnOffset}}l=$(a,this._selectionRenderService)}else if(m>=t&&m<=e&&n===p.SheetDrawingAnchorType.Both){const h=this._skeletonManagerService.attachRangeWithCoord({startColumn:t-1,endColumn:t-1,startRow:s.row,endRow:c.row});if(h==null)return;l={from:{...s},to:{...c,column:t-1,columnOffset:h.endX-h.startX}},a=F(l,this._selectionRenderService,this._skeletonManagerService)}}return l!=null&&a!=null?{newSheetTransform:l,newTransform:a}:null}_expandRow(i,r,t,e,n=p.SheetDrawingAnchorType.Position){const o=e-t+1,{from:s,to:c}=i,{row:d}=s,{row:m}=c;if(n===p.SheetDrawingAnchorType.None)return{newSheetTransform:$({...r},this._selectionRenderService),newTransform:r};let l=null,a=null;if(d>=t){const h=this._skeletonManagerService.attachRangeWithCoord({startRow:t,endRow:e,startColumn:s.column,endColumn:c.column});if(h==null)return;a={...r,top:(r.top||0)+h.endY-h.startY},l=$(a,this._selectionRenderService)}else if(m>=e)if(n===p.SheetDrawingAnchorType.Both)l={from:{...s},to:{...c,row:m+o}},a=F(l,this._selectionRenderService,this._skeletonManagerService);else return{newSheetTransform:$({...r},this._selectionRenderService),newTransform:r};return l!=null&&a!=null?{newSheetTransform:l,newTransform:a}:null}_shrinkRow(i,r,t,e,n=p.SheetDrawingAnchorType.Position){const o=e-t+1,{from:s,to:c}=i,{row:d}=s,{row:m}=c;if(n===p.SheetDrawingAnchorType.None)return{newSheetTransform:$({...r},this._selectionRenderService),newTransform:r};let l=null,a=null;if(d>e)l={from:{...s,row:d-o},to:{...c,row:m-o}},a=F(l,this._selectionRenderService,this._skeletonManagerService);else{if(d>=t&&m<=e)return null;if(d<t&&m>e)if(n===p.SheetDrawingAnchorType.Both)l={from:{...s},to:{...c,row:m-o}},a=F(l,this._selectionRenderService,this._skeletonManagerService);else return{newSheetTransform:$({...r},this._selectionRenderService),newTransform:r};else if(d>=t&&d<=e){if(d===t)a={...r,top:(r.top||0)-i.from.rowOffset};else{const h=this._skeletonManagerService.attachRangeWithCoord({startRow:t,endRow:d-1,startColumn:s.column,endColumn:c.column});if(h==null)return;a={...r,top:(r.top||0)-h.endY+h.startY-i.from.rowOffset}}l=$(a,this._selectionRenderService)}else if(m>=t&&m<=e&&n===p.SheetDrawingAnchorType.Both){const h=this._skeletonManagerService.attachRangeWithCoord({startColumn:s.column,endColumn:s.column,startRow:t-1,endRow:t-1});if(h==null)return;l={from:{...s},to:{...c,row:t-1,rowOffset:h.endY-h.startY}},a=F(l,this._selectionRenderService,this._skeletonManagerService)}}return l!=null&&a!=null?{newSheetTransform:l,newTransform:a}:null}_commandListener(){this.disposeWithMe(this._commandService.onCommandExecuted(i=>{i.id===_.SetWorksheetActiveOperation.id&&setTimeout(()=>{const r=i.params,{unitId:t,subUnitId:e}=r,n=this._drawingManagerService.drawingManagerData,o=[],s=[];Object.keys(n).forEach(c=>{const d=n[c];d!=null&&Object.keys(d).forEach(m=>{const l=d[m].data;l!=null&&Object.keys(l).forEach(a=>{if(c===t&&m===e){const h=l[a];h.transform=F(h.sheetTransform,this._selectionRenderService,this._skeletonManagerService),o.push(l[a])}else s.push(l[a])})})}),this._drawingManagerService.removeNotification(s),this._drawingManagerService.addNotification(o)},0)}))}_sheetRefreshListener(){this.disposeWithMe(this._commandService.onCommandExecuted(i=>{tn.includes(i.id)&&requestIdleCallback(()=>{const r=i.params,{unitId:t,subUnitId:e,ranges:n}=r;this._refreshDrawingTransform(t,e,n)})}))}_refreshDrawingTransform(i,r,t){const e=this._drawingManagerService.getDrawingData(i,r),n=[];Object.keys(e).forEach(o=>{const s=e[o],{sheetTransform:c,transform:d,anchorType:m=p.SheetDrawingAnchorType.Position}=s;if(m===p.SheetDrawingAnchorType.None)return!0;const{from:l,to:a}=c,{row:h,column:g}=l,{row:f,column:w}=a;for(let S=0;S<t.length;S++){const I=t[S],{startRow:y,endRow:C,startColumn:T,endColumn:D}=I;if(u.Rectangle.intersects({startRow:y,endRow:C,startColumn:T,endColumn:D},{startRow:h,endRow:f,startColumn:g,endColumn:w})||h>C||g>D){const R=m===p.SheetDrawingAnchorType.Position,v=F(c,this._selectionRenderService,this._skeletonManagerService);n.push({...s,transform:{...v,width:R?d==null?void 0:d.width:v==null?void 0:v.width,height:R?d==null?void 0:d.height:v==null?void 0:v.height}});break}}}),n.length!==0&&(this._drawingManagerService.refreshTransform(n),this._commandService.syncExecuteCommand(x.id,[i]))}};Ne=Qt([Z(1,U.IRenderManagerService),Z(2,u.ICommandService),Z(3,P.ISheetSelectionRenderService),Z(4,u.Inject(P.SheetSkeletonManagerService)),Z(5,u.Inject(_.SheetInterceptorService)),Z(6,p.ISheetDrawingService),Z(7,E.IDrawingManagerService),Z(8,u.IUniverInstanceService)],Ne);var z=function(){return z=Object.assign||function(i){for(var r,t=1,e=arguments.length;t<e;t++){r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(i[n]=r[n])}return i},z.apply(this,arguments)},nn=function(i,r){var t={};for(var e in i)Object.prototype.hasOwnProperty.call(i,e)&&r.indexOf(e)<0&&(t[e]=i[e]);if(i!=null&&typeof Object.getOwnPropertySymbols=="function")for(var n=0,e=Object.getOwnPropertySymbols(i);n<e.length;n++)r.indexOf(e[n])<0&&Object.prototype.propertyIsEnumerable.call(i,e[n])&&(t[e[n]]=i[e[n]]);return t},tt=Y.forwardRef(function(i,r){var t=i.icon,e=i.id,n=i.className,o=i.extend,s=nn(i,["icon","id","className","extend"]),c="univerjs-icon univerjs-icon-".concat(e," ").concat(n||"").trim(),d=Y.useRef("_".concat(sn()));return nt(t,"".concat(e),{defIds:t.defIds,idSuffix:d.current},z({ref:r,className:c},s),o)});function nt(i,r,t,e,n){return Y.createElement(i.tag,z(z({key:r},rn(i,t,n)),e),(on(i,t).children||[]).map(function(o,s){return nt(o,"".concat(r,"-").concat(i.tag,"-").concat(s),t,void 0,n)}))}function rn(i,r,t){var e=z({},i.attrs);t!=null&&t.colorChannel1&&e.fill==="colorChannel1"&&(e.fill=t.colorChannel1);var n=r.defIds;return!n||n.length===0||(i.tag==="use"&&e["xlink:href"]&&(e["xlink:href"]=e["xlink:href"]+r.idSuffix),Object.entries(e).forEach(function(o){var s=o[0],c=o[1];typeof c=="string"&&(e[s]=c.replace(/url\(#(.*)\)/,"url(#$1".concat(r.idSuffix,")")))})),e}function on(i,r){var t,e=r.defIds;return!e||e.length===0?i:i.tag==="defs"&&(!((t=i.children)===null||t===void 0)&&t.length)?z(z({},i),{children:i.children.map(function(n){return typeof n.attrs.id=="string"&&e&&e.indexOf(n.attrs.id)>-1?z(z({},n),{attrs:z(z({},n.attrs),{id:n.attrs.id+r.idSuffix})}):n})}):i}function sn(){return Math.random().toString(36).substring(2,8)}tt.displayName="UniverIcon";var an={tag:"svg",attrs:{fill:"none",viewBox:"0 0 16 16",width:"1em",height:"1em"},children:[{tag:"path",attrs:{fill:"currentColor",d:"M2.2498 3.65005C2.2498 2.87685 2.87661 2.25005 3.64981 2.25005H7.9998C8.33118 2.25005 8.5998 1.98142 8.5998 1.65005C8.5998 1.31868 8.33118 1.05005 7.9998 1.05005H3.64981C2.21387 1.05005 1.0498 2.21411 1.0498 3.65005V12.35C1.0498 13.786 2.21386 14.95 3.6498 14.95H12.3498C13.7857 14.95 14.9498 13.786 14.9498 12.3501V8.00005C14.9498 7.66868 14.6812 7.40005 14.3498 7.40005C14.0184 7.40005 13.7498 7.66868 13.7498 8.00005V9.23974L12.2385 8.1063C11.7252 7.72129 11.0068 7.7723 10.5531 8.22605L9.00869 9.77041L6.73916 7.8251C6.24387 7.40055 5.5095 7.41278 5.02864 7.85359L2.2498 10.4009V3.65005ZM2.2498 12.0287V12.35C2.2498 13.1232 2.87661 13.75 3.6498 13.75H12.3498C13.123 13.75 13.7498 13.1232 13.7498 12.3501V10.7397L11.5186 9.06631C11.4829 9.03956 11.433 9.04314 11.4016 9.07458L9.92249 10.5537L11.1015 11.5642C11.3531 11.7799 11.3822 12.1587 11.1666 12.4103C10.9509 12.6619 10.5721 12.691 10.3205 12.4753L5.9582 8.7362C5.92384 8.70674 5.87288 8.70758 5.83952 8.73816L2.2498 12.0287Z",fillRule:"evenodd",clipRule:"evenodd"}},{tag:"path",attrs:{fill:"currentColor",d:"M11.8097 1.14783C12.1411 1.14783 12.4097 1.41646 12.4097 1.74783V3.297H14.1541C14.4855 3.297 14.7541 3.56563 14.7541 3.897C14.7541 4.22837 14.4855 4.497 14.1541 4.497H12.4097V6.24167C12.4097 6.57304 12.1411 6.84167 11.8097 6.84167C11.4783 6.84167 11.2097 6.57304 11.2097 6.24167V4.497H9.6603C9.32893 4.497 9.0603 4.22837 9.0603 3.897C9.0603 3.56563 9.32893 3.297 9.6603 3.297H11.2097V1.74783C11.2097 1.41646 11.4783 1.14783 11.8097 1.14783Z"}}]},rt=Y.forwardRef(function(i,r){return Y.createElement(tt,Object.assign({},i,{id:"add-image-single",ref:r,icon:an}))});rt.displayName="AddImageSingle";const $e={id:"sheet.command.delete-drawing",type:u.CommandType.COMMAND,handler:i=>{const r=i.get(u.ICommandService),e=i.get(p.ISheetDrawingService).getFocusDrawings();if(e.length===0)return!1;const n=e[0].unitId,o=e.map(s=>{const{unitId:c,subUnitId:d,drawingId:m,drawingType:l}=s;return{unitId:c,subUnitId:d,drawingId:m,drawingType:l}});return r.executeCommand(ce.id,{unitId:n,drawings:o})}},Re={id:"sheet.command.insert-float-image",type:u.CommandType.COMMAND,handler:i=>{var t,e;return(e=(t=i.get(U.IRenderManagerService).getCurrentTypeOfRenderer(u.UniverInstanceType.UNIVER_SHEET))==null?void 0:t.with(ae).insertFloatImage())!=null?e:!1}},Ge={id:"sheet.command.insert-cell-image",type:u.CommandType.COMMAND,handler:i=>{var t,e;return(e=(t=i.get(U.IRenderManagerService).getCurrentTypeOfRenderer(u.UniverInstanceType.UNIVER_SHEET))==null?void 0:t.with(ae).insertCellImage())!=null?e:!1}},ie={id:"sheet.command.move-drawing",type:u.CommandType.COMMAND,handler:(i,r)=>{const t=i.get(u.ICommandService),e=i.get(p.ISheetDrawingService),n=i.get(P.ISheetSelectionRenderService),{direction:o}=r,s=e.getFocusDrawings();if(s.length===0)return!1;const c=s[0].unitId,d=s.map(l=>{const{transform:a}=l;if(a==null)return null;const h={...a},{left:g=0,top:f=0}=a;return o===u.Direction.UP?h.top=f-1:o===u.Direction.DOWN?h.top=f+1:o===u.Direction.LEFT?h.left=g-1:o===u.Direction.RIGHT&&(h.left=g+1),{...l,transform:h,sheetTransform:$(h,n)}}).filter(l=>l!=null);return t.syncExecuteCommand(le.id,{unitId:c,drawings:d})?(t.syncExecuteCommand(x.id,[c]),!0):!1}},it="addition-and-subtraction-single",ke="sheet.menu.image";function cn(i){return{id:ke,type:G.MenuItemType.SUBITEMS,icon:it,tooltip:"sheetImage.title",hidden$:G.getMenuHiddenObservable(i,u.UniverInstanceType.UNIVER_SHEET),disabled$:P.getCurrentRangeDisable$(i,{workbookTypes:[_.WorkbookEditablePermission],worksheetTypes:[_.WorksheetEditPermission],rangeTypes:[_.RangeProtectionPermissionEditPoint]})}}function dn(i){return{id:Re.id,title:"sheetImage.upload.float",type:G.MenuItemType.BUTTON,hidden$:G.getMenuHiddenObservable(i,u.UniverInstanceType.UNIVER_SHEET)}}function ln(i){return{id:Ge.id,title:"sheetImage.upload.cell",type:G.MenuItemType.BUTTON}}const un="univer-image-common-panel",gn="univer-image-common-panel-grid",hn="univer-image-common-panel-border",mn="univer-image-common-panel-title",pn="univer-image-common-panel-subtitle",fn="univer-image-common-panel-row",wn="univer-image-common-panel-row-vertical",Sn="univer-image-common-panel-column",_n="univer-image-common-panel-column-center",vn="univer-image-common-panel-inline",In="univer-image-common-panel-span2",Dn="univer-image-common-panel-span3",Cn="univer-image-common-panel-input",yn="univer-sheet-image-menu",Mn="univer-sheet-image-menu-input",Q={imageCommonPanel:un,imageCommonPanelGrid:gn,imageCommonPanelBorder:hn,imageCommonPanelTitle:mn,imageCommonPanelSubtitle:pn,imageCommonPanelRow:fn,imageCommonPanelRowVertical:wn,imageCommonPanelColumn:Sn,imageCommonPanelColumnCenter:_n,imageCommonPanelInline:vn,imageCommonPanelSpan2:In,imageCommonPanelSpan3:Dn,imageCommonPanelInput:Cn,sheetImageMenu:yn,sheetImageMenuInput:Mn};function ot(i){var r,t,e="";if(typeof i=="string"||typeof i=="number")e+=i;else if(typeof i=="object")if(Array.isArray(i)){var n=i.length;for(r=0;r<n;r++)i[r]&&(t=ot(i[r]))&&(e&&(e+=" "),e+=t)}else for(t in i)i[t]&&(e&&(e+=" "),e+=t);return e}function fe(){for(var i,r,t=0,e="",n=arguments.length;t<n;t++)(i=arguments[t])&&(r=ot(i))&&(e&&(e+=" "),e+=r);return e}const Rn=i=>{var C;const r=u.useDependency(u.ICommandService),t=u.useDependency(u.LocaleService),e=u.useDependency(E.IDrawingManagerService),n=u.useDependency(U.IRenderManagerService),{drawings:o}=i,s=o[0];if(s==null)return;const{unitId:c}=s,d=n.getRenderById(c),m=d==null?void 0:d.scene;if(m==null)return;const l=m.getTransformerByCreate(),[a,h]=Y.useState(!0),g=(C=s.anchorType)!=null?C:p.SheetDrawingAnchorType.Position,[f,w]=Y.useState(g);function S(T,D){const R=[];return T.forEach(v=>{const{oKey:A}=v,b=D.getDrawingOKey(A);if(b==null)return R.push(null),!0;const{unitId:L,subUnitId:j,drawingId:O,drawingType:M,anchorType:W,sheetTransform:B}=b;R.push({unitId:L,subUnitId:j,drawingId:O,anchorType:W,sheetTransform:B,drawingType:M})}),R}Y.useEffect(()=>{const T=l.clearControl$.subscribe(R=>{R===!0&&h(!1)}),D=l.changeStart$.subscribe(R=>{var b;const{objects:v}=R,A=S(v,e);if(A.length===0)h(!1);else if(A.length>=1){h(!0);const L=((b=A[0])==null?void 0:b.anchorType)||p.SheetDrawingAnchorType.Position;w(L)}});return()=>{D.unsubscribe(),T.unsubscribe()}},[]);function I(T){w(T);const D=e.getFocusDrawings();if(D.length===0)return;const R=D.map(v=>({unitId:v.unitId,subUnitId:v.subUnitId,drawingId:v.drawingId,anchorType:T}));r.executeCommand(le.id,{unitId:D[0].unitId,drawings:R})}const y=T=>T?"block":"none";return k.jsxs("div",{className:fe(Q.imageCommonPanelGrid,Q.imageCommonPanelBorder),style:{display:y(a)},children:[k.jsx("div",{className:Q.imageCommonPanelRow,children:k.jsx("div",{className:fe(Q.imageCommonPanelColumn,Q.imageCommonPanelTitle),children:k.jsx("div",{children:t.t("drawing-anchor.title")})})}),k.jsx("div",{className:fe(Q.imageCommonPanelRow),children:k.jsx("div",{className:fe(Q.imageCommonPanelColumn),children:k.jsxs(K.RadioGroup,{value:f,onChange:I,direction:"vertical",children:[k.jsx(K.Radio,{value:p.SheetDrawingAnchorType.Both,children:t.t("drawing-anchor.both")}),k.jsx(K.Radio,{value:p.SheetDrawingAnchorType.Position,children:t.t("drawing-anchor.position")}),k.jsx(K.Radio,{value:p.SheetDrawingAnchorType.None,children:t.t("drawing-anchor.none")})]})})})]})},Tn=()=>{const i=u.useDependency(E.IDrawingManagerService),r=i.getFocusDrawings(),[t,e]=Y.useState(r);return Y.useEffect(()=>{const n=i.focus$.subscribe(o=>{e(o)});return()=>{n.unsubscribe()}},[]),!!(t!=null&&t.length)&&k.jsxs("div",{className:Q.imageCommonPanel,children:[k.jsx(ee.DrawingCommonPanel,{drawings:t}),k.jsx(Rn,{drawings:t})]})},bn={[G.RibbonStartGroup.FORMULAS_INSERT]:{[ke]:{order:3,menuItemFactory:cn,[Re.id]:{order:0,menuItemFactory:dn},[Ge.id]:{order:1,menuItemFactory:ln}}}};function ue(i){return!i.getContextValue(u.FOCUSING_FX_BAR_EDITOR)&&!i.getContextValue(u.EDITOR_ACTIVATED)&&!i.getContextValue(u.FOCUSING_PANEL_EDITOR)&&i.getContextValue(u.FOCUSING_COMMON_DRAWINGS)}const En={id:ie.id,description:"shortcut.sheet.drawing-move-down",group:"4_sheet-drawing-view",binding:G.KeyCode.ARROW_DOWN,priority:100,preconditions:ue,staticParameters:{direction:u.Direction.DOWN}},On={id:ie.id,description:"shortcut.sheet.drawing-move-up",group:"4_sheet-drawing-view",binding:G.KeyCode.ARROW_UP,priority:100,preconditions:ue,staticParameters:{direction:u.Direction.UP}},An={id:ie.id,description:"shortcut.sheet.drawing-move-left",group:"4_sheet-drawing-view",binding:G.KeyCode.ARROW_LEFT,priority:100,preconditions:ue,staticParameters:{direction:u.Direction.LEFT}},Pn={id:ie.id,description:"shortcut.sheet.drawing-move-right",group:"4_sheet-drawing-view",binding:G.KeyCode.ARROW_RIGHT,priority:100,preconditions:ue,staticParameters:{direction:u.Direction.RIGHT}},Un={id:$e.id,description:"shortcut.sheet.drawing-delete",group:"4_sheet-drawing-view",preconditions:ue,binding:G.KeyCode.DELETE,mac:G.KeyCode.BACKSPACE};var Nn=Object.defineProperty,jn=Object.getOwnPropertyDescriptor,Wn=(i,r,t,e)=>{for(var n=e>1?void 0:e?jn(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&Nn(r,t,n),n},we=(i,r)=>(t,e)=>r(t,e,i);let Me=class extends u.Disposable{constructor(i,r,t,e){super(),this._componentManager=i,this._menuManagerService=r,this._commandService=t,this._shortcutService=e,this._init()}_initCustomComponents(){const i=this._componentManager;this.disposeWithMe(i.register(it,rt)),this.disposeWithMe(i.register(Qe,Tn))}_initMenus(){this._menuManagerService.mergeMenu(bn)}_initCommands(){[Re,Ge,de,ce,le,je,x,We,Le,Be,ie,$e,xe].forEach(i=>this.disposeWithMe(this._commandService.registerCommand(i)))}_initShortcuts(){[En,On,An,Pn,Un].forEach(i=>{this.disposeWithMe(this._shortcutService.registerShortcut(i))})}_init(){this._initCommands(),this._initCustomComponents(),this._initMenus(),this._initShortcuts()}};Me=Wn([we(0,u.Inject(G.ComponentManager)),we(1,G.IMenuManagerService),we(2,u.ICommandService),we(3,G.IShortcutService)],Me);var Ln=Object.defineProperty,xn=Object.getOwnPropertyDescriptor,Bn=(i,r,t,e)=>{for(var n=e>1?void 0:e?xn(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&Ln(r,t,n),n},re=(i,r)=>(t,e)=>r(t,e,i);function $n(i,r,t,e){const{scaleX:n,scaleY:o}=r.getAncestorScale(),s=r.getViewport(U.SHEET_VIEWPORT_KEY.VIEW_MAIN),c={left:!0,top:!0};if(!s)return{...i,absolute:c};const{left:d,right:m,top:l,bottom:a}=i,h=e.getFreeze(),{startColumn:g,startRow:f,xSplit:w,ySplit:S}=h,I=t.getNoMergeCellPositionByIndexWithNoHeader(f-S,g-w),y=t.getNoMergeCellPositionByIndexWithNoHeader(f,g),{rowHeaderWidth:C,columnHeaderHeight:T}=t,D=y.startX-I.startX,R=y.startY-I.startY,{top:v,left:A,viewportScrollX:b,viewportScrollY:L}=s;let j,O;d<A?(c.left=!0,j=(D+C+(d-A))*n,O=Math.max(Math.min((D+C+(m-A))*n,(D+C)*n),(m-b)*n)):(c.left=!1,j=Math.max((d-b)*n,(D+C)*n),O=Math.max((m-b)*n,(D+C)*n));let M,W;return l<v?(c.top=!0,M=(R+T+(l-v))*o,W=Math.max(Math.min((R+T+(m-v))*o,(R+T)*o),(a-L)*o)):(c.top=!1,M=Math.max((l-L)*o,(R+T)*o),W=Math.max((a-L)*o,(R+T)*o)),{left:j,right:O,top:M,bottom:W,absolute:c}}const Oe=(i,r,t,e)=>{const{scene:n}=r,{left:o,top:s,width:c,height:d,angle:m}=i,l={left:o,right:o+c,top:s,bottom:s+d},a=$n(l,n,t,e),{scaleX:h,scaleY:g}=n.getAncestorScale();return{startX:a.left,endX:a.right,startY:a.top,endY:a.bottom,rotate:m,width:c*h,height:d*g,absolute:a.absolute}};exports.SheetCanvasFloatDomManagerService=class extends u.Disposable{constructor(t,e,n,o,s,c,d){super();V(this,"_domLayerMap",new Map);V(this,"_domLayerInfoMap",new Map);V(this,"_transformChange$",new N.Subject);V(this,"transformChange$",this._transformChange$.asObservable());V(this,"_add$",new N.Subject);V(this,"add$",this._add$.asObservable());V(this,"_remove$",new N.Subject);V(this,"remove$",this._remove$.asObservable());V(this,"_hooks",[]);this._renderManagerService=t,this._univerInstanceService=e,this._commandService=n,this._drawingManagerService=o,this._canvasFloatDomService=s,this._sheetDrawingService=c,this._lifecycleService=d,this._drawingAddListener(),this._featureUpdateListener(),this._deleteListener(),this._bindScrollEvent()}_bindScrollEvent(){this._lifecycleService.lifecycle$.pipe(N.filter(t=>t===u.LifecycleStages.Rendered),N.take(1)).subscribe(()=>{this._scrollUpdateListener()})}_ensureMap(t,e){let n=this._domLayerMap.get(t);n||(n=new Map,this._domLayerMap.set(t,n));let o=n.get(e);return o||(o=new Map,n.set(e,o)),o}getFloatDomInfo(t){return this._domLayerInfoMap.get(t)}_getSceneAndTransformerByDrawingSearch(t){if(t==null)return;const e=this._renderManagerService.getRenderById(t),n=e==null?void 0:e.scene;if(e==null||n==null)return null;const o=n.getTransformerByCreate(),s=e.engine.getCanvasElement();return{scene:n,transformer:o,renderObject:e,canvas:s}}_getFloatDomProps(t){let e;return this._hooks.forEach(n=>{e=n.onGetFloatDomProps(t)}),e}_drawingAddListener(){this.disposeWithMe(this._drawingManagerService.add$.subscribe(t=>{t.forEach(e=>{var He,Ve,Ye;const{unitId:n,subUnitId:o,drawingId:s}=e,c=_.getSheetCommandTarget(this._univerInstanceService,{unitId:n,subUnitId:o}),d=this._drawingManagerService.getDrawingByParam(e),m=this._univerInstanceService.getUnit(n,u.UniverInstanceType.UNIVER_SHEET);if(!m)return;const l=m.getActiveSheet().getSheetId();if(!d||!c)return;const a=(He=this._renderManagerService.getRenderById(n))==null?void 0:He.with(P.SheetSkeletonManagerService).getWorksheetSkeleton(o);if(!a)return;const{transform:h,drawingType:g,data:f}=d;if(g!==u.DrawingTypeEnum.DRAWING_DOM&&g!==u.DrawingTypeEnum.DRAWING_CHART)return;const w=this._getSceneAndTransformerByDrawingSearch(n);if(w==null)return;const{scene:S,canvas:I}=w;if(h==null)return!0;if(l!==o)return;const{left:y,top:C,width:T,height:D,angle:R,flipX:v,flipY:A,skewX:b,skewY:L}=h,j=E.getDrawingShapeKeyByDrawingSearch({unitId:n,subUnitId:o,drawingId:s}),O=S.getObject(j);if(O!=null){O.transformByState({left:y,top:C,width:T,height:D,angle:R,flipX:v,flipY:A,skewX:b,skewY:L});return}const M={left:y,top:C,width:T,height:D,zIndex:this._drawingManagerService.getDrawingOrder(n,o).length-1},W=g===u.DrawingTypeEnum.DRAWING_CHART;if(W){const H=f?f.backgroundColor:"white";M.fill=H,M.rotateEnabled=!1,f&&f.border&&(M.stroke=f.border),M.paintFirst="stroke",M.strokeWidth=1,M.borderEnabled=!1,M.radius=8}const B=new U.Rect(j,M);W&&B.setObjectType(U.ObjectType.CHART),S.addObject(B,U.DRAWING_OBJECT_LAYER_INDEX),d.allowTransform!==!1&&S.attachTransformerTo(B);const te=this._ensureMap(n,o),q=new u.DisposableCollection,ct=Oe(B,w.renderObject,a.skeleton,c.worksheet),Te=new N.BehaviorSubject(ct),dt={dispose:q,rect:B,position$:Te,unitId:n,subUnitId:o};this._canvasFloatDomService.addFloatDom({position$:Te,id:s,componentKey:d.componentKey,onPointerDown:H=>{I.dispatchEvent(new PointerEvent(H.type,H))},onPointerMove:H=>{I.dispatchEvent(new PointerEvent(H.type,H))},onPointerUp:H=>{I.dispatchEvent(new PointerEvent(H.type,H))},onWheel:H=>{I.dispatchEvent(new WheelEvent(H.type,H))},props:(Ye=(Ve=te.get(s))==null?void 0:Ve.props)!=null?Ye:this._getFloatDomProps(s),data:f,unitId:n});const Fe=B.onTransformChange$.subscribeEvent(()=>{const H=Oe(B,w.renderObject,a.skeleton,c.worksheet);Te.next(H)});q.add(()=>{this._canvasFloatDomService.removeFloatDom(s)}),Fe&&q.add(Fe),this._domLayerInfoMap.set(s,dt),te.set(s,{...te.get(s)})})})),this.disposeWithMe(this._drawingManagerService.remove$.subscribe(t=>{t.forEach(e=>{const{unitId:n,subUnitId:o,drawingId:s}=e,c=E.getDrawingShapeKeyByDrawingSearch({unitId:n,subUnitId:o,drawingId:s}),d=this._getSceneAndTransformerByDrawingSearch(n);if(d==null)return;const{transformer:m,scene:l}=d,a=l.getObject(c);a!=null&&a.oKey&&m.clearControlByIds([a==null?void 0:a.oKey])})}))}_scrollUpdateListener(){const t=(e,n)=>{var l;const o=this._getSceneAndTransformerByDrawingSearch(e),s=this._ensureMap(e,n),c=Array.from(s.keys()),d=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e,subUnitId:n}),m=(l=this._renderManagerService.getRenderById(e))==null?void 0:l.with(P.SheetSkeletonManagerService).getWorksheetSkeleton(n);!o||!d||!m||c.forEach(a=>{const h=this._domLayerInfoMap.get(a);if(h){const g=Oe(h.rect,o.renderObject,m.skeleton,d.worksheet);h.position$.next(g)}})};this.disposeWithMe(this._univerInstanceService.getCurrentTypeOfUnit$(u.UniverInstanceType.UNIVER_SHEET).pipe(N.filter(e=>!!e),N.switchMap(e=>e.activeSheet$),N.filter(e=>!!e),N.map(e=>{const n=this._renderManagerService.getRenderById(e.getUnitId());return n?{render:n,unitId:e.getUnitId(),subUnitId:e.getSheetId()}:null}),N.filter(e=>!!e),N.switchMap(e=>u.fromEventSubject(e.render.scene.getViewport(U.SHEET_VIEWPORT_KEY.VIEW_MAIN).onScrollAfter$).pipe(N.map(()=>({unitId:e.unitId,subUnitId:e.subUnitId}))))).subscribe(({unitId:e,subUnitId:n})=>{t(e,n)})),this.disposeWithMe(this._commandService.onCommandExecuted(e=>{var n,o;if(e.id===P.SetZoomRatioOperation.id){const s=e.params,{unitId:c}=s;Array.from((o=(n=this._domLayerMap.get(c))==null?void 0:n.keys())!=null?o:[]).forEach(m=>{t(c,m)})}else if(e.id===_.SetFrozenMutation.id){const{unitId:s,subUnitId:c}=e.params;t(s,c)}}))}_getPosition(t,e){var g;const{startX:n,endX:o,startY:s,endY:c}=t,d=(g=this._renderManagerService.getRenderById(e))==null?void 0:g.with(P.ISheetSelectionRenderService);if(d==null)return;const m=d.getCellWithCoordByOffset(n,s);if(m==null)return;const l={column:m.actualColumn,columnOffset:n-m.startX,row:m.actualRow,rowOffset:s-m.startY},a=d.getCellWithCoordByOffset(o,c);if(a==null)return;const h={column:a.actualColumn,columnOffset:o-a.startX,row:a.actualRow,rowOffset:c-a.startY};return{from:l,to:h}}_featureUpdateListener(){this.disposeWithMe(this._drawingManagerService.update$.subscribe(t=>{t.forEach(e=>{const n=this._drawingManagerService.getDrawingByParam(e);if(!n||n.drawingType!==u.DrawingTypeEnum.DRAWING_DOM&&n.drawingType!==u.DrawingTypeEnum.DRAWING_CHART)return;const o={...n.transform};this._transformChange$.next({id:e.drawingId,value:o})})}))}_deleteListener(){this.disposeWithMe(this._drawingManagerService.remove$.subscribe(t=>{t.forEach(e=>{this._removeDom(e.drawingId)})}))}updateFloatDomProps(t,e,n,o){const s=this._domLayerInfoMap.get(n),c=this._getSceneAndTransformerByDrawingSearch(t);if(s&&c){const{scene:d}=c,m=E.getDrawingShapeKeyByDrawingSearch({unitId:t,subUnitId:e,drawingId:n}),l=d.getObject(m);l&&l instanceof U.Rect&&l.setProps(o)}}addFloatDomToPosition(t,e){const n=_.getSheetCommandTarget(this._univerInstanceService,{unitId:t.unitId,subUnitId:t.subUnitId});if(!n)throw new Error("cannot find current target!");const{unitId:o,subUnitId:s}=n,{initPosition:c,componentKey:d,data:m,allowTransform:l=!0}=t,a=e!=null?e:u.generateRandomId(),h=this._getPosition(c,o);if(h==null)return;this._ensureMap(o,s).set(a,t);const f={unitId:o,subUnitId:s,drawingId:a,drawingType:t.type||u.DrawingTypeEnum.DRAWING_DOM,componentKey:d,sheetTransform:h,transform:{left:c.startX,top:c.startY,width:c.endX-c.startX,height:c.endY-c.startY},data:m,allowTransform:l};return this._commandService.executeCommand(de.id,{unitId:o,drawings:[f]}),this._add$.next({unitId:o,subUnitId:s,id:a}),{id:a,dispose:()=>{this._removeDom(a,!0)}}}_removeDom(t,e=!1){const n=this._domLayerInfoMap.get(t);if(!n)return;const{unitId:o,subUnitId:s}=n;this._domLayerInfoMap.delete(t),n.dispose.dispose();const c=this._getSceneAndTransformerByDrawingSearch(o);if(c&&c.scene.removeObject(n.rect),e){this._ensureMap(o,s).delete(t);const m=this._drawingManagerService.getDrawingByParam({unitId:o,subUnitId:s,drawingId:t});if(!m)return;const l=this._sheetDrawingService.getBatchRemoveOp([m]),{redo:a,objects:h}=l;this._commandService.syncExecuteCommand(p.SetDrawingApplyMutation.id,{unitId:o,subUnitId:s,op:a,objects:h,type:p.DrawingApplyType.REMOVE})}}addHook(t){return this._hooks.push(t),{dispose:()=>{const e=this._hooks.findIndex(n=>n===t);this._hooks.splice(e,1)}}}};exports.SheetCanvasFloatDomManagerService=Bn([re(0,u.Inject(U.IRenderManagerService)),re(1,u.IUniverInstanceService),re(2,u.Inject(u.ICommandService)),re(3,E.IDrawingManagerService),re(4,u.Inject(G.CanvasFloatDomService)),re(5,p.ISheetDrawingService),re(6,u.Inject(u.LifecycleService))],exports.SheetCanvasFloatDomManagerService);var st=Object.defineProperty,Gn=Object.getOwnPropertyDescriptor,kn=(i,r,t)=>r in i?st(i,r,{enumerable:!0,configurable:!0,writable:!0,value:t}):i[r]=t,Fn=(i,r,t,e)=>{for(var n=e>1?void 0:e?Gn(r,t):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(n=(e?s(r,t,n):s(n))||n);return e&&n&&st(r,t,n),n},Ae=(i,r)=>(t,e)=>r(t,e,i),at=(i,r,t)=>kn(i,typeof r!="symbol"?r+"":r,t);const Hn="SHEET_IMAGE_UI_PLUGIN";exports.UniverSheetsDrawingUIPlugin=class extends u.Plugin{constructor(r=Xe,t,e,n){super(),this._config=r,this._injector=t,this._renderManagerService=e,this._configService=n;const{menu:o,...s}=u.merge({},Xe,this._config);o&&this._configService.setConfig("menu",o,{merge:!0}),this._configService.setConfig(gt,s)}onStarting(){u.registerDependencies(this._injector,[[exports.SheetCanvasFloatDomManagerService],[Me],[Se],[ye],[Ce],[De],[_e],[Ie],[ve]]),u.touchDependencies(this._injector,[[exports.SheetCanvasFloatDomManagerService]])}onReady(){u.touchDependencies(this._injector,[[De]])}onRendered(){this._registerRenderModules(),u.touchDependencies(this._injector,[[Ce],[ye],[Me],[_e],[Ie],[ve]])}onSteady(){this._injector.get(Se)}_registerRenderModules(){[[ae],[Ne],[Pe]].forEach(r=>{this.disposeWithMe(this._renderManagerService.registerRenderModule(u.UniverInstanceType.UNIVER_SHEET,r))})}};at(exports.UniverSheetsDrawingUIPlugin,"type",u.UniverInstanceType.UNIVER_SHEET);at(exports.UniverSheetsDrawingUIPlugin,"pluginName",Hn);exports.UniverSheetsDrawingUIPlugin=Fn([u.DependentOn(E.UniverDrawingPlugin,Je.UniverDocsDrawingPlugin,ee.UniverDrawingUIPlugin,p.UniverSheetsDrawingPlugin),Ae(1,u.Inject(u.Injector)),Ae(2,U.IRenderManagerService),Ae(3,u.IConfigService)],exports.UniverSheetsDrawingUIPlugin);exports.ClearSheetDrawingTransformerOperation=x;exports.DeleteDrawingsCommand=$e;exports.EditSheetDrawingOperation=We;exports.GroupSheetDrawingCommand=Le;exports.InsertFloatImageCommand=Re;exports.InsertSheetDrawingCommand=de;exports.MoveDrawingsCommand=ie;exports.RemoveSheetDrawingCommand=ce;exports.SHEETS_IMAGE_MENU_ID=ke;exports.SetDrawingArrangeCommand=xe;exports.SetSheetDrawingCommand=le;exports.SidebarSheetDrawingOperation=je;exports.UngroupSheetDrawingCommand=Be;
|
|
9
|
+
*/var Ut;function Jt(){if(Ut)return Ee;Ut=1;var i=J,r=Symbol.for("react.element"),n=Symbol.for("react.fragment"),e=Object.prototype.hasOwnProperty,t=i.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,o={key:!0,ref:!0,__self:!0,__source:!0};function s(a,d,m){var l,c={},g=null,h=null;m!==void 0&&(g=""+m),d.key!==void 0&&(g=""+d.key),d.ref!==void 0&&(h=d.ref);for(l in d)e.call(d,l)&&!o.hasOwnProperty(l)&&(c[l]=d[l]);if(a&&a.defaultProps)for(l in d=a.defaultProps,d)c[l]===void 0&&(c[l]=d[l]);return{$$typeof:r,type:a,key:g,ref:h,props:c,_owner:t.current}}return Ee.Fragment=n,Ee.jsx=s,Ee.jsxs=s,Ee}var Pt;function Zt(){return Pt||(Pt=1,ht.exports=Jt()),ht.exports}var V=Zt();const Qt="univer-upload-loading",en="univer-upload-loading-body",tn="univer-upload-loading-body-animation",nn="univer-UniverCircleAnimation",rn="univer-upload-loading-body-text",Xe={uploadLoading:Qt,uploadLoadingBody:en,uploadLoadingBodyAnimation:tn,univerCircleAnimation:nn,uploadLoadingBodyText:rn},on=()=>{const i=u.useDependency(O.IImageIoService),r=u.useDependency(u.LocaleService),[n,e]=J.useState(0);return J.useEffect(()=>{const t=i.change$.subscribe(o=>{e(o)});return()=>{t.unsubscribe()}},[i]),V.jsx("div",{style:{display:n>0?"block":"none"},className:Xe.uploadLoading,children:V.jsxs("div",{className:Xe.uploadLoadingBody,children:[V.jsx("div",{className:Xe.uploadLoadingBodyAnimation}),V.jsx("div",{className:Xe.uploadLoadingBodyText,children:`${r.t("uploadLoading.loading")}: ${n}`})]})})};var sn=Object.defineProperty,an=Object.getOwnPropertyDescriptor,cn=(i,r,n,e)=>{for(var t=e>1?void 0:e?an(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&sn(r,n,t),t},he=(i,r)=>(n,e)=>r(n,e,i);let tt=class extends u.RxDisposable{constructor(r,n,e,t,o,s,a,d){super();q(this,"_initImagePopupMenu",new Set);this._injector=r,this._drawingManagerService=n,this._canvasPopManagerService=e,this._renderManagerService=t,this._univerInstanceService=o,this._contextService=s,this._uiPartsService=a,this._commandService=d,this._init()}_init(){this._univerInstanceService.getCurrentTypeOfUnit$(u.UniverInstanceType.UNIVER_SHEET).pipe(B.takeUntil(this.dispose$)).subscribe(r=>this._create(r)),this._univerInstanceService.getTypeOfUnitDisposed$(u.UniverInstanceType.UNIVER_SHEET).pipe(B.takeUntil(this.dispose$)).subscribe(r=>this._dispose(r)),this._univerInstanceService.getAllUnitsForType(u.UniverInstanceType.UNIVER_SHEET).forEach(r=>this._create(r)),this._uiPartsService.registerComponent(F.BuiltInUIPart.CONTENT,()=>u.connectInjector(on,this._injector))}_dispose(r){const n=r.getUnitId();this._renderManagerService.removeRender(n)}_create(r){if(!r)return;const n=r.getUnitId();this._renderManagerService.has(n)&&!this._initImagePopupMenu.has(n)&&(this._popupMenuListener(n),this._initImagePopupMenu.add(n))}_hasCropObject(r){const n=r.getAllObjectsByOrder();for(const e of n)if(e instanceof pe.ImageCropperObject)return!0;return!1}_popupMenuListener(r){var o;const n=(o=this._renderManagerService.getRenderById(r))==null?void 0:o.scene;if(!n)return;const e=n.getTransformerByCreate();if(!e)return;let t;this.disposeWithMe(u.toDisposable(e.createControl$.subscribe(()=>{if(this._contextService.setContextValue(u.FOCUSING_COMMON_DRAWINGS,!0),this._hasCropObject(n))return;const s=e.getSelectedObjectMap();if(s.size>1){t==null||t.dispose();return}const a=s.values().next().value;if(!a)return;const d=a.oKey,m=this._drawingManagerService.getDrawingOKey(d);if(!m)return;const{unitId:l,subUnitId:c,drawingId:g,drawingType:h}=m,p=m.data;if(p&&p.disablePopup)return;t==null||t.dispose();const w=this._canvasPopManagerService.getFeatureMenu(l,c,g,h);t=this.disposeWithMe(this._canvasPopManagerService.attachPopupToObject(a,{componentKey:pe.COMPONENT_IMAGE_POPUP_MENU,direction:"horizontal",offset:[2,0],extraProps:{menuItems:w||this._getImageMenuItems(l,c,g,h)}}))}))),this.disposeWithMe(e.clearControl$.subscribe(()=>{t==null||t.dispose(),this._contextService.setContextValue(u.FOCUSING_COMMON_DRAWINGS,!1),this._commandService.syncExecuteCommand(O.SetDrawingSelectedOperation.id,[])})),this.disposeWithMe(this._contextService.contextChanged$.subscribe(s=>{s[u.FOCUSING_COMMON_DRAWINGS]===!1&&(t==null||t.dispose())})),this.disposeWithMe(e.changing$.subscribe(()=>{t==null||t.dispose()}))}_getImageMenuItems(r,n,e,t){return[{label:"image-popup.edit",index:0,commandId:_t.id,commandParams:{unitId:r,subUnitId:n,drawingId:e},disable:t===u.DrawingTypeEnum.DRAWING_DOM},{label:"image-popup.delete",index:1,commandId:Ae.id,commandParams:{unitId:r,drawings:[{unitId:r,subUnitId:n,drawingId:e}]},disable:!1},{label:"image-popup.crop",index:2,commandId:pe.OpenImageCropOperation.id,commandParams:{unitId:r,subUnitId:n,drawingId:e},disable:t===u.DrawingTypeEnum.DRAWING_DOM},{label:"image-popup.reset",index:3,commandId:pe.ImageResetSizeOperation.id,commandParams:[{unitId:r,subUnitId:n,drawingId:e}],disable:t===u.DrawingTypeEnum.DRAWING_DOM}]}};tt=cn([he(0,u.Inject(u.Injector)),he(1,O.IDrawingManagerService),he(2,u.Inject(U.SheetCanvasPopManagerService)),he(3,A.IRenderManagerService),he(4,u.IUniverInstanceService),he(5,u.IContextService),he(6,u.Inject(F.IUIPartsService)),he(7,u.ICommandService)],tt);function X(i,r,n){const{from:e,to:t,flipY:o=!1,flipX:s=!1,angle:a=0,skewX:d=0,skewY:m=0}=i,l=n.getCurrent();if(l==null)return;const c=U.convertPositionSheetOverGridToAbsolute(l.unitId,l.sheetId,{from:e,to:t},n);let{left:g,top:h,width:p,height:w}=c;const S=n.getCurrentSkeleton(),v=S.rowHeaderWidth+S.columnTotalWidth,D=S.columnHeaderHeight+S.rowTotalHeight;return g+p>v&&(g=v-p),h+w>D&&(h=D-w),{flipY:o,flipX:s,angle:a,skewX:d,skewY:m,left:g,top:h,width:p,height:w}}function Y(i,r){const{left:n=0,top:e=0,width:t=0,height:o=0,flipY:s=!1,flipX:a=!1,angle:d=0,skewX:m=0,skewY:l=0}=i,c=r.getCellWithCoordByOffset(n,e);if(c==null)return;const g={column:c.actualColumn,columnOffset:A.precisionTo(n-c.startX,1),row:c.actualRow,rowOffset:A.precisionTo(e-c.startY,1)},h=r.getCellWithCoordByOffset(n+t,e+o);if(h==null)return;const p={column:h.actualColumn,columnOffset:A.precisionTo(n+t-h.startX,1),row:h.actualRow,rowOffset:A.precisionTo(e+o-h.startY,1)};return{flipY:s,flipX:a,angle:d,skewX:m,skewY:l,from:g,to:p}}var dn=Object.defineProperty,ln=Object.getOwnPropertyDescriptor,un=(i,r,n,e)=>{for(var t=e>1?void 0:e?ln(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&dn(r,n,t),t},Ke=(i,r)=>(n,e)=>r(n,e,i);let pt=class extends u.Disposable{constructor(i,r,n,e,t){super(),this._context=i,this._sheetDrawingService=r,this._drawingManagerService=n,this._sheetSelectionRenderService=e,this._sheetSkeletonManagerService=t,this._init()}_init(){this._drawingInitializeListener()}_drawingInitializeListener(){this._sheetDrawingService.initializeNotification(this._context.unitId);const i=this._sheetDrawingService.getDrawingDataForUnit(this._context.unitId);for(const r in i){const n=i[r];for(const e in n.data){const t=n.data[e];t.transform=X(t.sheetTransform,this._sheetSelectionRenderService,this._sheetSkeletonManagerService)}}this._drawingManagerService.registerDrawingData(this._context.unitId,this._sheetDrawingService.getDrawingDataForUnit(this._context.unitId)),this._drawingManagerService.initializeNotification(this._context.unitId)}};pt=un([Ke(1,f.ISheetDrawingService),Ke(2,O.IDrawingManagerService),Ke(3,u.Inject(U.ISheetSelectionRenderService)),Ke(4,u.Inject(U.SheetSkeletonManagerService))],pt);function hn(i){const r=[];return i.forEach(n=>{const{parent:e,children:t}=n,{unitId:o,subUnitId:s,drawingId:a}=e,d=A.getGroupState(0,0,t.map(c=>c.transform||{})),m=t.map(c=>{const g=c.transform||{left:0,top:0},{unitId:h,subUnitId:p,drawingId:w}=c;return{unitId:h,subUnitId:p,drawingId:w,transform:{...g,left:g.left-d.left,top:g.top-d.top},groupId:a}}),l={unitId:o,subUnitId:s,drawingId:a,drawingType:u.DrawingTypeEnum.DRAWING_GROUP,transform:d};r.push({parent:l,children:m})}),r}function gn(i){const r=[];return i.forEach(n=>{const{parent:e,children:t}=n,{unitId:o,subUnitId:s,drawingId:a,transform:d={width:0,height:0}}=e;if(d==null)return;const m=t.map(c=>{const{transform:g}=c,{unitId:h,subUnitId:p,drawingId:w}=c,S=A.transformObjectOutOfGroup(g||{},d,d.width||0,d.height||0);return{unitId:h,subUnitId:p,drawingId:w,transform:S,groupId:void 0}}),l={unitId:o,subUnitId:s,drawingId:a,drawingType:u.DrawingTypeEnum.DRAWING_GROUP,transform:{left:0,top:0}};r.push({parent:l,children:m})}),r}const vt={id:"sheet.command.group-sheet-image",type:u.CommandType.COMMAND,handler:(i,r)=>{const n=i.get(u.ICommandService),e=i.get(u.IUndoRedoService),t=i.get(f.ISheetDrawingService);if(!r)return!1;const o=[];r.forEach(({parent:h,children:p})=>{o.push(h.unitId),p.forEach(w=>{o.push(w.unitId)})});const s=t.getGroupDrawingOp(r),{unitId:a,subUnitId:d,undo:m,redo:l,objects:c}=s;return n.syncExecuteCommand(f.SetDrawingApplyMutation.id,{op:l,unitId:a,subUnitId:d,objects:c,type:f.DrawingApplyType.GROUP})?(e.pushUndoRedo({unitID:a,undoMutations:[{id:f.SetDrawingApplyMutation.id,params:{op:m,unitId:a,subUnitId:d,objects:gn(c),type:f.DrawingApplyType.UNGROUP}},{id:G.id,params:o}],redoMutations:[{id:f.SetDrawingApplyMutation.id,params:{op:l,unitId:a,subUnitId:d,objects:c,type:f.DrawingApplyType.GROUP}},{id:G.id,params:o}]}),!0):!1}},Ne={id:"sheet.command.insert-sheet-image",type:u.CommandType.COMMAND,handler:(i,r)=>{var D,M,T;const n=i.get(u.ICommandService),e=i.get(u.IUndoRedoService),t=i.get(f.ISheetDrawingService),o=i.get(_.SheetInterceptorService);if(!r)return!1;const s=r.drawings,a=s.map(y=>y.unitId),d=t.getBatchAddOp(s),{unitId:m,subUnitId:l,undo:c,redo:g,objects:h}=d,p=o.onCommandExecute({id:Ne.id,params:r}),w={id:f.SetDrawingApplyMutation.id,params:{op:g,unitId:m,subUnitId:l,objects:h,type:f.DrawingApplyType.INSERT}},S={id:f.SetDrawingApplyMutation.id,params:{op:c,unitId:m,subUnitId:l,objects:h,type:f.DrawingApplyType.REMOVE}};return u.sequenceExecute([...(D=p.preRedos)!=null?D:[],w,...p.redos],n)?(e.pushUndoRedo({unitID:m,undoMutations:[...(M=p.preUndos)!=null?M:[],S,...p.undos,{id:G.id,params:a}],redoMutations:[...(T=p.preRedos)!=null?T:[],w,...p.redos,{id:G.id,params:a}]}),!0):!1}},It={id:"sheet.command.set-drawing-arrange",type:u.CommandType.COMMAND,handler:(i,r)=>{const n=i.get(u.ICommandService),e=i.get(u.IUndoRedoService);if(!r)return!1;const t=i.get(f.ISheetDrawingService),{unitId:o,subUnitId:s,drawingIds:a,arrangeType:d}=r,m={unitId:o,subUnitId:s,drawingIds:a};let l;if(d===u.ArrangeTypeEnum.forward?l=t.getForwardDrawingsOp(m):d===u.ArrangeTypeEnum.backward?l=t.getBackwardDrawingOp(m):d===u.ArrangeTypeEnum.front?l=t.getFrontDrawingsOp(m):d===u.ArrangeTypeEnum.back&&(l=t.getBackDrawingsOp(m)),l==null)return!1;const{objects:c,redo:g,undo:h}=l;return n.syncExecuteCommand(f.SetDrawingApplyMutation.id,{op:g,unitId:o,subUnitId:s,objects:c,type:f.DrawingApplyType.ARRANGE})?(e.pushUndoRedo({unitID:o,undoMutations:[{id:f.SetDrawingApplyMutation.id,params:{op:h,unitId:o,subUnitId:s,objects:c,type:f.DrawingApplyType.ARRANGE}}],redoMutations:[{id:f.SetDrawingApplyMutation.id,params:{op:g,unitId:o,subUnitId:s,objects:c,type:f.DrawingApplyType.ARRANGE}}]}),!0):!1}},je={id:"sheet.command.set-sheet-image",type:u.CommandType.COMMAND,handler:(i,r)=>{const n=i.get(u.ICommandService),e=i.get(u.IUndoRedoService),t=i.get(f.ISheetDrawingService);if(!r)return!1;const{drawings:o}=r,s=t.getBatchUpdateOp(o),{unitId:a,subUnitId:d,undo:m,redo:l,objects:c}=s;return n.syncExecuteCommand(f.SetDrawingApplyMutation.id,{unitId:a,subUnitId:d,op:l,objects:c,type:f.DrawingApplyType.UPDATE})?(e.pushUndoRedo({unitID:a,undoMutations:[{id:f.SetDrawingApplyMutation.id,params:{unitId:a,subUnitId:d,op:m,objects:c,type:f.DrawingApplyType.UPDATE}},{id:G.id,params:[a]}],redoMutations:[{id:f.SetDrawingApplyMutation.id,params:{unitId:a,subUnitId:d,op:l,objects:c,type:f.DrawingApplyType.UPDATE}},{id:G.id,params:[a]}]}),!0):!1}},Dt={id:"sheet.command.ungroup-sheet-image",type:u.CommandType.COMMAND,handler:(i,r)=>{const n=i.get(u.ICommandService),e=i.get(u.IUndoRedoService),t=i.get(f.ISheetDrawingService);if(!r)return!1;const o=[];r.forEach(({parent:h,children:p})=>{o.push(h.unitId),p.forEach(w=>{o.push(w.unitId)})});const s=t.getUngroupDrawingOp(r),{unitId:a,subUnitId:d,undo:m,redo:l,objects:c}=s;return n.syncExecuteCommand(f.SetDrawingApplyMutation.id,{op:l,unitId:a,subUnitId:d,objects:c,type:f.DrawingApplyType.UNGROUP})?(e.pushUndoRedo({unitID:a,undoMutations:[{id:f.SetDrawingApplyMutation.id,params:{op:m,unitId:a,subUnitId:d,objects:hn(c),type:f.DrawingApplyType.GROUP}},{id:G.id,params:o}],redoMutations:[{id:f.SetDrawingApplyMutation.id,params:{op:l,unitId:a,subUnitId:d,objects:c,type:f.DrawingApplyType.UNGROUP}},{id:G.id,params:o}]}),!0):!1}};var mn=Object.defineProperty,pn=Object.getOwnPropertyDescriptor,fn=(i,r,n,e)=>{for(var t=e>1?void 0:e?pn(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&mn(r,n,t),t},Q=(i,r)=>(n,e)=>r(n,e,i);function wn(i,r,n){const e=n*Math.PI/180,t=Math.abs(i*Math.cos(e))+Math.abs(r*Math.sin(e)),o=Math.abs(i*Math.sin(e))+Math.abs(r*Math.cos(e));return{rotatedWidth:t,rotatedHeight:o}}function Bt(i,r,n,e,t){var D;const{rotatedHeight:o,rotatedWidth:s}=wn(n,e,t),d=i.get(A.IRenderManagerService).getRenderById(r.unitId);if(!d)return!1;const l=(D=d.with(U.SheetSkeletonManagerService).getWorksheetSkeleton(r.subUnitId))==null?void 0:D.skeleton;if(l==null)return!1;const c=l.getCellByIndex(r.row,r.col),g=c.mergeInfo.endX-c.mergeInfo.startX-2,h=c.mergeInfo.endY-c.mergeInfo.startY-2,p=s/o,S=Math.ceil(Math.min(g,h*p))/s,v=!S||Number.isNaN(S)?.001:S;return{width:n*v,height:e*v}}let Pe=class extends u.Disposable{constructor(r,n,e,t,o,s,a,d,m,l,c,g,h){super();q(this,"_workbookSelections");this._context=r,this._skeletonManagerService=n,this._commandService=e,this._selectionRenderService=t,this._imageIoService=o,this._fileOpenerService=s,this._sheetDrawingService=a,this._drawingManagerService=d,this._contextService=m,this._messageService=l,this._localeService=c,this._injector=h,this._workbookSelections=g.getWorkbookSelections(this._context.unitId),this._updateImageListener(),this._updateOrderListener(),this._groupDrawingListener(),this._focusDrawingListener()}async insertFloatImage(){const r=await this._fileOpenerService.openFile({multiple:!0,accept:O.DRAWING_IMAGE_ALLOW_IMAGE_LIST.map(e=>`.${e.replace("image/","")}`).join(",")}),n=r.length;return n>O.DRAWING_IMAGE_COUNT_LIMIT?(this._messageService.show({type:ie.MessageType.Error,content:this._localeService.t("update-status.exceedMaxCount",String(O.DRAWING_IMAGE_COUNT_LIMIT))}),!1):n===0?!1:(r.forEach(async e=>await this._insertFloatImage(e)),!0)}async insertCellImage(){const n=(await this._fileOpenerService.openFile({multiple:!1,accept:O.DRAWING_IMAGE_ALLOW_IMAGE_LIST.map(e=>`.${e.replace("image/","")}`).join(",")}))[0];return n?(await this._insertCellImage(n),!0):!1}async _insertFloatImage(r){let n;try{n=await this._imageIoService.saveImage(r)}catch(D){const M=D.message;M===O.ImageUploadStatusType.ERROR_EXCEED_SIZE?this._messageService.show({type:ie.MessageType.Error,content:this._localeService.t("update-status.exceedMaxSize",String(O.DRAWING_IMAGE_ALLOW_SIZE/(1024*1024)))}):M===O.ImageUploadStatusType.ERROR_IMAGE_TYPE?this._messageService.show({type:ie.MessageType.Error,content:this._localeService.t("update-status.invalidImageType")}):M===O.ImageUploadStatusType.ERROR_IMAGE&&this._messageService.show({type:ie.MessageType.Error,content:this._localeService.t("update-status.invalidImage")})}if(n==null)return;const e=this._getUnitInfo(),{unitId:t,subUnitId:o}=e,{imageId:s,imageSourceType:a,source:d,base64Cache:m}=n,{width:l,height:c,image:g}=await O.getImageSize(m||""),{width:h,height:p}=this._context.scene;this._imageIoService.addImageSourceCache(d,a,g);let w=1;if(l>O.DRAWING_IMAGE_WIDTH_LIMIT||c>O.DRAWING_IMAGE_HEIGHT_LIMIT){const D=O.DRAWING_IMAGE_WIDTH_LIMIT/l,M=O.DRAWING_IMAGE_HEIGHT_LIMIT/c;w=Math.max(D,M)}const S=this._getImagePosition(l*w,c*w,h,p);if(S==null)return;const v={unitId:t,subUnitId:o,drawingId:s,drawingType:u.DrawingTypeEnum.DRAWING_IMAGE,imageSourceType:a,source:d,transform:X(S,this._selectionRenderService,this._skeletonManagerService),sheetTransform:S};this._commandService.executeCommand(Ne.id,{unitId:t,drawings:[v]})}async _insertCellImage(r){let n;try{n=await this._imageIoService.saveImage(r)}catch(S){const v=S.message;v===O.ImageUploadStatusType.ERROR_EXCEED_SIZE?this._messageService.show({type:ie.MessageType.Error,content:this._localeService.t("update-status.exceedMaxSize",String(O.DRAWING_IMAGE_ALLOW_SIZE/(1024*1024)))}):v===O.ImageUploadStatusType.ERROR_IMAGE_TYPE?this._messageService.show({type:ie.MessageType.Error,content:this._localeService.t("update-status.invalidImageType")}):v===O.ImageUploadStatusType.ERROR_IMAGE&&this._messageService.show({type:ie.MessageType.Error,content:this._localeService.t("update-status.invalidImage")})}if(n==null)return;const{imageId:e,imageSourceType:t,source:o,base64Cache:s}=n,{width:a,height:d,image:m}=await O.getImageSize(s||"");this._imageIoService.addImageSourceCache(o,t,m);const l=this._workbookSelections.getCurrentLastSelection();if(!l)return!1;const c=u.createDocumentModelWithStyle("",{}),g=Bt(this._injector,{unitId:this._context.unitId,subUnitId:this._context.unit.getActiveSheet().getSheetId(),row:l.primary.actualRow,col:l.primary.actualColumn},a,d,0);if(!g)return!1;const h={size:{width:g.width,height:g.height},positionH:{relativeFrom:u.ObjectRelativeFromH.PAGE,posOffset:0},positionV:{relativeFrom:u.ObjectRelativeFromV.PARAGRAPH,posOffset:0},angle:0},p={unitId:c.getUnitId(),subUnitId:c.getUnitId(),drawingId:e,drawingType:u.DrawingTypeEnum.DRAWING_IMAGE,imageSourceType:t,source:o,transform:jt.docDrawingPositionToTransform(h),docTransform:h,behindDoc:u.BooleanNumber.FALSE,title:"",description:"",layoutType:u.PositionedObjectLayoutType.INLINE,wrapText:u.WrapTextType.BOTH_SIDES,distB:0,distL:0,distR:0,distT:0},w=u.BuildTextUtils.drawing.add({documentDataModel:c,drawings:[p],selection:{collapsed:!0,startOffset:0,endOffset:0}});return w?(c.apply(w),this._commandService.syncExecuteCommand(_.SetRangeValuesCommand.id,{value:{[l.primary.actualRow]:{[l.primary.actualColumn]:{p:c.getSnapshot(),t:1}}}})):!1}_getUnitInfo(){const r=this._context.unit,n=r.getActiveSheet(),e=r.getUnitId(),t=n.getSheetId();return{unitId:e,subUnitId:t}}_getImagePosition(r,n,e,t){const o=this._workbookSelections.getCurrentSelections();let s={startRow:0,endRow:0,startColumn:0,endColumn:0};o&&o.length>0&&(s=o[o.length-1].range);const a=U.attachRangeWithCoord(this._skeletonManagerService.getCurrent().skeleton,s);if(a==null)return;let{startColumn:d,startRow:m,startX:l,startY:c}=a,g=!1;if(l+r>e&&(l=e-r,l<0&&(l=0,r=e),g=!0),c+n>t&&(c=t-n,c<0&&(c=0,n=t),g=!0),g){const S=this._selectionRenderService.getCellWithCoordByOffset(l,c);if(S==null)return;l=S.startX,c=S.startY,d=S.actualColumn,m=S.actualRow}const h={column:d,columnOffset:0,row:m,rowOffset:0},p=this._selectionRenderService.getCellWithCoordByOffset(l+r,c+n);if(p==null)return;const w={column:p.actualColumn,columnOffset:l+r-p.startX,row:p.actualRow,rowOffset:c+n-p.startY};return{from:h,to:w}}_updateOrderListener(){this.disposeWithMe(this._drawingManagerService.featurePluginOrderUpdate$.subscribe(r=>{const{unitId:n,subUnitId:e,drawingIds:t,arrangeType:o}=r;this._commandService.executeCommand(It.id,{unitId:n,subUnitId:e,drawingIds:t,arrangeType:o})}))}_updateImageListener(){this.disposeWithMe(this._drawingManagerService.featurePluginUpdate$.subscribe(r=>{const n=[];r.length!==0&&(r.forEach(e=>{const{unitId:t,subUnitId:o,drawingId:s,drawingType:a,transform:d}=e;if(d==null)return;const m=this._sheetDrawingService.getDrawingByParam({unitId:t,subUnitId:o,drawingId:s});if(m==null||m.unitId!==this._context.unitId)return;const l=Y({...m.transform,...d},this._selectionRenderService);if(l==null)return;const c={...e,transform:{...m.transform,...d,...X(l,this._selectionRenderService,this._skeletonManagerService)},sheetTransform:{...l}};n.push(c)}),n.length>0&&this._commandService.executeCommand(je.id,{unitId:r[0].unitId,drawings:n}))}))}_groupDrawingListener(){this.disposeWithMe(this._drawingManagerService.featurePluginGroupUpdate$.subscribe(r=>{this._commandService.executeCommand(vt.id,r);const{unitId:n,subUnitId:e,drawingId:t}=r[0].parent;this._commandService.syncExecuteCommand(O.SetDrawingSelectedOperation.id,[{unitId:n,subUnitId:e,drawingId:t}])})),this.disposeWithMe(this._drawingManagerService.featurePluginUngroupUpdate$.subscribe(r=>{this._commandService.executeCommand(Dt.id,r)}))}_focusDrawingListener(){this.disposeWithMe(this._drawingManagerService.focus$.subscribe(r=>{r==null||r.length===0?(this._contextService.setContextValue(u.FOCUSING_COMMON_DRAWINGS,!1),this._sheetDrawingService.focusDrawing([])):(this._contextService.setContextValue(u.FOCUSING_COMMON_DRAWINGS,!0),this._sheetDrawingService.focusDrawing(r))}))}};Pe=fn([Q(1,u.Inject(U.SheetSkeletonManagerService)),Q(2,u.ICommandService),Q(3,U.ISheetSelectionRenderService),Q(4,O.IImageIoService),Q(5,F.ILocalFileService),Q(6,f.ISheetDrawingService),Q(7,O.IDrawingManagerService),Q(8,u.IContextService),Q(9,F.IMessageService),Q(10,u.Inject(u.LocaleService)),Q(11,u.Inject(_.SheetsSelectionsService)),Q(12,u.Inject(u.Injector))],Pe);var Sn=Object.defineProperty,_n=Object.getOwnPropertyDescriptor,vn=(i,r,n,e)=>{for(var t=e>1?void 0:e?_n(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&Sn(r,n,t),t},Se=(i,r)=>(n,e)=>r(n,e,i);function ft(i,r,n){var e,t,o,s;if(((t=(e=n==null?void 0:n.p)==null?void 0:e.body)==null?void 0:t.dataStream.length)===3&&((s=(o=n.p)==null?void 0:o.drawingsOrder)==null?void 0:s.length)===1){const a=n.p.drawings[n.p.drawingsOrder[0]],d=Bt(i,{unitId:r.unitId,subUnitId:r.subUnitId,row:r.row,col:r.col},a.docTransform.size.width,a.docTransform.size.height,a.docTransform.angle);if(d)return a.transform.width=d.width,a.transform.height=d.height,a.docTransform.size.width=d.width,a.docTransform.size.height=d.height,a.transform.left=0,a.transform.top=0,a.docTransform.positionH.posOffset=0,a.docTransform.positionV.posOffset=0,n.p.documentStyle.pageSize.width=1/0,n.p.documentStyle.pageSize.height=1/0,!0}return!1}let nt=class extends u.Disposable{constructor(i,r,n,e,t,o,s){super(),this._commandService=i,this._sheetInterceptorService=r,this._univerInstanceService=n,this._injector=e,this._drawingManagerService=t,this._docDrawingController=o,this._editorBridgeService=s,this._initHandleResize(),this._handleInitEditor(),this._handleWriteCell(),this._initCellContentInterceptor()}_initHandleResize(){this.disposeWithMe(this._commandService.onCommandExecuted(i=>{let r,n=[];if(i.id===_.SetWorksheetRowHeightMutation.id){const e=i.params;n=e.ranges,r=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId})}else if(i.id===_.SetWorksheetColWidthMutation.id){const e=i.params;n=e.ranges,r=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId})}else if(i.id===_.SetWorksheetRowIsAutoHeightMutation.id){const e=i.params;n=e.ranges,r=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId})}else if(i.id===_.SetWorksheetRowAutoHeightMutation.id){const e=i.params;r=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId}),n=e.rowsAutoHeightInfo.map(t=>({startRow:t.row,endRow:t.row,startColumn:0,endColumn:9999}))}else if(i.id===_.AddWorksheetMergeMutation.id){const e=i.params;n=e.ranges,r=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId})}else if(i.id===_.RemoveWorksheetMergeMutation.id){const e=i.params;n=e.ranges,r=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId})}r&&n.length&&n.forEach(e=>{const t=u.Range.transformRange(e,r.worksheet);for(let o=t.startRow;o<=t.endRow;o++)for(let s=t.startColumn;s<=t.endColumn;s++)ft(this._injector,{unitId:r.unitId,subUnitId:r.subUnitId,row:o,col:s},r.worksheet.getCellRaw(o,s))})}))}_handleInitEditor(){this.disposeWithMe(this._editorBridgeService.visible$.subscribe(i=>{i.visible?i.visible&&(this._drawingManagerService.removeDrawingDataForUnit(u.DOCS_NORMAL_EDITOR_UNIT_ID_KEY),this._docDrawingController.loadDrawingDataForUnit(u.DOCS_NORMAL_EDITOR_UNIT_ID_KEY),this._drawingManagerService.initializeNotification(u.DOCS_NORMAL_EDITOR_UNIT_ID_KEY)):this._drawingManagerService.removeDrawingDataForUnit(u.DOCS_NORMAL_EDITOR_UNIT_ID_KEY)})),this.disposeWithMe(this._commandService.onCommandExecuted(i=>{i.id===jt.ReplaceSnapshotCommand.id&&i.params.unitId===u.DOCS_ZEN_EDITOR_UNIT_ID_KEY&&(this._drawingManagerService.removeDrawingDataForUnit(u.DOCS_ZEN_EDITOR_UNIT_ID_KEY),this._docDrawingController.loadDrawingDataForUnit(u.DOCS_ZEN_EDITOR_UNIT_ID_KEY),this._drawingManagerService.initializeNotification(u.DOCS_ZEN_EDITOR_UNIT_ID_KEY))}))}_handleWriteCell(){this.disposeWithMe(this._sheetInterceptorService.writeCellInterceptor.intercept(_.AFTER_CELL_EDIT,{priority:9999,handler:(i,r,n)=>(ft(this._injector,{unitId:r.unitId,subUnitId:r.subUnitId,row:r.row,col:r.col},i),n(i))}))}_initCellContentInterceptor(){this.disposeWithMe(this._sheetInterceptorService.intercept(_.INTERCEPTOR_POINT.CELL_CONTENT,{effect:u.InterceptorEffectEnum.Style,priority:_.InterceptCellContentPriority.CELL_IMAGE,handler:(i,r,n)=>{var e;return i!=null&&i.p&&((e=i.p.drawingsOrder)!=null&&e.length)&&(i.interceptorStyle||(i.interceptorStyle={}),i.interceptorStyle.tr={a:0}),n(i)}}))}};nt=vn([Se(0,u.ICommandService),Se(1,u.Inject(_.SheetInterceptorService)),Se(2,u.IUniverInstanceService),Se(3,u.Inject(u.Injector)),Se(4,O.IDrawingManagerService),Se(5,u.Inject(Nt.DocDrawingController)),Se(6,u.Inject(U.IEditorBridgeService))],nt);var In=Object.defineProperty,Dn=Object.getOwnPropertyDescriptor,Cn=(i,r,n,e)=>{for(var t=e>1?void 0:e?Dn(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&In(r,n,t),t},At=(i,r)=>(n,e)=>r(n,e,i);let rt=class extends u.Disposable{constructor(i,r){super(),this._autoFillService=i,this._injector=r,this._initAutoFillHooks()}_initAutoFillHooks(){this.disposeWithMe(this._autoFillService.addHook({id:"sheet-cell-image-autofill",onBeforeSubmit:(i,r,n,e)=>{new u.ObjectMatrix(e).forValue((t,o,s)=>{ft(this._injector,{unitId:i.unitId,subUnitId:i.subUnitId,row:t,col:o},s)})}}))}};rt=Cn([At(0,u.Inject(U.IAutoFillService)),At(1,u.Inject(u.Injector))],rt);var yn=Object.defineProperty,Mn=Object.getOwnPropertyDescriptor,Rn=(i,r,n,e)=>{for(var t=e>1?void 0:e?Mn(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&yn(r,n,t),t},ze=(i,r)=>(n,e)=>r(n,e,i);let it=class extends u.Disposable{constructor(r,n,e,t){super();q(this,"_isSetCursor",!1);this._hoverManagerService=r,this._renderManagerService=n,this._selectionsService=e,this._drawingRenderService=t}_initHover(){}_initImageClick(){}};it=Rn([ze(0,u.Inject(U.HoverManagerService)),ze(1,u.Inject(A.IRenderManagerService)),ze(2,u.Inject(_.SheetsSelectionsService)),ze(3,u.Inject(pe.DrawingRenderService))],it);var Tn=Object.defineProperty,bn=Object.getOwnPropertyDescriptor,En=(i,r,n,e)=>{for(var t=e>1?void 0:e?bn(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&Tn(r,n,t),t},gt=(i,r)=>(n,e)=>r(n,e,i);let ot=class extends u.Disposable{constructor(r,n,e){super();q(this,"_copyInfo");this._sheetClipboardService=r,this._renderManagerService=n,this._sheetDrawingService=e,this._initCopyPaste()}_initCopyPaste(){this._sheetClipboardService.addClipboardHook({id:"SHEET_IMAGE_UI_PLUGIN",onBeforeCopy:(r,n,e)=>this._collect(r,n,e),onPasteCells:(r,n,e,t)=>{const{copyType:o=U.COPY_TYPE.COPY,pasteType:s}=t,{range:a}=r||{},{range:d,unitId:m,subUnitId:l}=n;return this._generateMutations(d,{copyType:o,pasteType:s,copyRange:a,unitId:m,subUnitId:l})},onPastePlainText:(r,n)=>({undos:[],redos:[]})})}_collect(r,n,e){var g;const t=(g=this._renderManagerService.getRenderById(r))==null?void 0:g.with(U.SheetSkeletonManagerService);if(!t)return;const o=t.attachRangeWithCoord(e);if(!o)return;const{startX:s,endX:a,startY:d,endY:m}=o,l=this._sheetDrawingService.getDrawingData(r,n),c=[];Object.keys(l).forEach(h=>{const p=l[h],{transform:w}=p;if(p.anchorType!==f.SheetDrawingAnchorType.Both||!w)return;const{left:S=0,top:v=0,width:D=0,height:M=0}=w,{drawingStartX:T,drawingEndX:y,drawingStartY:R,drawingEndY:I}={drawingStartX:S,drawingEndX:S+D,drawingStartY:v,drawingEndY:v+M};s<=T&&y<=a&&d<=R&&I<=m&&c.push(p)}),c.length&&(this._copyInfo={drawings:c,unitId:r,subUnitId:n})}_generateMutations(r,n){var x;if(!this._copyInfo)return{redos:[],undos:[]};if([U.PREDEFINED_HOOK_NAME.SPECIAL_PASTE_COL_WIDTH,U.PREDEFINED_HOOK_NAME.SPECIAL_PASTE_VALUE,U.PREDEFINED_HOOK_NAME.SPECIAL_PASTE_FORMAT,U.PREDEFINED_HOOK_NAME.SPECIAL_PASTE_FORMULA].includes(n.pasteType))return{redos:[],undos:[]};const{copyRange:t}=n;if(!t)return{redos:[],undos:[]};const{drawings:o,unitId:s,subUnitId:a}=this._copyInfo,{ranges:[d,m],mapFunc:l}=U.virtualizeDiscreteRanges([t,r]),{row:c,col:g}=l(d.startRow,d.startColumn),{row:h,col:p}=l(m.startRow,m.startColumn),w=(x=this._renderManagerService.getRenderById(s))==null?void 0:x.with(U.SheetSkeletonManagerService);if(!w)return{redos:[],undos:[]};const S=w.attachRangeWithCoord({startRow:c,endRow:c,startColumn:g,endColumn:g}),v=w.attachRangeWithCoord({startRow:h,endRow:h,startColumn:p,endColumn:p});if(!S||!v)return{redos:[],undos:[]};const D=[],M=[],T=v.startX-S.startX,y=v.startY-S.startY,R=h-c,I=p-g,N=n.copyType===U.COPY_TYPE.CUT,{_sheetDrawingService:E}=this;return o.forEach(P=>{const{transform:b,sheetTransform:C}=P;if(!b)return;const j={...P,unitId:s,subUnitId:a,drawingId:N?P.drawingId:u.Tools.generateRandomId(),transform:{...b,left:b.left+T,top:b.top+y},sheetTransform:{to:{...C.to,row:C.to.row+R,column:C.to.column+I},from:{...C.from,row:C.from.row+R,column:C.from.column+I}}};if(N){const{undo:W,redo:K,objects:H}=E.getBatchUpdateOp([j]);D.push({id:f.SetDrawingApplyMutation.id,params:{unitId:s,subUnitId:a,type:f.DrawingApplyType.UPDATE,op:K,objects:H}}),M.push({id:f.SetDrawingApplyMutation.id,params:{unitId:s,subUnitId:a,type:f.DrawingApplyType.UPDATE,op:W,objects:H}})}else{const{undo:W,redo:K,objects:H}=E.getBatchAddOp([j]);D.push({id:f.SetDrawingApplyMutation.id,params:{op:K,unitId:s,subUnitId:a,objects:H,type:f.DrawingApplyType.INSERT}}),M.push({id:f.SetDrawingApplyMutation.id,params:{op:W,unitId:s,subUnitId:a,objects:H,type:f.DrawingApplyType.REMOVE}})}}),{redos:D,undos:M}}};ot=En([gt(0,U.ISheetClipboardService),gt(1,A.IRenderManagerService),gt(2,f.ISheetDrawingService)],ot);var On=Object.defineProperty,Un=Object.getOwnPropertyDescriptor,Pn=(i,r,n,e)=>{for(var t=e>1?void 0:e?Un(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&On(r,n,t),t},Oe=(i,r)=>(n,e)=>r(n,e,i);let st=class extends u.Disposable{constructor(i,r,n,e,t){super(),this._drawingManagerService=i,this._renderManagerService=r,this._permissionService=n,this._univerInstanceService=e,this._userManagerService=t,this._initDrawingVisible(),this._initDrawingEditable(),this._initViewPermissionChange(),this._initEditPermissionChange()}_initDrawingVisible(){const i=this._univerInstanceService.getCurrentTypeOfUnit$(u.UniverInstanceType.UNIVER_SHEET);this.disposeWithMe(B.combineLatest([i,this._userManagerService.currentUser$]).subscribe(([r,n])=>{if(!r){this._drawingManagerService.setDrawingVisible(!1);return}r.activeSheet$.subscribe(e=>{if(!e){this._drawingManagerService.setDrawingVisible(!1);return}const t=r.getUnitId(),o=e.getSheetId();if(this._permissionService.composePermission([new _.WorkbookViewPermission(t).id,new _.WorksheetViewPermission(t,o).id]).every(a=>a.value))this._drawingManagerService.setDrawingVisible(!0);else{this._drawingManagerService.setDrawingVisible(!1);const a=r.getUnitId(),d=e.getSheetId(),m=this._drawingManagerService.getDrawingData(a,d),l=Object.values(m),c=this._renderManagerService.getRenderById(a),g=c==null?void 0:c.scene;if(g==null)return;g.getAllObjectsByOrder().forEach(p=>{p.classType===A.RENDER_CLASS_TYPE.IMAGE&&l.some(w=>p.oKey.includes(w.drawingId))&&g.removeObject(p)})}})}))}_initDrawingEditable(){const i=this._univerInstanceService.getCurrentTypeOfUnit$(u.UniverInstanceType.UNIVER_SHEET);this.disposeWithMe(B.combineLatest([i,this._userManagerService.currentUser$]).subscribe(([r,n])=>{if(!r){this._drawingManagerService.setDrawingEditable(!1);return}r.activeSheet$.subscribe(e=>{if(!e){this._drawingManagerService.setDrawingEditable(!1);return}const t=r.getUnitId(),o=e.getSheetId();if(this._permissionService.composePermission([new _.WorkbookEditablePermission(t).id,new _.WorksheetEditPermission(t,o).id]).every(a=>a.value))this._drawingManagerService.setDrawingEditable(!0);else{this._drawingManagerService.setDrawingEditable(!1);const a=r.getUnitId(),d=e.getSheetId(),m=this._drawingManagerService.getDrawingData(a,d),l=Object.values(m),c=this._renderManagerService.getRenderById(a),g=c==null?void 0:c.scene;if(g==null)return;g.getAllObjectsByOrder().forEach(p=>{p.classType===A.RENDER_CLASS_TYPE.IMAGE&&l.some(w=>p.oKey.includes(w.drawingId))&&g.detachTransformerFrom(p)})}})}))}_initViewPermissionChange(){const i=this._univerInstanceService.getCurrentTypeOfUnit$(u.UniverInstanceType.UNIVER_SHEET);this.disposeWithMe(B.combineLatest([i,this._userManagerService.currentUser$]).subscribe(([r,n])=>{r&&r.activeSheet$.subscribe(e=>{var c;if(!e)return;const t=r.getUnitId(),o=e.getSheetId();let s=!0;const a=this._renderManagerService.getRenderById(t),d=a==null?void 0:a.scene;if(d==null)return;const m=d.getTransformerByCreate(),l=this._permissionService.composePermission$([new _.WorkbookViewPermission(t).id,new _.WorksheetViewPermission(t,o).id]).pipe(B.map(g=>g.every(h=>h.value)));l==null||l.pipe(B.filter(g=>g!==s),B.distinctUntilChanged()).subscribe({next:g=>{s=g,this._drawingManagerService.setDrawingVisible(g);const h=d.getAllObjectsByOrder(),p=this._drawingManagerService.getDrawingData(t,o),w=Object.values(p);g?this._drawingManagerService.addNotification(w):(h.forEach(S=>{S.classType===A.RENDER_CLASS_TYPE.IMAGE&&w.some(v=>S.oKey.includes(v.drawingId))&&d.removeObject(S)}),m.clearSelectedObjects())}}),(c=this._permissionService.getPermissionPoint$(new _.WorksheetViewPermission(t,o).id))==null||c.pipe(B.filter(g=>g.value!==s),B.distinctUntilChanged()).subscribe({complete:()=>{s=!0,this._drawingManagerService.setDrawingVisible(!0);const g=this._drawingManagerService.getDrawingData(t,o),h=Object.values(g);this._drawingManagerService.addNotification(h)}})})}))}_initEditPermissionChange(){const i=this._univerInstanceService.getCurrentTypeOfUnit$(u.UniverInstanceType.UNIVER_SHEET);this.disposeWithMe(B.combineLatest([i,this._userManagerService.currentUser$]).subscribe(([r,n])=>{r&&r.activeSheet$.subscribe(e=>{var c;if(!e)return;const t=r.getUnitId(),o=e.getSheetId();let s=!0;const a=this._renderManagerService.getRenderById(t),d=a==null?void 0:a.scene;if(d==null)return;const m=d.getTransformerByCreate(),l=this._permissionService.composePermission$([new _.WorkbookEditablePermission(t).id,new _.WorksheetEditPermission(t,o).id]).pipe(B.map(g=>g.every(h=>h.value)));l==null||l.pipe(B.filter(g=>g!==s),B.distinctUntilChanged()).subscribe({next:g=>{s=g,this._drawingManagerService.setDrawingEditable(g);const h=d.getAllObjectsByOrder(),p=this._drawingManagerService.getDrawingData(t,o),w=Object.values(p);g?(h.forEach(S=>{S.classType===A.RENDER_CLASS_TYPE.IMAGE&&w.some(v=>S.oKey.includes(v.drawingId))&&d.attachTransformerTo(S)}),this._drawingManagerService.addNotification(w)):(h.forEach(S=>{S.classType===A.RENDER_CLASS_TYPE.IMAGE&&w.some(v=>S.oKey.includes(v.drawingId))&&d.detachTransformerFrom(S)}),m.clearSelectedObjects())}}),(c=this._permissionService.getPermissionPoint$(new _.WorksheetEditPermission(t,o).id))==null||c.pipe(B.filter(g=>g.value!==s),B.distinctUntilChanged()).subscribe({complete:()=>{s=!0;const g=r.getUnitId(),h=e.getSheetId(),p=this._drawingManagerService.getDrawingData(g,h),w=Object.values(p),S=this._renderManagerService.getRenderById(g),v=S==null?void 0:S.scene;if(v==null)return;this._drawingManagerService.setDrawingEditable(!0),v.getAllObjectsByOrder().forEach(M=>{M.classType===A.RENDER_CLASS_TYPE.IMAGE&&w.some(T=>M.oKey.includes(T.drawingId))&&v.detachTransformerFrom(M)})}})})}))}};st=Pn([Oe(0,O.IDrawingManagerService),Oe(1,A.IRenderManagerService),Oe(2,u.IPermissionService),Oe(3,u.IUniverInstanceService),Oe(4,u.Inject(u.UserManagerService))],st);var An=Object.defineProperty,Nn=Object.getOwnPropertyDescriptor,jn=(i,r,n,e)=>{for(var t=e>1?void 0:e?Nn(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&An(r,n,t),t},qe=(i,r)=>(n,e)=>r(n,e,i);let at=class extends u.Disposable{constructor(i,r,n,e){super(),this._sheetPrintInterceptorService=i,this._drawingRenderService=r,this._drawingManagerService=n,this._renderManagerService=e,this._initPrinting()}_initPrinting(){this.disposeWithMe(this._sheetPrintInterceptorService.interceptor.intercept(this._sheetPrintInterceptorService.interceptor.getInterceptPoints().PRINTING_COMPONENT_COLLECT,{handler:(i,r,n)=>{const{unitId:e,scene:t,subUnitId:o}=r,s=this._drawingManagerService.getDrawingDataForUnit(e),a=s==null?void 0:s[o];return a&&a.order.forEach(d=>{this._drawingRenderService.renderDrawing(a.data[d],t)}),n()}})),this.disposeWithMe(this._sheetPrintInterceptorService.interceptor.intercept(this._sheetPrintInterceptorService.interceptor.getInterceptPoints().PRINTING_RANGE,{handler:(i,r,n)=>{const{unitId:e,subUnitId:t}=r,o=this._renderManagerService.getRenderById(e);if(!o)return n(i);const s=o.with(U.SheetSkeletonManagerService).getWorksheetSkeleton(t);if(!s)return n(i);const a=this._drawingManagerService.getDrawingDataForUnit(e),d=a==null?void 0:a[r.subUnitId];if(!d)return n(i);const{scaleX:m,scaleY:l}=o.scene,c=i?{...i}:{startColumn:0,endColumn:0,endRow:0,startRow:0},g=d.order.map(h=>d.data[h]).filter(h=>h.drawingType!==u.DrawingTypeEnum.DRAWING_DOM);return g.length?(g.forEach(h=>{if(!h.groupId&&h.transform&&u.Tools.isDefine(h.transform.left)&&u.Tools.isDefine(h.transform.top)&&u.Tools.isDefine(h.transform.width)&&u.Tools.isDefine(h.transform.height)){const p=s.skeleton.getCellIndexByOffset(h.transform.left,h.transform.top,m,l,{x:0,y:0}),w=s.skeleton.getCellIndexByOffset(h.transform.left+h.transform.width,h.transform.top+h.transform.height,m,l,{x:0,y:0});p.column<c.startColumn&&(c.startColumn=p.column),p.row<c.startRow&&(c.startRow=p.row),c.endRow<w.row&&(c.endRow=w.row),c.endColumn<w.column&&(c.endColumn=w.column)}}),n(c)):n(i)}}))}};at=jn([qe(0,u.Inject(U.SheetPrintInterceptorService)),qe(1,u.Inject(pe.DrawingRenderService)),qe(2,O.IDrawingManagerService),qe(3,A.IRenderManagerService)],at);var Wn=Object.defineProperty,Bn=Object.getOwnPropertyDescriptor,kn=(i,r,n,e)=>{for(var t=e>1?void 0:e?Bn(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&Wn(r,n,t),t},ge=(i,r)=>(n,e)=>r(n,e,i);const xn=[_.InsertRowCommand.id,_.InsertColCommand.id,_.RemoveRowCommand.id,_.RemoveColCommand.id,_.DeleteRangeMoveLeftCommand.id,_.DeleteRangeMoveUpCommand.id,_.InsertRangeMoveDownCommand.id,_.InsertRangeMoveRightCommand.id,_.DeltaRowHeightCommand.id,_.SetRowHeightCommand.id,_.DeltaColumnWidthCommand.id,_.SetColWidthCommand.id,_.SetRowHiddenCommand.id,_.SetSpecificRowsVisibleCommand.id,_.SetSpecificColsVisibleCommand.id,_.SetColHiddenCommand.id,_.MoveColsCommand.id,_.MoveRowsCommand.id,_.MoveRangeCommand.id],Ln=[_.SetRowVisibleMutation.id,_.SetRowHiddenMutation.id,_.SetColVisibleMutation.id,_.SetColHiddenMutation.id,_.SetWorksheetRowHeightMutation.id,_.SetWorksheetColWidthMutation.id];let wt=class extends u.Disposable{constructor(i,r,n,e,t,o,s,a,d){super(),this._context=i,this._renderManagerService=r,this._commandService=n,this._selectionRenderService=e,this._skeletonManagerService=t,this._sheetInterceptorService=o,this._sheetDrawingService=s,this._drawingManagerService=a,this._univerInstanceService=d,this._sheetInterceptorListener(),this._commandListener(),this._sheetRefreshListener()}_sheetInterceptorListener(){this.disposeWithMe(this._sheetInterceptorService.interceptCommand({getMutations:i=>{if(!xn.includes(i.id))return{redos:[],undos:[]};if(i.params==null)return{redos:[],undos:[]};const r=i.id;if(r===_.InsertRowCommand.id)return this._moveRowInterceptor(i.params,"insert");if([_.MoveColsCommand.id,_.MoveRowsCommand.id,_.MoveRangeCommand.id].includes(r))return this._moveRangeInterceptor(i.params);if(r===_.InsertColCommand.id)return this._moveColInterceptor(i.params,"insert");if(r===_.RemoveRowCommand.id)return this._moveRowInterceptor(i.params,"remove");if(r===_.RemoveColCommand.id)return this._moveColInterceptor(i.params,"remove");if(r===_.DeleteRangeMoveLeftCommand.id){const{range:n}=i.params;return this._getRangeMoveUndo(n,0)}else if(r===_.DeleteRangeMoveUpCommand.id){const{range:n}=i.params;return this._getRangeMoveUndo(n,1)}else if(r===_.InsertRangeMoveDownCommand.id){const{range:n}=i.params;return this._getRangeMoveUndo(n,2)}else if(r===_.InsertRangeMoveRightCommand.id){const{range:n}=i.params;return this._getRangeMoveUndo(n,3)}else if(r===_.SetRowHiddenCommand.id||r===_.SetSpecificRowsVisibleCommand.id){const n=i.params,{unitId:e,subUnitId:t,ranges:o}=n;return this._getDrawingUndoForRowVisible(e,t,o)}else if(r===_.SetSpecificColsVisibleCommand.id||r===_.SetColHiddenCommand.id){const n=i.params,{unitId:e,subUnitId:t,ranges:o}=n;return this._getDrawingUndoForColVisible(e,t,o)}else if(r===_.DeltaRowHeightCommand.id||r===_.SetRowHeightCommand.id||r===_.DeltaColumnWidthCommand.id||r===_.SetColWidthCommand.id){const n=i.params,{unitId:e,subUnitId:t,ranges:o}=n,s=r===_.DeltaRowHeightCommand.id||r===_.SetRowHeightCommand.id;return this._getDrawingUndoForRowAndColSize(e,t,o,s)}return{redos:[],undos:[]}}}))}_getRangeMoveUndo(i,r){const n=_.getSheetCommandTarget(this._univerInstanceService);if(n==null)return{redos:[],undos:[]};const e=n.unitId,t=n.subUnitId,o=[],s=[],a=this._sheetDrawingService.getDrawingData(e,t),d=[],m=[];if(Object.keys(a).forEach(l=>{const c=a[l],{updateDrawings:g,deleteDrawings:h}=this._getUpdateOrDeleteDrawings(i,r,c);d.push(...g),m.push(...h)}),d.length===0&&m.length===0)return{redos:[],undos:[]};if(d.length>0){const l=this._sheetDrawingService.getBatchUpdateOp(d),{undo:c,redo:g,objects:h}=l;o.push({id:f.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:t,op:g,objects:h,type:f.DrawingApplyType.UPDATE}}),s.push({id:f.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:t,op:c,objects:h,type:f.DrawingApplyType.UPDATE}})}if(m.length>0){const l=this._sheetDrawingService.getBatchRemoveOp(m),c=l.undo,g=l.redo,h=l.objects;o.push({id:f.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:t,op:g,objects:h,type:f.DrawingApplyType.REMOVE}}),s.push({id:f.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:t,op:c,objects:h,type:f.DrawingApplyType.INSERT}})}return o.push({id:G.id,params:[e]}),s.push({id:G.id,params:[e]}),{redos:o,undos:s}}_getUpdateOrDeleteDrawings(i,r,n){const e=[],t=[],{sheetTransform:o,anchorType:s=f.SheetDrawingAnchorType.Position,transform:a,unitId:d,subUnitId:m,drawingId:l}=n,{from:c,to:g}=o,{row:h,column:p}=c,{row:w,column:S}=g;if(o==null||a==null)return{updateDrawings:e,deleteDrawings:t};const{startRow:v,endRow:D,startColumn:M,endColumn:T}=i;let y=null,R=null;if(r===0&&h>=v&&w<=D)if(p>=M&&S<=T)t.push({unitId:d,subUnitId:m,drawingId:l});else{const I=this._shrinkCol(o,a,M,T,s);y=I==null?void 0:I.newSheetTransform,R=I==null?void 0:I.newTransform}else if(r===1&&p>=M&&S<=T)if(h>=v&&w<=D)t.push({unitId:d,subUnitId:m,drawingId:l});else{const I=this._shrinkRow(o,a,v,D,s);y=I==null?void 0:I.newSheetTransform,R=I==null?void 0:I.newTransform}else if(r===2){const I=this._expandRow(o,a,v,D,s);y=I==null?void 0:I.newSheetTransform,R=I==null?void 0:I.newTransform}else if(r===3){const I=this._expandCol(o,a,M,T,s);y=I==null?void 0:I.newSheetTransform,R=I==null?void 0:I.newTransform}if(y!=null&&R!=null){const I=X(y,this._selectionRenderService,this._skeletonManagerService);e.push({...n,sheetTransform:y,transform:I})}return{updateDrawings:e,deleteDrawings:t}}_remainDrawingSize(i,r,n){const e=Y({...i},this._selectionRenderService);e!=null&&r.push({...n,sheetTransform:e})}_getDrawingUndoForColVisible(i,r,n){const e=this._drawingManagerService.getDrawingData(i,r),t=[],o=[];if(Object.keys(e).forEach(l=>{const c=e[l],{sheetTransform:g,transform:h,anchorType:p=f.SheetDrawingAnchorType.Position}=c;if(p===f.SheetDrawingAnchorType.None)this._remainDrawingSize(h,t,c);else{const{from:w,to:S}=g,{row:v,column:D}=w,{row:M,column:T}=S;for(let y=0;y<n.length;y++){const R=n[y],{startRow:I,endRow:N,startColumn:E,endColumn:x}=R;if(T<E)continue;if(p===f.SheetDrawingAnchorType.Position){let C=null,j=null;if(D>=E&&D<=x){const W=this._skeletonManagerService.attachRangeWithCoord({startColumn:D,endColumn:x,startRow:w.row,endRow:S.row});if(W==null)return;j={...h,left:W.startX}}if(j!=null&&(C=Y(j,this._selectionRenderService),C!=null&&j!=null)){t.push({...c,sheetTransform:C,transform:j});break}this._remainDrawingSize(h,t,c);continue}if(D>=E&&T<=x)continue;let P=null,b=null;if(D>=E&&D<=x){const C=this._skeletonManagerService.attachRangeWithCoord({startColumn:D,endColumn:x,startRow:w.row,endRow:S.row});if(C==null)return;b={...h,left:(C==null?void 0:C.startX)||0,width:((h==null?void 0:h.width)||0)-C.endX+C.startX}}else if(T>=E&&T<=x){const C=this._skeletonManagerService.attachRangeWithCoord({startColumn:E,endColumn:T,startRow:w.row,endRow:S.row});if(C==null)return;b={...h,left:C.startX-((h==null?void 0:h.width)||0)}}else{const C=this._skeletonManagerService.attachRangeWithCoord({startColumn:E,endColumn:x,startRow:w.row,endRow:S.row});if(C==null)return;if(b={...h,width:((h==null?void 0:h.width)||0)-C.endX+C.startX},P=Y(b,this._selectionRenderService),P!=null&&b!=null){o.push({...c,sheetTransform:P,transform:b});break}}if(b!=null&&(P=Y(b,this._selectionRenderService)),b!=null&&P!=null){t.push({...c,sheetTransform:P,transform:b});break}else this._remainDrawingSize(h,t,c)}}}),t.length===0&&o.length===0)return{redos:[],undos:[]};const{redos:s,undos:a}=this._createUndoAndRedoMutation(i,r,t),d=[],m=[];if(o.length>0){const{redos:l,undos:c}=this._createUndoAndRedoMutation(i,r,o);d.push(...l),m.push(...c)}return{redos:s,undos:a,preRedos:d,preUndos:m}}_createUndoAndRedoMutation(i,r,n){const e=this._sheetDrawingService.getBatchUpdateOp(n),{undo:t,redo:o,objects:s}=e,a=[{id:f.SetDrawingApplyMutation.id,params:{unitId:i,subUnitId:r,op:o,objects:s,type:f.DrawingApplyType.UPDATE}},{id:G.id,params:[i]}],d=[{id:f.SetDrawingApplyMutation.id,params:{unitId:i,subUnitId:r,op:t,objects:s,type:f.DrawingApplyType.UPDATE}},{id:G.id,params:[i]}];return{redos:a,undos:d}}_getDrawingUndoForRowVisible(i,r,n){const e=this._drawingManagerService.getDrawingData(i,r),t=[],o=[];if(Object.keys(e).forEach(l=>{const c=e[l],{sheetTransform:g,transform:h,anchorType:p=f.SheetDrawingAnchorType.Position}=c;if(p===f.SheetDrawingAnchorType.None)this._remainDrawingSize(h,t,c);else{const{from:w,to:S}=g,{row:v,column:D}=w,{row:M,column:T}=S;for(let y=0;y<n.length;y++){const R=n[y],{startRow:I,endRow:N,startColumn:E,endColumn:x}=R;if(M<I)continue;if(p===f.SheetDrawingAnchorType.Position){let C=null,j=null;if(v>=I&&v<=N){const W=this._skeletonManagerService.attachRangeWithCoord({startColumn:w.column,endColumn:S.column,startRow:v,endRow:N});if(W==null)return;j={...h,top:W.startY}}if(j!=null&&(C=Y(j,this._selectionRenderService),C!=null&&j!=null)){t.push({...c,sheetTransform:C,transform:j});break}this._remainDrawingSize(h,t,c);continue}if(v>=I&&M<=N)continue;let P=null,b=null;if(v>=I&&v<=N){const C=this._skeletonManagerService.attachRangeWithCoord({startColumn:w.column,endColumn:S.column,startRow:v,endRow:N});if(C==null)return;b={...h,top:(C==null?void 0:C.startY)||0,height:((h==null?void 0:h.height)||0)-C.endY+C.startY}}else if(M>=I&&M<=N){const C=this._skeletonManagerService.attachRangeWithCoord({startColumn:w.column,endColumn:S.column,startRow:I,endRow:M});if(C==null)return;b={...h,top:C.startY-((h==null?void 0:h.height)||0)}}else{const C=this._skeletonManagerService.attachRangeWithCoord({startColumn:w.column,endColumn:S.column,startRow:I,endRow:N});if(C==null)return;if(b={...h,height:((h==null?void 0:h.height)||0)-C.endY+C.startY},P=Y(b,this._selectionRenderService),P!=null&&b!=null){o.push({...c,sheetTransform:P,transform:b});break}}if(b!=null&&(P=Y(b,this._selectionRenderService)),b!=null&&P!=null){t.push({...c,sheetTransform:P,transform:b});break}else this._remainDrawingSize(h,t,c)}}}),t.length===0&&o.length===0)return{redos:[],undos:[]};const{redos:s,undos:a}=this._createUndoAndRedoMutation(i,r,t),d=[],m=[];if(o.length>0){const{redos:l,undos:c}=this._createUndoAndRedoMutation(i,r,o);d.push(...l),m.push(...c)}return{redos:s,undos:a,preRedos:d,preUndos:m}}_getDrawingUndoForRowAndColSize(i,r,n,e){const t=this._drawingManagerService.getDrawingData(i,r),o=[];return Object.keys(t).forEach(s=>{const a=t[s],{sheetTransform:d,transform:m,anchorType:l=f.SheetDrawingAnchorType.Position}=a;if(l===f.SheetDrawingAnchorType.None)this._remainDrawingSize(m,o,a);else{const{from:c,to:g}=d,{row:h,column:p}=c,{row:w,column:S}=g;for(let v=0;v<n.length;v++){const D=n[v],{startRow:M,endRow:T,startColumn:y,endColumn:R}=D;if(w<M||S<y)continue;if(l===f.SheetDrawingAnchorType.Position&&(h<=M&&w>=T||p<=y&&S>=R)){this._remainDrawingSize(m,o,a);continue}const I=X({...d},this._selectionRenderService,this._skeletonManagerService);if(I!=null){o.push({...a,transform:I});break}}}}),o.length===0?{redos:[],undos:[]}:this._createUndoAndRedoMutation(i,r,o)}_getUnitIdAndSubUnitId(i,r){let n,e;if(r==="insert")n=i.unitId,e=i.subUnitId;else{const t=_.getSheetCommandTarget(this._univerInstanceService);if(t==null)return;n=t.unitId,e=t.subUnitId}return{unitId:n,subUnitId:e}}_moveRangeInterceptor(i){var M,T;const{toRange:r,fromRange:n}=i,e=_.getSheetCommandTarget(this._univerInstanceService);if(!e)return{redos:[],undos:[]};const{unitId:t,subUnitId:o}=e,s=(T=(M=this._renderManagerService.getRenderById(t))==null?void 0:M.with(U.SheetSkeletonManagerService))==null?void 0:T.getCurrentSkeleton();if(!s)return{redos:[],undos:[]};const a=U.attachRangeWithCoord(s,n);if(!a)return{redos:[],undos:[]};const{startX:d,endX:m,startY:l,endY:c}=a,g=this._sheetDrawingService.getDrawingData(t,o),h=[];Object.keys(g).forEach(y=>{const R=g[y];if(R.anchorType!==f.SheetDrawingAnchorType.Both)return;const{transform:I}=R;if(!I)return;const{left:N=0,top:E=0,width:x=0,height:P=0}=I,{drawingStartX:b,drawingEndX:C,drawingStartY:j,drawingEndY:W}={drawingStartX:N,drawingEndX:N+x,drawingStartY:E,drawingEndY:E+P};d<=b&&C<=m&&l<=j&&W<=c&&h.push(R)});const p=[],w=[],S=r.startRow-n.startRow,v=r.startColumn-n.startColumn,D=h.map(y=>{const R=y.sheetTransform,I={to:{...R.to,row:R.to.row+S,column:R.to.column+v},from:{...R.from,row:R.from.row+S,column:R.from.column+v}},N=X(I,this._selectionRenderService,this._skeletonManagerService);return{unitId:t,subUnitId:o,drawingId:y.drawingId,transform:N,sheetTransform:I}});if(D.length){const y=this._sheetDrawingService.getBatchUpdateOp(D),{undo:R,redo:I,objects:N}=y;p.push({id:f.SetDrawingApplyMutation.id,params:{unitId:t,subUnitId:o,op:I,objects:N,type:f.DrawingApplyType.UPDATE}}),w.push({id:f.SetDrawingApplyMutation.id,params:{unitId:t,subUnitId:o,op:R,objects:N,type:f.DrawingApplyType.UPDATE}})}return{redos:p,undos:w}}_moveRowInterceptor(i,r){const n=this._getUnitIdAndSubUnitId(i,r);if(n==null)return{redos:[],undos:[]};const{unitId:e,subUnitId:t}=n,{range:o}=i,s=o.startRow,a=o.endRow,d=[],m=[],l=this._sheetDrawingService.getDrawingData(e,t),c=[],g=[];if(Object.keys(l).forEach(h=>{const p=l[h],{sheetTransform:w,transform:S,anchorType:v=f.SheetDrawingAnchorType.Position}=p;if(w==null||S==null)return;let D,M;if(r==="insert"){const y=this._expandRow(w,S,s,a,v);D=y==null?void 0:y.newSheetTransform,M=y==null?void 0:y.newTransform}else{const{from:y,to:R}=w,{row:I}=y,{row:N}=R;if(v===f.SheetDrawingAnchorType.Both&&I>=s&&N<=a)g.push({unitId:e,subUnitId:t,drawingId:h});else{const E=this._shrinkRow(w,S,s,a,v);D=E==null?void 0:E.newSheetTransform,M=E==null?void 0:E.newTransform}}if(!D||!M)return;const T={unitId:e,subUnitId:t,drawingId:h,transform:M,sheetTransform:D};c.push(T)}),c.length===0&&g.length===0)return{redos:[],undos:[]};if(c.length>0){const h=this._sheetDrawingService.getBatchUpdateOp(c),{undo:p,redo:w,objects:S}=h;d.push({id:f.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:t,op:w,objects:S,type:f.DrawingApplyType.UPDATE}}),m.push({id:f.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:t,op:p,objects:S,type:f.DrawingApplyType.UPDATE}})}if(g.length>0){const h=this._sheetDrawingService.getBatchRemoveOp(g),p=h.undo,w=h.redo,S=h.objects;d.push({id:f.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:t,op:w,objects:S,type:f.DrawingApplyType.REMOVE}}),m.push({id:f.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:t,op:p,objects:S,type:f.DrawingApplyType.INSERT}})}return d.push({id:G.id,params:[e]}),m.push({id:G.id,params:[e]}),{redos:d,undos:m}}_moveColInterceptor(i,r){const n=this._getUnitIdAndSubUnitId(i,r);if(n==null)return{redos:[],undos:[]};const{unitId:e,subUnitId:t}=n,{range:o}=i,s=o.startColumn,a=o.endColumn,d=[],m=[],l=this._sheetDrawingService.getDrawingData(e,t),c=[],g=[];if(Object.keys(l).forEach(h=>{const p=l[h],{sheetTransform:w,transform:S,anchorType:v=f.SheetDrawingAnchorType.Position}=p;if(w==null||S==null)return;let D,M;if(r==="insert"){const y=this._expandCol(w,S,s,a,v);D=y==null?void 0:y.newSheetTransform,M=y==null?void 0:y.newTransform}else{const{from:y,to:R}=w,{column:I}=y,{column:N}=R;if(v===f.SheetDrawingAnchorType.Both&&I>=s&&N<=a)g.push({unitId:e,subUnitId:t,drawingId:h});else{const E=this._shrinkCol(w,S,s,a,v);D=E==null?void 0:E.newSheetTransform,M=E==null?void 0:E.newTransform}}if(!D||!M)return;const T={unitId:e,subUnitId:t,drawingId:h,transform:M,sheetTransform:D};c.push(T)}),c.length===0&&g.length===0)return{redos:[],undos:[]};if(c.length>0){const h=this._sheetDrawingService.getBatchUpdateOp(c),{undo:p,redo:w,objects:S}=h;d.push({id:f.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:t,op:w,objects:S,type:f.DrawingApplyType.UPDATE}}),m.push({id:f.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:t,op:p,objects:S,type:f.DrawingApplyType.UPDATE}})}if(g.length>0){const h=this._sheetDrawingService.getBatchRemoveOp(g),p=h.undo,w=h.redo,S=h.objects;d.push({id:f.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:t,op:w,objects:S,type:f.DrawingApplyType.REMOVE}}),m.push({id:f.SetDrawingApplyMutation.id,params:{unitId:e,subUnitId:t,op:p,objects:S,type:f.DrawingApplyType.INSERT}})}return d.push({id:G.id,params:[e]}),m.push({id:G.id,params:[e]}),{redos:d,undos:m}}_expandCol(i,r,n,e,t=f.SheetDrawingAnchorType.Position){const o=e-n+1,{from:s,to:a}=i,{column:d}=s,{column:m}=a;if(t===f.SheetDrawingAnchorType.None)return{newSheetTransform:Y({...r},this._selectionRenderService),newTransform:r};let l=null,c=null;if(d>=n){const g=this._skeletonManagerService.attachRangeWithCoord({startColumn:n,endColumn:e,startRow:s.row,endRow:a.row});if(g==null)return;c={...r,left:(r.left||0)+g.endX-g.startX},l=Y(c,this._selectionRenderService)}else if(m>=e)if(t===f.SheetDrawingAnchorType.Both)l={from:{...s},to:{...a,column:m+o}},c=X(l,this._selectionRenderService,this._skeletonManagerService);else return{newSheetTransform:Y({...r},this._selectionRenderService),newTransform:r};return l!=null&&c!=null?{newSheetTransform:l,newTransform:c}:null}_shrinkCol(i,r,n,e,t=f.SheetDrawingAnchorType.Position){const o=e-n+1,{from:s,to:a}=i,{column:d}=s,{column:m}=a;if(t===f.SheetDrawingAnchorType.None)return{newSheetTransform:Y({...r},this._selectionRenderService),newTransform:r};let l=null,c=null;if(d>e)l={from:{...s,column:d-o},to:{...a,column:m-o}},c=X(l,this._selectionRenderService,this._skeletonManagerService);else{if(d>=n&&m<=e)return null;if(d<n&&m>e)if(t===f.SheetDrawingAnchorType.Both)l={from:{...s},to:{...a,column:m-o}},c=X(l,this._selectionRenderService,this._skeletonManagerService);else return{newSheetTransform:Y({...r},this._selectionRenderService),newTransform:r};else if(d>=n&&d<=e){if(d===n)c={...r,left:(r.left||0)-i.from.columnOffset};else{const g=this._skeletonManagerService.attachRangeWithCoord({startColumn:n,endColumn:d-1,startRow:s.row,endRow:a.row});if(g==null)return;c={...r,left:(r.left||0)-g.endX+g.startX-i.from.columnOffset}}l=Y(c,this._selectionRenderService)}else if(m>=n&&m<=e&&t===f.SheetDrawingAnchorType.Both){const g=this._skeletonManagerService.attachRangeWithCoord({startColumn:n-1,endColumn:n-1,startRow:s.row,endRow:a.row});if(g==null)return;l={from:{...s},to:{...a,column:n-1,columnOffset:g.endX-g.startX}},c=X(l,this._selectionRenderService,this._skeletonManagerService)}}return l!=null&&c!=null?{newSheetTransform:l,newTransform:c}:null}_expandRow(i,r,n,e,t=f.SheetDrawingAnchorType.Position){const o=e-n+1,{from:s,to:a}=i,{row:d}=s,{row:m}=a;if(t===f.SheetDrawingAnchorType.None)return{newSheetTransform:Y({...r},this._selectionRenderService),newTransform:r};let l=null,c=null;if(d>=n){const g=this._skeletonManagerService.attachRangeWithCoord({startRow:n,endRow:e,startColumn:s.column,endColumn:a.column});if(g==null)return;c={...r,top:(r.top||0)+g.endY-g.startY},l=Y(c,this._selectionRenderService)}else if(m>=e)if(t===f.SheetDrawingAnchorType.Both)l={from:{...s},to:{...a,row:m+o}},c=X(l,this._selectionRenderService,this._skeletonManagerService);else return{newSheetTransform:Y({...r},this._selectionRenderService),newTransform:r};return l!=null&&c!=null?{newSheetTransform:l,newTransform:c}:null}_shrinkRow(i,r,n,e,t=f.SheetDrawingAnchorType.Position){const o=e-n+1,{from:s,to:a}=i,{row:d}=s,{row:m}=a;if(t===f.SheetDrawingAnchorType.None)return{newSheetTransform:Y({...r},this._selectionRenderService),newTransform:r};let l=null,c=null;if(d>e)l={from:{...s,row:d-o},to:{...a,row:m-o}},c=X(l,this._selectionRenderService,this._skeletonManagerService);else{if(d>=n&&m<=e)return null;if(d<n&&m>e)if(t===f.SheetDrawingAnchorType.Both)l={from:{...s},to:{...a,row:m-o}},c=X(l,this._selectionRenderService,this._skeletonManagerService);else return{newSheetTransform:Y({...r},this._selectionRenderService),newTransform:r};else if(d>=n&&d<=e){if(d===n)c={...r,top:(r.top||0)-i.from.rowOffset};else{const g=this._skeletonManagerService.attachRangeWithCoord({startRow:n,endRow:d-1,startColumn:s.column,endColumn:a.column});if(g==null)return;c={...r,top:(r.top||0)-g.endY+g.startY-i.from.rowOffset}}l=Y(c,this._selectionRenderService)}else if(m>=n&&m<=e&&t===f.SheetDrawingAnchorType.Both){const g=this._skeletonManagerService.attachRangeWithCoord({startColumn:s.column,endColumn:s.column,startRow:n-1,endRow:n-1});if(g==null)return;l={from:{...s},to:{...a,row:n-1,rowOffset:g.endY-g.startY}},c=X(l,this._selectionRenderService,this._skeletonManagerService)}}return l!=null&&c!=null?{newSheetTransform:l,newTransform:c}:null}_commandListener(){this.disposeWithMe(this._commandService.onCommandExecuted(i=>{i.id===_.SetWorksheetActiveOperation.id&&setTimeout(()=>{const r=i.params,{unitId:n,subUnitId:e}=r,t=this._drawingManagerService.drawingManagerData,o=[],s=[];Object.keys(t).forEach(a=>{const d=t[a];d!=null&&Object.keys(d).forEach(m=>{const l=d[m].data;l!=null&&Object.keys(l).forEach(c=>{if(a===n&&m===e){const g=l[c];g.transform=X(g.sheetTransform,this._selectionRenderService,this._skeletonManagerService),o.push(l[c])}else s.push(l[c])})})}),this._drawingManagerService.removeNotification(s),this._drawingManagerService.addNotification(o)},0)}))}_sheetRefreshListener(){this.disposeWithMe(this._commandService.onCommandExecuted(i=>{Ln.includes(i.id)&&requestIdleCallback(()=>{const r=i.params,{unitId:n,subUnitId:e,ranges:t}=r;this._refreshDrawingTransform(n,e,t)})}))}_refreshDrawingTransform(i,r,n){const e=this._drawingManagerService.getDrawingData(i,r),t=[];Object.keys(e).forEach(o=>{const s=e[o],{sheetTransform:a,transform:d,anchorType:m=f.SheetDrawingAnchorType.Position}=s;if(m===f.SheetDrawingAnchorType.None)return!0;const{from:l,to:c}=a,{row:g,column:h}=l,{row:p,column:w}=c;for(let S=0;S<n.length;S++){const v=n[S],{startRow:D,endRow:M,startColumn:T,endColumn:y}=v;if(u.Rectangle.intersects({startRow:D,endRow:M,startColumn:T,endColumn:y},{startRow:g,endRow:p,startColumn:h,endColumn:w})||g>M||h>y){const R=m===f.SheetDrawingAnchorType.Position,I=X(a,this._selectionRenderService,this._skeletonManagerService);t.push({...s,transform:{...I,width:R?d==null?void 0:d.width:I==null?void 0:I.width,height:R?d==null?void 0:d.height:I==null?void 0:I.height}});break}}}),t.length!==0&&(this._drawingManagerService.refreshTransform(t),this._commandService.syncExecuteCommand(G.id,[i]))}};wt=kn([ge(1,A.IRenderManagerService),ge(2,u.ICommandService),ge(3,U.ISheetSelectionRenderService),ge(4,u.Inject(U.SheetSkeletonManagerService)),ge(5,u.Inject(_.SheetInterceptorService)),ge(6,f.ISheetDrawingService),ge(7,O.IDrawingManagerService),ge(8,u.IUniverInstanceService)],wt);var ee=function(){return ee=Object.assign||function(i){for(var r,n=1,e=arguments.length;n<e;n++){r=arguments[n];for(var t in r)Object.prototype.hasOwnProperty.call(r,t)&&(i[t]=r[t])}return i},ee.apply(this,arguments)},$n=function(i,r){var n={};for(var e in i)Object.prototype.hasOwnProperty.call(i,e)&&r.indexOf(e)<0&&(n[e]=i[e]);if(i!=null&&typeof Object.getOwnPropertySymbols=="function")for(var t=0,e=Object.getOwnPropertySymbols(i);t<e.length;t++)r.indexOf(e[t])<0&&Object.prototype.propertyIsEnumerable.call(i,e[t])&&(n[e[t]]=i[e[t]]);return n},kt=J.forwardRef(function(i,r){var n=i.icon,e=i.id,t=i.className,o=i.extend,s=$n(i,["icon","id","className","extend"]),a="univerjs-icon univerjs-icon-".concat(e," ").concat(t||"").trim(),d=J.useRef("_".concat(Fn()));return xt(n,"".concat(e),{defIds:n.defIds,idSuffix:d.current},ee({ref:r,className:a},s),o)});function xt(i,r,n,e,t){return J.createElement(i.tag,ee(ee({key:r},Gn(i,n,t)),e),(Yn(i,n).children||[]).map(function(o,s){return xt(o,"".concat(r,"-").concat(i.tag,"-").concat(s),n,void 0,t)}))}function Gn(i,r,n){var e=ee({},i.attrs);n!=null&&n.colorChannel1&&e.fill==="colorChannel1"&&(e.fill=n.colorChannel1);var t=r.defIds;return!t||t.length===0||(i.tag==="use"&&e["xlink:href"]&&(e["xlink:href"]=e["xlink:href"]+r.idSuffix),Object.entries(e).forEach(function(o){var s=o[0],a=o[1];typeof a=="string"&&(e[s]=a.replace(/url\(#(.*)\)/,"url(#$1".concat(r.idSuffix,")")))})),e}function Yn(i,r){var n,e=r.defIds;return!e||e.length===0?i:i.tag==="defs"&&(!((n=i.children)===null||n===void 0)&&n.length)?ee(ee({},i),{children:i.children.map(function(t){return typeof t.attrs.id=="string"&&e&&e.indexOf(t.attrs.id)>-1?ee(ee({},t),{attrs:ee(ee({},t.attrs),{id:t.attrs.id+r.idSuffix})}):t})}):i}function Fn(){return Math.random().toString(36).substring(2,8)}kt.displayName="UniverIcon";var Vn={tag:"svg",attrs:{fill:"none",viewBox:"0 0 16 16",width:"1em",height:"1em"},children:[{tag:"path",attrs:{fill:"currentColor",d:"M2.2498 3.65005C2.2498 2.87685 2.87661 2.25005 3.64981 2.25005H7.9998C8.33118 2.25005 8.5998 1.98142 8.5998 1.65005C8.5998 1.31868 8.33118 1.05005 7.9998 1.05005H3.64981C2.21387 1.05005 1.0498 2.21411 1.0498 3.65005V12.35C1.0498 13.786 2.21386 14.95 3.6498 14.95H12.3498C13.7857 14.95 14.9498 13.786 14.9498 12.3501V8.00005C14.9498 7.66868 14.6812 7.40005 14.3498 7.40005C14.0184 7.40005 13.7498 7.66868 13.7498 8.00005V9.23974L12.2385 8.1063C11.7252 7.72129 11.0068 7.7723 10.5531 8.22605L9.00869 9.77041L6.73916 7.8251C6.24387 7.40055 5.5095 7.41278 5.02864 7.85359L2.2498 10.4009V3.65005ZM2.2498 12.0287V12.35C2.2498 13.1232 2.87661 13.75 3.6498 13.75H12.3498C13.123 13.75 13.7498 13.1232 13.7498 12.3501V10.7397L11.5186 9.06631C11.4829 9.03956 11.433 9.04314 11.4016 9.07458L9.92249 10.5537L11.1015 11.5642C11.3531 11.7799 11.3822 12.1587 11.1666 12.4103C10.9509 12.6619 10.5721 12.691 10.3205 12.4753L5.9582 8.7362C5.92384 8.70674 5.87288 8.70758 5.83952 8.73816L2.2498 12.0287Z",fillRule:"evenodd",clipRule:"evenodd"}},{tag:"path",attrs:{fill:"currentColor",d:"M11.8097 1.14783C12.1411 1.14783 12.4097 1.41646 12.4097 1.74783V3.297H14.1541C14.4855 3.297 14.7541 3.56563 14.7541 3.897C14.7541 4.22837 14.4855 4.497 14.1541 4.497H12.4097V6.24167C12.4097 6.57304 12.1411 6.84167 11.8097 6.84167C11.4783 6.84167 11.2097 6.57304 11.2097 6.24167V4.497H9.6603C9.32893 4.497 9.0603 4.22837 9.0603 3.897C9.0603 3.56563 9.32893 3.297 9.6603 3.297H11.2097V1.74783C11.2097 1.41646 11.4783 1.14783 11.8097 1.14783Z"}}]},Lt=J.forwardRef(function(i,r){return J.createElement(kt,Object.assign({},i,{id:"add-image-single",ref:r,icon:Vn}))});Lt.displayName="AddImageSingle";const Ct={id:"sheet.command.delete-drawing",type:u.CommandType.COMMAND,handler:i=>{const r=i.get(u.ICommandService),e=i.get(f.ISheetDrawingService).getFocusDrawings();if(e.length===0)return!1;const t=e[0].unitId,o=e.map(s=>{const{unitId:a,subUnitId:d,drawingId:m,drawingType:l}=s;return{unitId:a,subUnitId:d,drawingId:m,drawingType:l}});return r.executeCommand(Ae.id,{unitId:t,drawings:o})}},dt={id:"sheet.command.insert-float-image",type:u.CommandType.COMMAND,handler:i=>{var n,e;return(e=(n=i.get(A.IRenderManagerService).getCurrentTypeOfRenderer(u.UniverInstanceType.UNIVER_SHEET))==null?void 0:n.with(Pe).insertFloatImage())!=null?e:!1}},yt={id:"sheet.command.insert-cell-image",type:u.CommandType.COMMAND,handler:i=>{var n,e;return(e=(n=i.get(A.IRenderManagerService).getCurrentTypeOfRenderer(u.UniverInstanceType.UNIVER_SHEET))==null?void 0:n.with(Pe).insertCellImage())!=null?e:!1}},Re={id:"sheet.command.move-drawing",type:u.CommandType.COMMAND,handler:(i,r)=>{const n=i.get(u.ICommandService),e=i.get(f.ISheetDrawingService),t=i.get(U.ISheetSelectionRenderService),{direction:o}=r,s=e.getFocusDrawings();if(s.length===0)return!1;const a=s[0].unitId,d=s.map(l=>{const{transform:c}=l;if(c==null)return null;const g={...c},{left:h=0,top:p=0}=c;return o===u.Direction.UP?g.top=p-1:o===u.Direction.DOWN?g.top=p+1:o===u.Direction.LEFT?g.left=h-1:o===u.Direction.RIGHT&&(g.left=h+1),{...l,transform:g,sheetTransform:Y(g,t)}}).filter(l=>l!=null);return n.syncExecuteCommand(je.id,{unitId:a,drawings:d})?(n.syncExecuteCommand(G.id,[a]),!0):!1}},$t="addition-and-subtraction-single",Mt="sheet.menu.image";function Hn(i){return{id:Mt,type:F.MenuItemType.SUBITEMS,icon:$t,tooltip:"sheetImage.title",hidden$:F.getMenuHiddenObservable(i,u.UniverInstanceType.UNIVER_SHEET),disabled$:U.getCurrentRangeDisable$(i,{workbookTypes:[_.WorkbookEditablePermission],worksheetTypes:[_.WorksheetEditPermission],rangeTypes:[_.RangeProtectionPermissionEditPoint]})}}function Xn(i){return{id:dt.id,title:"sheetImage.upload.float",type:F.MenuItemType.BUTTON,hidden$:F.getMenuHiddenObservable(i,u.UniverInstanceType.UNIVER_SHEET)}}function Kn(i){return{id:yt.id,title:"sheetImage.upload.cell",type:F.MenuItemType.BUTTON}}const zn="univer-image-common-panel",qn="univer-image-common-panel-grid",Jn="univer-image-common-panel-border",Zn="univer-image-common-panel-title",Qn="univer-image-common-panel-subtitle",er="univer-image-common-panel-row",tr="univer-image-common-panel-row-vertical",nr="univer-image-common-panel-column",rr="univer-image-common-panel-column-center",ir="univer-image-common-panel-inline",or="univer-image-common-panel-span2",sr="univer-image-common-panel-span3",ar="univer-image-common-panel-input",cr="univer-sheet-image-menu",dr="univer-sheet-image-menu-input",me={imageCommonPanel:zn,imageCommonPanelGrid:qn,imageCommonPanelBorder:Jn,imageCommonPanelTitle:Zn,imageCommonPanelSubtitle:Qn,imageCommonPanelRow:er,imageCommonPanelRowVertical:tr,imageCommonPanelColumn:nr,imageCommonPanelColumnCenter:rr,imageCommonPanelInline:ir,imageCommonPanelSpan2:or,imageCommonPanelSpan3:sr,imageCommonPanelInput:ar,sheetImageMenu:cr,sheetImageMenuInput:dr};function Gt(i){var r,n,e="";if(typeof i=="string"||typeof i=="number")e+=i;else if(typeof i=="object")if(Array.isArray(i)){var t=i.length;for(r=0;r<t;r++)i[r]&&(n=Gt(i[r]))&&(e&&(e+=" "),e+=n)}else for(n in i)i[n]&&(e&&(e+=" "),e+=n);return e}function Je(){for(var i,r,n=0,e="",t=arguments.length;n<t;n++)(i=arguments[n])&&(r=Gt(i))&&(e&&(e+=" "),e+=r);return e}const lr=i=>{var M;const r=u.useDependency(u.ICommandService),n=u.useDependency(u.LocaleService),e=u.useDependency(O.IDrawingManagerService),t=u.useDependency(A.IRenderManagerService),{drawings:o}=i,s=o[0];if(s==null)return;const{unitId:a}=s,d=t.getRenderById(a),m=d==null?void 0:d.scene;if(m==null)return;const l=m.getTransformerByCreate(),[c,g]=J.useState(!0),h=(M=s.anchorType)!=null?M:f.SheetDrawingAnchorType.Position,[p,w]=J.useState(h);function S(T,y){const R=[];return T.forEach(I=>{const{oKey:N}=I,E=y.getDrawingOKey(N);if(E==null)return R.push(null),!0;const{unitId:x,subUnitId:P,drawingId:b,drawingType:C,anchorType:j,sheetTransform:W}=E;R.push({unitId:x,subUnitId:P,drawingId:b,anchorType:j,sheetTransform:W,drawingType:C})}),R}J.useEffect(()=>{const T=l.clearControl$.subscribe(R=>{R===!0&&g(!1)}),y=l.changeStart$.subscribe(R=>{var E;const{objects:I}=R,N=S(I,e);if(N.length===0)g(!1);else if(N.length>=1){g(!0);const x=((E=N[0])==null?void 0:E.anchorType)||f.SheetDrawingAnchorType.Position;w(x)}});return()=>{y.unsubscribe(),T.unsubscribe()}},[]);function v(T){w(T);const y=e.getFocusDrawings();if(y.length===0)return;const R=y.map(I=>({unitId:I.unitId,subUnitId:I.subUnitId,drawingId:I.drawingId,anchorType:T}));r.executeCommand(je.id,{unitId:y[0].unitId,drawings:R})}const D=T=>T?"block":"none";return V.jsxs("div",{className:Je(me.imageCommonPanelGrid,me.imageCommonPanelBorder),style:{display:D(c)},children:[V.jsx("div",{className:me.imageCommonPanelRow,children:V.jsx("div",{className:Je(me.imageCommonPanelColumn,me.imageCommonPanelTitle),children:V.jsx("div",{children:n.t("drawing-anchor.title")})})}),V.jsx("div",{className:Je(me.imageCommonPanelRow),children:V.jsx("div",{className:Je(me.imageCommonPanelColumn),children:V.jsxs(ie.RadioGroup,{value:p,onChange:v,direction:"vertical",children:[V.jsx(ie.Radio,{value:f.SheetDrawingAnchorType.Both,children:n.t("drawing-anchor.both")}),V.jsx(ie.Radio,{value:f.SheetDrawingAnchorType.Position,children:n.t("drawing-anchor.position")}),V.jsx(ie.Radio,{value:f.SheetDrawingAnchorType.None,children:n.t("drawing-anchor.none")})]})})})]})},ur=()=>{const i=u.useDependency(O.IDrawingManagerService),r=i.getFocusDrawings(),[n,e]=J.useState(r);return J.useEffect(()=>{const t=i.focus$.subscribe(o=>{e(o)});return()=>{t.unsubscribe()}},[]),!!(n!=null&&n.length)&&V.jsxs("div",{className:me.imageCommonPanel,children:[V.jsx(pe.DrawingCommonPanel,{drawings:n}),V.jsx(lr,{drawings:n})]})},hr={[F.RibbonStartGroup.FORMULAS_INSERT]:{[Mt]:{order:3,menuItemFactory:Hn,[dt.id]:{order:0,menuItemFactory:Xn},[yt.id]:{order:1,menuItemFactory:Kn}}}};function We(i){return!i.getContextValue(u.FOCUSING_FX_BAR_EDITOR)&&!i.getContextValue(u.EDITOR_ACTIVATED)&&!i.getContextValue(u.FOCUSING_PANEL_EDITOR)&&i.getContextValue(u.FOCUSING_COMMON_DRAWINGS)}const gr={id:Re.id,description:"shortcut.sheet.drawing-move-down",group:"4_sheet-drawing-view",binding:F.KeyCode.ARROW_DOWN,priority:100,preconditions:We,staticParameters:{direction:u.Direction.DOWN}},mr={id:Re.id,description:"shortcut.sheet.drawing-move-up",group:"4_sheet-drawing-view",binding:F.KeyCode.ARROW_UP,priority:100,preconditions:We,staticParameters:{direction:u.Direction.UP}},pr={id:Re.id,description:"shortcut.sheet.drawing-move-left",group:"4_sheet-drawing-view",binding:F.KeyCode.ARROW_LEFT,priority:100,preconditions:We,staticParameters:{direction:u.Direction.LEFT}},fr={id:Re.id,description:"shortcut.sheet.drawing-move-right",group:"4_sheet-drawing-view",binding:F.KeyCode.ARROW_RIGHT,priority:100,preconditions:We,staticParameters:{direction:u.Direction.RIGHT}},wr={id:Ct.id,description:"shortcut.sheet.drawing-delete",group:"4_sheet-drawing-view",preconditions:We,binding:F.KeyCode.DELETE,mac:F.KeyCode.BACKSPACE};var Sr=Object.defineProperty,_r=Object.getOwnPropertyDescriptor,vr=(i,r,n,e)=>{for(var t=e>1?void 0:e?_r(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&Sr(r,n,t),t},Ze=(i,r)=>(n,e)=>r(n,e,i);let ct=class extends u.Disposable{constructor(i,r,n,e){super(),this._componentManager=i,this._menuManagerService=r,this._commandService=n,this._shortcutService=e,this._init()}_initCustomComponents(){const i=this._componentManager;this.disposeWithMe(i.register($t,Lt)),this.disposeWithMe(i.register(Wt,ur))}_initMenus(){this._menuManagerService.mergeMenu(hr)}_initCommands(){[dt,yt,Ne,Ae,je,St,G,_t,vt,Dt,Re,Ct,It].forEach(i=>this.disposeWithMe(this._commandService.registerCommand(i)))}_initShortcuts(){[gr,mr,pr,fr,wr].forEach(i=>{this.disposeWithMe(this._shortcutService.registerShortcut(i))})}_init(){this._initCommands(),this._initCustomComponents(),this._initMenus(),this._initShortcuts()}};ct=vr([Ze(0,u.Inject(F.ComponentManager)),Ze(1,F.IMenuManagerService),Ze(2,u.ICommandService),Ze(3,F.IShortcutService)],ct);var Ir=Object.defineProperty,Dr=Object.getOwnPropertyDescriptor,Cr=(i,r,n,e)=>{for(var t=e>1?void 0:e?Dr(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&Ir(r,n,t),t},_e=(i,r)=>(n,e)=>r(n,e,i);function yr(i,r,n,e,t){const{scaleX:o,scaleY:s}=r.getAncestorScale(),a=r.getViewport(A.SHEET_VIEWPORT_KEY.VIEW_MAIN),d={left:!0,top:!0};if(!a)return{...i,absolute:d};const{left:m,right:l,top:c,bottom:g}=i;let{top:h,left:p,viewportScrollX:w,viewportScrollY:S}=a;const{boundsOfViewArea:v,scrollDirectionResponse:D}=t||{};v&&(u.Tools.isDefine(v.top)&&(h=v.top),u.Tools.isDefine(v.left)&&(p=v.left)),D==="HORIZONTAL"&&(S=0),D==="VERTICAL"&&(w=0);let M,T;m<p?(d.left=!0,M=(p+(m-p))*o,T=Math.max(Math.min((p+(l-p))*o,p*o),(l-w)*o)):(d.left=!1,M=Math.max((m-w)*o,p*o),T=Math.max((l-w)*o,p*o));let y,R;return c<h?(d.top=!0,y=(h+(c-h))*s,R=Math.max(Math.min((h+(l-h))*s,h*s),(g-S)*s)):(d.top=!1,y=Math.max((c-S)*s,h*s),R=Math.max((g-S)*s,h*s)),{left:M,right:T,top:y,bottom:R,absolute:d}}const le=(i,r,n,e,t)=>{const{scene:o}=r,{left:s,top:a,width:d,height:m,angle:l}=i,c={left:s,right:s+d,top:a,bottom:a+m},g=yr(c,o,n,e,t),{scaleX:h,scaleY:p}=o.getAncestorScale();return{startX:g.left,endX:g.right,startY:g.top,endY:g.bottom,rotate:l,width:d*h,height:m*p,absolute:g.absolute}};exports.SheetCanvasFloatDomManagerService=class extends u.Disposable{constructor(n,e,t,o,s,a,d){super();q(this,"_domLayerMap",new Map);q(this,"_domLayerInfoMap",new Map);q(this,"_transformChange$",new B.Subject);q(this,"transformChange$",this._transformChange$.asObservable());q(this,"_add$",new B.Subject);q(this,"add$",this._add$.asObservable());q(this,"_remove$",new B.Subject);q(this,"remove$",this._remove$.asObservable());q(this,"_hooks",[]);this._renderManagerService=n,this._univerInstanceService=e,this._commandService=t,this._drawingManagerService=o,this._canvasFloatDomService=s,this._sheetDrawingService=a,this._lifecycleService=d,this._drawingAddListener(),this._featureUpdateListener(),this._deleteListener(),this._bindScrollEvent()}_bindScrollEvent(){this._lifecycleService.lifecycle$.pipe(B.filter(n=>n===u.LifecycleStages.Rendered),B.take(1)).subscribe(()=>{this._scrollUpdateListener()})}_ensureMap(n,e){let t=this._domLayerMap.get(n);t||(t=new Map,this._domLayerMap.set(n,t));let o=t.get(e);return o||(o=new Map,t.set(e,o)),o}getFloatDomInfo(n){return this._domLayerInfoMap.get(n)}_getSceneAndTransformerByDrawingSearch(n){if(n==null)return;const e=this._renderManagerService.getRenderById(n),t=e==null?void 0:e.scene;if(e==null||t==null)return null;const o=t.getTransformerByCreate(),s=e.engine.getCanvasElement();return{scene:t,transformer:o,renderUnit:e,canvas:s}}_getFloatDomProps(n){let e;return this._hooks.forEach(t=>{e=t.onGetFloatDomProps(n)}),e}_drawingAddListener(){this.disposeWithMe(this._drawingManagerService.add$.subscribe(n=>{n.forEach(e=>{var te,ne,z;const{unitId:t,subUnitId:o,drawingId:s}=e,a=_.getSheetCommandTarget(this._univerInstanceService,{unitId:t,subUnitId:o}),d=this._drawingManagerService.getDrawingByParam(e),m=this._univerInstanceService.getUnit(t,u.UniverInstanceType.UNIVER_SHEET);if(!m)return;const l=m.getActiveSheet().getSheetId();if(!d||!a)return;const c=(te=this._renderManagerService.getRenderById(t))==null?void 0:te.with(U.SheetSkeletonManagerService).getWorksheetSkeleton(o);if(!c)return;const{transform:g,drawingType:h,data:p}=d;if(h!==u.DrawingTypeEnum.DRAWING_DOM&&h!==u.DrawingTypeEnum.DRAWING_CHART)return;const w=this._getSceneAndTransformerByDrawingSearch(t);if(w==null)return;const{scene:S,canvas:v}=w;if(g==null)return!0;if(l!==o)return;const{left:D,top:M,width:T,height:y,angle:R,flipX:I,flipY:N,skewX:E,skewY:x}=g,P=O.getDrawingShapeKeyByDrawingSearch({unitId:t,subUnitId:o,drawingId:s}),b=S.getObject(P);if(b!=null){b.transformByState({left:D,top:M,width:T,height:y,angle:R,flipX:I,flipY:N,skewX:E,skewY:x});return}const C={left:D,top:M,width:T,height:y,zIndex:this._drawingManagerService.getDrawingOrder(t,o).length-1},j=h===u.DrawingTypeEnum.DRAWING_CHART;if(j){const $=p?p.backgroundColor:"white";C.fill=$,C.rotateEnabled=!1,p&&p.border&&(C.stroke=p.border),C.paintFirst="stroke",C.strokeWidth=1,C.borderEnabled=!1,C.radius=8}const W=new A.Rect(P,C);j&&W.setObjectType(A.ObjectType.CHART),S.addObject(W,A.DRAWING_OBJECT_LAYER_INDEX),d.allowTransform!==!1&&S.attachTransformerTo(W);const K=this._ensureMap(t,o),H=new u.DisposableCollection,fe=le(W,w.renderUnit,c.skeleton,a.worksheet),oe=new B.BehaviorSubject(fe),we={dispose:H,rect:W,position$:oe,unitId:t,subUnitId:o};this._canvasFloatDomService.addFloatDom({position$:oe,id:s,componentKey:d.componentKey,onPointerDown:$=>{v.dispatchEvent(new PointerEvent($.type,$))},onPointerMove:$=>{v.dispatchEvent(new PointerEvent($.type,$))},onPointerUp:$=>{v.dispatchEvent(new PointerEvent($.type,$))},onWheel:$=>{v.dispatchEvent(new WheelEvent($.type,$))},props:(z=(ne=K.get(s))==null?void 0:ne.props)!=null?z:this._getFloatDomProps(s),data:p,unitId:t});const se=W.onTransformChange$.subscribeEvent(()=>{const $=le(W,w.renderUnit,c.skeleton,a.worksheet);oe.next($)});H.add(()=>{this._canvasFloatDomService.removeFloatDom(s)}),se&&H.add(se),this._domLayerInfoMap.set(s,we),K.set(s,{...K.get(s)})})})),this.disposeWithMe(this._drawingManagerService.remove$.subscribe(n=>{n.forEach(e=>{const{unitId:t,subUnitId:o,drawingId:s}=e,a=O.getDrawingShapeKeyByDrawingSearch({unitId:t,subUnitId:o,drawingId:s}),d=this._getSceneAndTransformerByDrawingSearch(t);if(d==null)return;const{transformer:m,scene:l}=d,c=l.getObject(a);c!=null&&c.oKey&&m.clearControlByIds([c==null?void 0:c.oKey])})}))}_scrollUpdateListener(){const n=(e,t)=>{var l;const o=this._getSceneAndTransformerByDrawingSearch(e),s=this._ensureMap(e,t),a=Array.from(s.keys()),d=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e,subUnitId:t}),m=(l=this._renderManagerService.getRenderById(e))==null?void 0:l.with(U.SheetSkeletonManagerService).getWorksheetSkeleton(t);!o||!d||!m||a.forEach(c=>{const g=this._domLayerInfoMap.get(c);if(g){const h=le(g.rect,o.renderUnit,m.skeleton,d.worksheet,g);g.position$.next(h)}})};this.disposeWithMe(this._univerInstanceService.getCurrentTypeOfUnit$(u.UniverInstanceType.UNIVER_SHEET).pipe(B.filter(e=>!!e),B.switchMap(e=>e.activeSheet$),B.filter(e=>!!e),B.map(e=>{const t=this._renderManagerService.getRenderById(e.getUnitId());return t?{render:t,unitId:e.getUnitId(),subUnitId:e.getSheetId()}:null}),B.filter(e=>!!e),B.switchMap(e=>u.fromEventSubject(e.render.scene.getViewport(A.SHEET_VIEWPORT_KEY.VIEW_MAIN).onScrollAfter$).pipe(B.map(()=>({unitId:e.unitId,subUnitId:e.subUnitId}))))).subscribe(({unitId:e,subUnitId:t})=>{n(e,t)})),this.disposeWithMe(this._commandService.onCommandExecuted(e=>{var t,o;if(e.id===U.SetZoomRatioOperation.id){const s=e.params,{unitId:a}=s;Array.from((o=(t=this._domLayerMap.get(a))==null?void 0:t.keys())!=null?o:[]).forEach(m=>{n(a,m)})}else if(e.id===_.SetFrozenMutation.id){const{unitId:s,subUnitId:a}=e.params;n(s,a)}}))}_getPosition(n,e){var h;const{startX:t,endX:o,startY:s,endY:a}=n,d=(h=this._renderManagerService.getRenderById(e))==null?void 0:h.with(U.ISheetSelectionRenderService);if(d==null)return;const m=d.getCellWithCoordByOffset(t,s);if(m==null)return;const l={column:m.actualColumn,columnOffset:t-m.startX,row:m.actualRow,rowOffset:s-m.startY},c=d.getCellWithCoordByOffset(o,a);if(c==null)return;const g={column:c.actualColumn,columnOffset:o-c.startX,row:c.actualRow,rowOffset:a-c.startY};return{from:l,to:g}}_featureUpdateListener(){this.disposeWithMe(this._drawingManagerService.update$.subscribe(n=>{n.forEach(e=>{const t=this._drawingManagerService.getDrawingByParam(e);if(!t||t.drawingType!==u.DrawingTypeEnum.DRAWING_DOM&&t.drawingType!==u.DrawingTypeEnum.DRAWING_CHART)return;const o={...t.transform};this._transformChange$.next({id:e.drawingId,value:o})})}))}_deleteListener(){this.disposeWithMe(this._drawingManagerService.remove$.subscribe(n=>{n.forEach(e=>{this._removeDom(e.drawingId)})}))}updateFloatDomProps(n,e,t,o){const s=this._domLayerInfoMap.get(t),a=this._getSceneAndTransformerByDrawingSearch(n);if(s&&a){const{scene:d}=a,m=O.getDrawingShapeKeyByDrawingSearch({unitId:n,subUnitId:e,drawingId:t}),l=d.getObject(m);l&&l instanceof A.Rect&&l.setProps(o)}}addFloatDomToPosition(n,e){const t=_.getSheetCommandTarget(this._univerInstanceService,{unitId:n.unitId,subUnitId:n.subUnitId});if(!t)throw new Error("cannot find current target!");const{unitId:o,subUnitId:s}=t,{initPosition:a,componentKey:d,data:m,allowTransform:l=!0}=n,c=e!=null?e:u.generateRandomId(),g=this._getPosition(a,o);if(g==null)return;this._ensureMap(o,s).set(c,n);const p={unitId:o,subUnitId:s,drawingId:c,drawingType:n.type||u.DrawingTypeEnum.DRAWING_DOM,componentKey:d,sheetTransform:g,transform:{left:a.startX,top:a.startY,width:a.endX-a.startX,height:a.endY-a.startY},data:m,allowTransform:l};return this._commandService.executeCommand(Ne.id,{unitId:o,drawings:[p]}),this._add$.next({unitId:o,subUnitId:s,id:c}),{id:c,dispose:()=>{this._removeDom(c,!0)}}}_removeDom(n,e=!1){const t=this._domLayerInfoMap.get(n);if(!t)return;const{unitId:o,subUnitId:s}=t;this._domLayerInfoMap.delete(n),t.dispose.dispose();const a=this._getSceneAndTransformerByDrawingSearch(o);if(a&&a.scene.removeObject(t.rect),e){this._ensureMap(o,s).delete(n);const m=this._drawingManagerService.getDrawingByParam({unitId:o,subUnitId:s,drawingId:n});if(!m)return;const l=this._sheetDrawingService.getBatchRemoveOp([m]),{redo:c,objects:g}=l;this._commandService.syncExecuteCommand(f.SetDrawingApplyMutation.id,{unitId:o,subUnitId:s,op:c,objects:g,type:f.DrawingApplyType.REMOVE})}}addHook(n){return this._hooks.push(n),{dispose:()=>{const e=this._hooks.findIndex(t=>t===n);this._hooks.splice(e,1)}}}addFloatDomToRange(n,e,t,o){var N,E,x,P,b;const s=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId});if(!s)throw new Error("cannot find current target!");const{unitId:a,subUnitId:d}=s,m=this._getSceneAndTransformerByDrawingSearch(a);if(!m)return;const l=this._renderManagerService.getRenderById(a);if(!l)return;const c=(N=this._renderManagerService.getRenderById(a))==null?void 0:N.with(U.SheetSkeletonManagerService).getWorksheetSkeleton(d);if(!c)return;const{componentKey:g,data:h,allowTransform:p=!0}=e,w=o!=null?o:u.generateRandomId(),{position:S,position$:v}=this._createRangePositionObserver(n,l,c.skeleton),D=this._getPosition(S,a);if(D==null)return;this._ensureMap(a,d).set(w,e);const T=m.scene,{scaleX:y}=T.getAncestorScale(),R=Qe(S,t,y),I={unitId:a,subUnitId:d,drawingId:w,drawingType:e.type||u.DrawingTypeEnum.DRAWING_DOM,componentKey:g,sheetTransform:D,transform:{left:R.startX,top:R.startY,width:R.width,height:R.height},data:h,allowTransform:p};{const{unitId:C,subUnitId:j,drawingId:W}=I,K=_.getSheetCommandTarget(this._univerInstanceService,{unitId:C,subUnitId:j}),H=I,fe=this._univerInstanceService.getUnit(C,u.UniverInstanceType.UNIVER_SHEET);if(!fe)return;const oe=fe.getActiveSheet().getSheetId();if(!H||!K)return;const we=(E=this._renderManagerService.getRenderById(C))==null?void 0:E.with(U.SheetSkeletonManagerService);if(!we)return;const se=we.getWorksheetSkeleton(j);if(!se)return;const{transform:te,drawingType:ne,data:z}=H;if(ne!==u.DrawingTypeEnum.DRAWING_DOM&&ne!==u.DrawingTypeEnum.DRAWING_CHART)return;const $=this._getSceneAndTransformerByDrawingSearch(C);if($==null)return;const{scene:ve,canvas:Ie}=$;if(te==null||oe!==j)return;const{left:Be,top:ke,width:xe,height:Le,angle:lt,flipX:ut,flipY:$e,skewX:Ge,skewY:De}=te,Ye=O.getDrawingShapeKeyByDrawingSearch({unitId:C,subUnitId:j,drawingId:W}),ae=ve.getObject(Ye);if(ae!=null){ae.transformByState({left:Be,top:ke,width:xe,height:Le,angle:lt,flipX:ut,flipY:$e,skewX:Ge,skewY:De});return}const Z={left:Be,top:ke,width:xe,height:Le,zIndex:this._drawingManagerService.getDrawingOrder(C,j).length-1},Ce=ne===u.DrawingTypeEnum.DRAWING_CHART;if(Ce){const k=z?z.backgroundColor:"white";Z.fill=k,Z.rotateEnabled=!1,z&&z.border&&(Z.stroke=z.border),Z.paintFirst="stroke",Z.strokeWidth=1,Z.borderEnabled=!1,Z.radius=8}const re=new A.Rect(Ye,Z);Ce&&re.setObjectType(A.ObjectType.CHART),ve.addObject(re,A.DRAWING_OBJECT_LAYER_INDEX),H.allowTransform!==!1&&ve.attachTransformerTo(re);const Te=this._ensureMap(C,j),ce=new u.DisposableCollection,ye=ve.getMainViewport(),Me={top:ye.top,left:ye.left,bottom:ye.bottom,right:ye.right},de={dispose:ce,rect:re,boundsOfViewArea:Me,domAnchor:t,unitId:C,subUnitId:j},Fe=le(re,$.renderUnit,se.skeleton,K.worksheet,de),ue=new B.BehaviorSubject(Fe);de.position$=ue;let L={position$:ue,id:W,componentKey:H.componentKey,onPointerDown:()=>{},onPointerMove:()=>{},onPointerUp:()=>{},onWheel:k=>{Ie.dispatchEvent(new WheelEvent(k.type,k))},props:(P=(x=Te.get(W))==null?void 0:x.props)!=null?P:this._getFloatDomProps(W),data:z,unitId:C};e.eventPassThrough&&(L={...L,onPointerDown:k=>{Ie.dispatchEvent(new PointerEvent(k.type,k))},onPointerMove:k=>{Ie.dispatchEvent(new PointerEvent(k.type,k))},onPointerUp:k=>{Ie.dispatchEvent(new PointerEvent(k.type,k))}}),this._canvasFloatDomService.addFloatDom(L),this.disposeWithMe(v.subscribe(k=>{var Rt,Tt,bt,Et;const He=Qe({rotate:0,startX:k.startX,startY:k.startY,endX:k.endX,endY:k.endY,width:(Rt=t.width)!=null?Rt:k.width,height:(Tt=t.height)!=null?Tt:k.height,absolute:{left:S.absolute.left,top:S.absolute.top}},t),Vt=O.getDrawingShapeKeyByDrawingSearch({unitId:C,subUnitId:j,drawingId:W}),Ht=new A.Rect(Vt,{left:He.startX,top:He.startY,width:(bt=t.width)!=null?bt:k.width,height:(Et=t.height)!=null?Et:k.height,zIndex:this._drawingManagerService.getDrawingOrder(C,j).length-1}),Xt=le(Ht,$.renderUnit,se.skeleton,K.worksheet,de);ue.next(Xt)}));const be=(b=this._renderManagerService.getRenderById(C))==null?void 0:b.with(U.SheetSkeletonManagerService);be==null||be.currentSkeleton$.subscribe(k=>{k&&c.sheetId!==k.sheetId&&this._removeDom(w,!0)});const Ve=re.onTransformChange$.subscribeEvent(()=>{const k=le(re,$.renderUnit,se.skeleton,K.worksheet,de);ue.next(k)});ce.add(()=>{this._canvasFloatDomService.removeFloatDom(W)}),Ve&&ce.add(Ve),this._domLayerInfoMap.set(W,de),Te.set(W,{...Te.get(W)})}return{id:w,dispose:()=>{this._removeDom(w,!0)}}}addFloatDomToColumnHeader(n,e,t,o){var R,I,N,E,x;const s=_.getSheetCommandTarget(this._univerInstanceService,{unitId:e.unitId,subUnitId:e.subUnitId});if(!s)throw new Error("cannot find current target!");const{unitId:a,subUnitId:d}=s;if(!this._getSceneAndTransformerByDrawingSearch(a))return;const l=this._renderManagerService.getRenderById(a);if(!l)return;const c=(R=this._renderManagerService.getRenderById(a))==null?void 0:R.with(U.SheetSkeletonManagerService).getWorksheetSkeleton(d);if(!c)return;const{componentKey:g,data:h,allowTransform:p=!0}=e,w=o!=null?o:u.generateRandomId(),{position:S,position$:v}=this._createRangePositionObserver({startRow:0,endRow:0,startColumn:n,endColumn:n},l,c.skeleton),D=S;D.startY=0;const M=this._getPosition(S,a);if(M==null)return;this._ensureMap(a,d).set(w,e);const y={unitId:a,subUnitId:d,drawingId:w,drawingType:e.type||u.DrawingTypeEnum.DRAWING_DOM,componentKey:g,sheetTransform:M,transform:{left:D.startX,top:D.startY,width:D.width,height:D.height},data:h,allowTransform:p};{const{unitId:P,subUnitId:b,drawingId:C}=y,j=_.getSheetCommandTarget(this._univerInstanceService,{unitId:P,subUnitId:b}),W=y,K=this._univerInstanceService.getUnit(P,u.UniverInstanceType.UNIVER_SHEET);if(!K)return;const H=K.getActiveSheet().getSheetId();if(!W||!j)return;const fe=(I=this._renderManagerService.getRenderById(P))==null?void 0:I.with(U.SheetSkeletonManagerService);if(!fe)return;const oe=fe.getWorksheetSkeleton(b);if(!oe)return;const{transform:we,data:se}=W,te=this._getSceneAndTransformerByDrawingSearch(P);if(te==null)return;const{scene:ne,canvas:z}=te;if(we==null||H!==b)return;const{left:$,top:ve,width:Ie,height:Be,angle:ke,flipX:xe,flipY:Le,skewX:lt,skewY:ut}=we,$e=O.getDrawingShapeKeyByDrawingSearch({unitId:P,subUnitId:b,drawingId:C}),Ge=ne.getObject($e);if(Ge!=null){Ge.transformByState({left:$,top:ve,width:Ie,height:Be,angle:ke,flipX:xe,flipY:Le,skewX:lt,skewY:ut});return}const De=Qe({rotate:0,startX:D.startX,startY:0,endX:S.endX,endY:S.endY,width:t.width,height:t.height,absolute:{left:S.absolute.left,top:S.absolute.top}},t),Ye={left:De.startX,top:De.startY,width:De.width,height:De.height,zIndex:this._drawingManagerService.getDrawingOrder(P,b).length-1},ae=new A.Rect($e,Ye);ne.addObject(ae,A.DRAWING_OBJECT_LAYER_INDEX),W.allowTransform!==!1&&ne.attachTransformerTo(ae);const Z=this._ensureMap(P,b),Ce=new u.DisposableCollection,re=ne.getMainViewport(),Te={top:0,left:re.left,bottom:re.bottom,right:re.right},ce={dispose:Ce,rect:ae,unitId:P,subUnitId:b,boundsOfViewArea:Te,domAnchor:t,scrollDirectionResponse:"HORIZONTAL"},ye=le(ae,te.renderUnit,oe.skeleton,j.worksheet,ce),Me=new B.BehaviorSubject(ye);ce.position$=Me;let de={position$:Me,id:C,componentKey:W.componentKey,onPointerDown:()=>{},onPointerMove:()=>{},onPointerUp:()=>{},onWheel:L=>{z.dispatchEvent(new WheelEvent(L.type,L))},props:(E=(N=Z.get(C))==null?void 0:N.props)!=null?E:this._getFloatDomProps(C),data:se,unitId:P};e.eventPassThrough&&(de={...de,onPointerDown:L=>{z.dispatchEvent(new PointerEvent(L.type,L))},onPointerMove:L=>{z.dispatchEvent(new PointerEvent(L.type,L))},onPointerUp:L=>{z.dispatchEvent(new PointerEvent(L.type,L))}}),this._canvasFloatDomService.addFloatDom(de);const Fe=ae.onTransformChange$.subscribeEvent(()=>{const L=le(ae,te.renderUnit,oe.skeleton,j.worksheet,ce);Me.next(L)});this.disposeWithMe(v.subscribe(L=>{const be=Qe({rotate:0,startX:L.startX,startY:0,endX:L.endX,endY:L.endY,width:t.width,height:t.height,absolute:{left:S.absolute.left,top:S.absolute.top}},t),Ve=O.getDrawingShapeKeyByDrawingSearch({unitId:P,subUnitId:b,drawingId:C}),k=new A.Rect(Ve,{left:be.startX,top:0,width:t.width,height:t.height,zIndex:this._drawingManagerService.getDrawingOrder(P,b).length-1}),He=le(k,te.renderUnit,oe.skeleton,j.worksheet,ce);Me.next(He)}));const ue=(x=this._renderManagerService.getRenderById(P))==null?void 0:x.with(U.SheetSkeletonManagerService);ue==null||ue.currentSkeleton$.subscribe(L=>{L&&c.sheetId!==L.sheetId&&this._removeDom(w,!0)}),Ce.add(()=>{this._canvasFloatDomService.removeFloatDom(C)}),Fe&&Ce.add(Fe),this._domLayerInfoMap.set(C,ce),Z.set(C,{...Z.get(C)})}return{id:w,dispose:()=>{this._removeDom(w,!0)}}}_createRangePositionObserver(n,e,t){let{startRow:o,startColumn:s}=n;const a=Ue(o,s,t),d=new B.BehaviorSubject(a),m=Ue(n.endRow,n.endColumn,t),l=new B.BehaviorSubject(m),c=()=>{const v=Ue(o,s,t),D=Ue(n.endRow,n.endColumn,t);d.next(v),l.next(D)},g=new u.DisposableCollection;g.add(e.engine.clientRect$.subscribe(()=>c())),g.add(this._commandService.onCommandExecuted(v=>{if(v.id===_.SetWorksheetRowAutoHeightMutation.id&&v.params.rowsAutoHeightInfo.findIndex(M=>M.row===o)>-1){c();return}(_.COMMAND_LISTENER_SKELETON_CHANGE.indexOf(v.id)>-1||v.id===U.SetScrollOperation.id||v.id===U.SetZoomRatioOperation.id)&&c()}));const h=(v,D)=>{o=v,s=D,c()},p=()=>({rotate:0,width:m.right-a.left,height:m.bottom-a.top,absolute:{left:!0,top:!0},startX:a.left,startY:a.top,endX:m.right,endY:m.bottom}),w=d.pipe(B.map(v=>{const D=Ue(n.endRow,n.endColumn,t);return{rotate:0,width:D.right-v.left,height:D.bottom-v.top,absolute:{left:!0,top:!0},startX:v.left,startY:v.top,endX:D.right,endY:D.bottom}})),S=p();return{position$:w,position:S,updateRowCol:h,topLeftPos$:d,rightBottomPos$:l,disposable:g}}};exports.SheetCanvasFloatDomManagerService=Cr([_e(0,u.Inject(A.IRenderManagerService)),_e(1,u.IUniverInstanceService),_e(2,u.Inject(u.ICommandService)),_e(3,O.IDrawingManagerService),_e(4,u.Inject(F.CanvasFloatDomService)),_e(5,f.ISheetDrawingService),_e(6,u.Inject(u.LifecycleService))],exports.SheetCanvasFloatDomManagerService);function Ue(i,r,n){const e=n.getCellWithCoordByIndex(i,r),t=e.isMergedMainCell?e.mergeInfo:e;return{left:t.startX,right:t.endX,top:t.startY,bottom:t.endY}}function Qe(i,r,n){var m,l;n=n!=null?n:1;const e=i.endX-i.startX,t=i.endY-i.startY,o=(m=r==null?void 0:r.width)!=null?m:e,s=(l=r==null?void 0:r.height)!=null?l:t;let a=0,d=0;if(r){if(r.horizonOffsetAlign==="right"){const c=et(r.marginX,e*n);a=i.endX-c-o}else a=i.startX+et(r.marginX,e);if(r.verticalOffsetAlign==="bottom"){const c=et(r.marginY,t*n);d=i.endY-c-s}else d=i.startY+et(r.marginY,t)}return{rotate:0,startX:a,startY:d,endX:i.endX,endY:i.endY,width:o,height:s,absolute:{left:i.absolute.left,top:i.absolute.top}}}function et(i,r){if(i===void 0)return 0;if(typeof i=="number")return i;const n=Number.parseFloat(i);return r*n/100}var Yt=Object.defineProperty,Mr=Object.getOwnPropertyDescriptor,Rr=(i,r,n)=>r in i?Yt(i,r,{enumerable:!0,configurable:!0,writable:!0,value:n}):i[r]=n,Tr=(i,r,n,e)=>{for(var t=e>1?void 0:e?Mr(r,n):r,o=i.length-1,s;o>=0;o--)(s=i[o])&&(t=(e?s(r,n,t):s(t))||t);return e&&t&&Yt(r,n,t),t},mt=(i,r)=>(n,e)=>r(n,e,i),Ft=(i,r,n)=>Rr(i,typeof r!="symbol"?r+"":r,n);const br="SHEET_IMAGE_UI_PLUGIN";exports.UniverSheetsDrawingUIPlugin=class extends u.Plugin{constructor(r=Ot,n,e,t){super(),this._config=r,this._injector=n,this._renderManagerService=e,this._configService=t;const{menu:o,...s}=u.merge({},Ot,this._config);o&&this._configService.setConfig("menu",o,{merge:!0}),this._configService.setConfig(qt,s)}onStarting(){u.registerDependencies(this._injector,[[exports.SheetCanvasFloatDomManagerService],[ct],[tt],[at],[st],[ot],[nt],[it],[rt]]),u.touchDependencies(this._injector,[[exports.SheetCanvasFloatDomManagerService]])}onReady(){u.touchDependencies(this._injector,[[ot]])}onRendered(){this._registerRenderModules(),u.touchDependencies(this._injector,[[st],[at],[ct],[nt],[it],[rt]])}onSteady(){this._injector.get(tt)}_registerRenderModules(){[[Pe],[wt],[pt]].forEach(r=>{this.disposeWithMe(this._renderManagerService.registerRenderModule(u.UniverInstanceType.UNIVER_SHEET,r))})}};Ft(exports.UniverSheetsDrawingUIPlugin,"type",u.UniverInstanceType.UNIVER_SHEET);Ft(exports.UniverSheetsDrawingUIPlugin,"pluginName",br);exports.UniverSheetsDrawingUIPlugin=Tr([u.DependentOn(O.UniverDrawingPlugin,Nt.UniverDocsDrawingPlugin,pe.UniverDrawingUIPlugin,f.UniverSheetsDrawingPlugin),mt(1,u.Inject(u.Injector)),mt(2,A.IRenderManagerService),mt(3,u.IConfigService)],exports.UniverSheetsDrawingUIPlugin);exports.ClearSheetDrawingTransformerOperation=G;exports.DeleteDrawingsCommand=Ct;exports.EditSheetDrawingOperation=_t;exports.GroupSheetDrawingCommand=vt;exports.InsertFloatImageCommand=dt;exports.InsertSheetDrawingCommand=Ne;exports.MoveDrawingsCommand=Re;exports.RemoveSheetDrawingCommand=Ae;exports.SHEETS_IMAGE_MENU_ID=Mt;exports.SetDrawingArrangeCommand=It;exports.SetSheetDrawingCommand=je;exports.SidebarSheetDrawingOperation=St;exports.UngroupSheetDrawingCommand=Dt;
|