Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(sheets-ui): sheet popup service should respond to row col changes #1848

Merged
merged 2 commits into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/core/src/shared/lifecycle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,9 @@ export class DisposableCollection implements IDisposable {
dispose(): void {
this._disposables.forEach((item) => {
item.dispose();
this._disposables.delete(item);
});

this._disposables.clear();
}
}

Expand Down
99 changes: 39 additions & 60 deletions packages/sheets-ui/src/services/canvas-pop-manager.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@
* limitations under the License.
*/

import type { Worksheet } from '@univerjs/core';
import { Disposable, DisposableCollection, ICommandService, IUniverInstanceService, Rectangle } from '@univerjs/core';
import type { IRange, Nullable, Worksheet } from '@univerjs/core';
import { Disposable, DisposableCollection, ICommandService, IUniverInstanceService, toDisposable } from '@univerjs/core';
import { IRenderManagerService } from '@univerjs/engine-render';
import type { BaseObject, IBoundRectNoAngle, IRender, SpreadsheetSkeleton, Viewport } from '@univerjs/engine-render';
import { ICanvasPopupService } from '@univerjs/ui';
import type { IDisposable } from '@wendellhu/redi';
import { Inject } from '@wendellhu/redi';
import { BehaviorSubject } from 'rxjs';
import type { IRemoveColMutationParams, IRemoveRowsMutationParams, ISetWorksheetRowAutoHeightMutationParams } from '@univerjs/sheets';
import { COMMAND_LISTENER_SKELETON_CHANGE, RemoveColMutation, RemoveRowMutation, SetWorksheetRowAutoHeightMutation } from '@univerjs/sheets';
import type { ISetWorksheetRowAutoHeightMutationParams } from '@univerjs/sheets';
import { COMMAND_LISTENER_SKELETON_CHANGE, RefRangeService, SetWorksheetRowAutoHeightMutation } from '@univerjs/sheets';
import { getViewportByCell, transformBound2OffsetBound } from '../common/utils';
import { SetScrollOperation } from '../commands/operations/scroll.operation';
import { SetZoomRatioOperation } from '..';
import { SetZoomRatioOperation } from '../commands/operations/set-zoom-ratio.operation';
import { SheetSkeletonManagerService } from './sheet-skeleton-manager.service';

interface ICanvasPopup {
Expand All @@ -44,6 +44,7 @@ export class SheetCanvasPopManagerService extends Disposable {
@IRenderManagerService private readonly _renderManagerService: IRenderManagerService,
@IUniverInstanceService private readonly _univerInstanceService: IUniverInstanceService,
@Inject(SheetSkeletonManagerService) private readonly _sheetSkeletonManagerService: SheetSkeletonManagerService,
@Inject(RefRangeService) private readonly _refRangeService: RefRangeService,
@ICommandService private readonly _commandService: ICommandService
) {
super();
Expand Down Expand Up @@ -81,21 +82,25 @@ export class SheetCanvasPopManagerService extends Disposable {
}

private _createCellPositionObserver(
row: number,
col: number,
initialRow: number,
initialCol: number,
currentRender: IRender,
skeleton: SpreadsheetSkeleton,
activeViewport: Viewport
) {
let row = initialRow;
let col = initialCol;

const position = this._calcCellPosition(row, col, currentRender, skeleton, activeViewport);
const position$ = new BehaviorSubject(position);
const updatePosition = () => position$.next(this._calcCellPosition(row, col, currentRender, skeleton, activeViewport));

const disposable = new DisposableCollection();
disposable.add(this._commandService.onCommandExecuted((commandInfo) => {
if (commandInfo.id === SetWorksheetRowAutoHeightMutation.id) {
const params = commandInfo.params as ISetWorksheetRowAutoHeightMutationParams;
if (params.rowsAutoHeightInfo.findIndex((item) => item.row === row) > -1) {
position$.next(this._calcCellPosition(row, col, currentRender, skeleton, activeViewport));
updatePosition();
return;
}
}
Expand All @@ -105,14 +110,22 @@ export class SheetCanvasPopManagerService extends Disposable {
commandInfo.id === SetScrollOperation.id ||
commandInfo.id === SetZoomRatioOperation.id
) {
position$.next(this._calcCellPosition(row, col, currentRender, skeleton, activeViewport));
updatePosition();
}
}));

const updateRowCol = (newRow: number, newCol: number) => {
row = newRow;
col = newCol;

updatePosition();
};

return {
position$,
disposable,
position,
updateRowCol,
};
}

Expand Down Expand Up @@ -212,7 +225,7 @@ export class SheetCanvasPopManagerService extends Disposable {
* @param viewport target viewport
* @returns disposable
*/
attachPopupToCell(row: number, col: number, popup: ICanvasPopup, viewport?: Viewport) {
attachPopupToCell(row: number, col: number, popup: ICanvasPopup, viewport?: Viewport): Nullable<IDisposable> {
const workbook = this._univerInstanceService.getCurrentUniverSheetInstance();
const worksheet = workbook.getActiveSheet();
const unitId = workbook.getUnitId();
Expand All @@ -221,24 +234,18 @@ export class SheetCanvasPopManagerService extends Disposable {
unitId,
sheetId: subUnitId,
});
const currentRender = this._renderManagerService.getRenderById(unitId);

const currentRender = this._renderManagerService.getRenderById(unitId);
if (!currentRender || !skeleton) {
return {
dispose: () => { },
};
return null;
}

const activeViewport = viewport ?? getViewportByCell(row, col, currentRender.scene, worksheet);

if (!activeViewport) {
return {
dispose: () => { },
};
return null;
}

const { position, position$, disposable } = this._createCellPositionObserver(row, col, currentRender, skeleton, activeViewport);

const { position, position$, disposable, updateRowCol } = this._createCellPositionObserver(row, col, currentRender, skeleton, activeViewport);
const id = this._globalPopupManagerService.addPopup({
...popup,
unitId,
Expand All @@ -247,50 +254,22 @@ export class SheetCanvasPopManagerService extends Disposable {
anchorRect$: position$,
});

const onDispose = () => {
const disposableCollection = new DisposableCollection();
disposableCollection.add(disposable);
disposableCollection.add(toDisposable(() => {
this._globalPopupManagerService.removePopup(id);
disposable.dispose();
position$.complete();
};

const commandDisposable = this._commandService.onCommandExecuted((commandInfo) => {
if (commandInfo.id === RemoveColMutation.id) {
const params = commandInfo.params as IRemoveColMutationParams;

if (Rectangle.contains(
params.range,
{
startColumn: col,
endColumn: col,
startRow: row,
endRow: row,
}
)) {
onDispose();
}
}
}));

if (commandInfo.id === RemoveRowMutation.id) {
const params = commandInfo.params as IRemoveRowsMutationParams;
if (Rectangle.contains(
params.range,
{
startColumn: col,
endColumn: col,
startRow: row,
endRow: row,
}
)) {
onDispose();
}
const watchedRange: IRange = { startRow: row, endRow: row, startColumn: col, endColumn: col };
disposableCollection.add(this._refRangeService.watchRange(unitId, subUnitId, watchedRange, (_, after) => {
if (!after) {
disposableCollection.dispose();
} else {
updateRowCol(after.startRow, after.startColumn);
}
});
}));

return {
dispose: () => {
commandDisposable.dispose();
onDispose();
},
};
return disposableCollection;
}
}
Loading