-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
fix(dialog): improved handling of scrollable content #9236
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
<ng-template cdkPortalOutlet></ng-template> | ||
<div class="mat-dialog-component-host"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this class meant to be both in the template and added manually? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, we need to add it through both to cover both template and dialog portals. The class is used to propagate the |
||
<ng-template cdkPortalOutlet></ng-template> | ||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,7 +114,15 @@ export class MatDialogContainer extends BasePortalOutlet { | |
} | ||
|
||
this._savePreviouslyFocusedElement(); | ||
return this._portalOutlet.attachComponentPortal(portal); | ||
|
||
const componentRef = this._portalOutlet.attachComponentPortal(portal); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add a comment here that explains why this extra class is added? |
||
|
||
// We need to add an extra class to the root of the instantiated component, which | ||
// allows us to propagate some width/height overrides down from the overlay pane. | ||
componentRef.location.nativeElement.classList.add('mat-dialog-component-host'); | ||
this._toggleScrollableContentClass(); | ||
|
||
return componentRef; | ||
} | ||
|
||
/** | ||
|
@@ -127,7 +135,9 @@ export class MatDialogContainer extends BasePortalOutlet { | |
} | ||
|
||
this._savePreviouslyFocusedElement(); | ||
return this._portalOutlet.attachTemplatePortal(portal); | ||
const viewRef = this._portalOutlet.attachTemplatePortal(portal); | ||
this._toggleScrollableContentClass(); | ||
return viewRef; | ||
} | ||
|
||
/** Moves the focus inside the focus trap. */ | ||
|
@@ -197,4 +207,19 @@ export class MatDialogContainer extends BasePortalOutlet { | |
// view container is using OnPush change detection. | ||
this._changeDetectorRef.markForCheck(); | ||
} | ||
|
||
/** | ||
* Toggles a class on the host element, depending on whether it has | ||
* scrollable content. Used to activate particular flexbox styling. | ||
*/ | ||
private _toggleScrollableContentClass() { | ||
const element: HTMLElement = this._elementRef.nativeElement; | ||
const cssClass = 'mat-dialog-container-scrollable'; | ||
|
||
if (element.querySelector('.mat-dialog-content')) { | ||
element.classList.add(cssClass); | ||
} else { | ||
element.classList.remove(cssClass); | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this
65vh
before? If so, we probably would need to keep the same max-height until a major version changeThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It wasn't, it was the scrollable content that was
65vh
, this applies the height to the overlay pane itself.