Skip to content

Commit

Permalink
fix(core): peek view animation (#8858)
Browse files Browse the repository at this point in the history
  • Loading branch information
pengx17 authored Nov 18, 2024
1 parent 56a3f05 commit e200e0a
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,10 @@ export type PeekViewMode = 'full' | 'fit' | 'max';
export class PeekViewEntity extends Entity {
private readonly _active$ = new LiveData<ActivePeekView | null>(null);
private readonly _show$ = new LiveData<{
animation: PeekViewAnimation;
animation: boolean;
value: boolean;
}>({
animation: 'zoom',
animation: true,
value: false,
});

Expand Down Expand Up @@ -258,7 +258,7 @@ export class PeekViewEntity extends Entity {
this._active$.next({ target, info: resolvedInfo });
this._show$.next({
value: true,
animation: target.element ? 'zoom' : 'fade',
animation: true,
});

if (abortSignal) {
Expand All @@ -281,10 +281,10 @@ export class PeekViewEntity extends Entity {
return firstValueFrom(race(this._active$, this.show$).pipe(map(() => {})));
};

close = (animation?: PeekViewAnimation) => {
close = (animation = true) => {
this._show$.next({
value: false,
animation: animation ?? this._show$.value.animation,
animation,
});
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,24 @@ export const PeekViewModalContainer = forwardRef<
contentWrapper?: AnimeParams;
}
) => {
// if target has no bounding client rect,
// find its parent that has bounding client rect
let iteration = 0;
while (
target &&
!target.getBoundingClientRect().width &&
iteration < 10
) {
// eslint-disable-next-line react-hooks/exhaustive-deps
target = target.parentElement || undefined;
iteration++;
}

if (!target) {
// fallback to fade animation
return animateFade(!!zoomIn);
}

return new Promise<void>(resolve => {
const contentClip = contentClipRef.current;
const content = contentRef.current;
Expand All @@ -130,23 +148,6 @@ export const PeekViewModalContainer = forwardRef<
const targets = contentClip;
const lockSizeEl = content;

// if target has no bounding client rect, find its parent that has bounding client rect
let iteration = 0;
while (
target &&
!target.getBoundingClientRect().width &&
iteration < 10
) {
// eslint-disable-next-line react-hooks/exhaustive-deps
target = target.parentElement || undefined;
iteration++;
}

if (!target) {
resolve();
return;
}

const from = zoomIn ? target : contentClip;
const to = zoomIn ? contentClip : target;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const DocPeekViewControls = ({
nameKey: 'open',
onClick: () => {
workbench.openDoc(docRef);
peekView.close('none');
peekView.close(false);
},
},
{
Expand All @@ -122,7 +122,7 @@ export const DocPeekViewControls = ({
name: t['com.affine.peek-view-controls.open-doc-in-new-tab'](),
onClick: () => {
workbench.openDoc(docRef, { at: 'new-tab' });
peekView.close('none');
peekView.close(false);
},
},
BUILD_CONFIG.isElectron && {
Expand All @@ -131,7 +131,7 @@ export const DocPeekViewControls = ({
name: t['com.affine.peek-view-controls.open-doc-in-split-view'](),
onClick: () => {
workbench.openDoc(docRef, { at: 'beside' });
peekView.close('none');
peekView.close(false);
},
},
{
Expand Down Expand Up @@ -178,7 +178,7 @@ export const AttachmentPeekViewControls = ({
if (docId && blockId) {
workbench.openAttachment(docId, blockId);
}
peekView.close('none');
peekView.close(false);
},
},
{
Expand All @@ -190,7 +190,7 @@ export const AttachmentPeekViewControls = ({
if (docId && blockId) {
workbench.openAttachment(docId, blockId, { at: 'new-tab' });
}
peekView.close('none');
peekView.close(false);
},
},
BUILD_CONFIG.isElectron && {
Expand All @@ -204,7 +204,7 @@ export const AttachmentPeekViewControls = ({
if (docId && blockId) {
workbench.openAttachment(docId, blockId, { at: 'beside' });
}
peekView.close('none');
peekView.close(false);
},
},
].filter((opt): opt is ControlButtonProps => Boolean(opt));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ const getRendererProps = (
? activePeekView.target.element
: undefined,
mode: getMode(activePeekView.info),
animation:
activePeekView.target.element && getMode(activePeekView.info) !== 'full'
? 'zoom'
: 'fade',
dialogFrame: activePeekView.info.type !== 'image',
};
};
Expand Down Expand Up @@ -124,8 +128,8 @@ export const PeekViewManagerModal = () => {
return (
<PeekViewModalContainer
{...renderProps}
animation={show?.animation ? renderProps?.animation : 'none'}
open={!!show?.value && !!renderProps}
animation={show?.animation || 'none'}
onOpenChange={open => {
if (!open) {
peekViewEntity.close();
Expand Down

0 comments on commit e200e0a

Please sign in to comment.