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(overlay): add openingDone property for ThyAbstractOverlayRef #TI… #3226

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
6 changes: 6 additions & 0 deletions src/core/overlay/abstract-overlay-ref.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ export abstract class ThyAbstractOverlayRef<
disableClose: boolean;
containerInstance: TContainer;

/**
* 模态框打开是否完成,如果为 true 则代表打开动画执行完成
*/
openingDone = false;

/**
* 获取 OverlayRef
*/
Expand Down Expand Up @@ -115,6 +120,7 @@ export abstract class ThyAbstractInternalOverlayRef<
// Emit when opening animation completes
containerInstance.animationOpeningDone.pipe(take(1)).subscribe(() => {
this._afterOpened.next();
this.openingDone = true;
if (this.options.disposeWhenClose) {
this._afterOpened.complete();
}
Expand Down