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

fix(overlay): backdrop blocking element scroll #7779

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
26 changes: 24 additions & 2 deletions src/cdk/overlay/overlay-ref.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,23 @@ import {Direction, Directionality} from '@angular/cdk/bidi';
import {ComponentPortal, Portal, PortalOutlet, TemplatePortal} from '@angular/cdk/portal';
import {ComponentRef, EmbeddedViewRef, NgZone} from '@angular/core';
import {Location} from '@angular/common';
import {Observable, Subject, merge, SubscriptionLike, Subscription, Observer} from 'rxjs';
import {take, takeUntil} from 'rxjs/operators';
import {
Observable,
Subject,
merge,
SubscriptionLike,
Subscription,
Observer,
fromEvent,
} from 'rxjs';
import {take, takeUntil, tap, debounceTime} from 'rxjs/operators';
import {OverlayKeyboardDispatcher} from './keyboard/overlay-keyboard-dispatcher';
import {OverlayConfig} from './overlay-config';
import {coerceCssPixelValue, coerceArray} from '@angular/cdk/coercion';
import {OverlayReference} from './overlay-reference';
import {PositionStrategy} from './position/position-strategy';
import {ScrollStrategy} from './scroll';
import {BlockScrollStrategy} from './scroll/block-scroll-strategy';


/** An object where all of its properties cannot be written. */
Expand Down Expand Up @@ -393,6 +402,19 @@ export class OverlayRef implements PortalOutlet, OverlayReference {
// action desired when such a click occurs (usually closing the overlay).
this._backdropElement.addEventListener('click', this._backdropClickHandler);

if (!(this._config.scrollStrategy instanceof BlockScrollStrategy)) {
// When the user starts scrolling by mouse, disable pointer events on the backdrop. This
// allows for non-body scroll containers (e.g. a sidenav container), which would normally
// be blocked due to the backdrop, to scroll. When the user has stopped scrolling for 100ms
// restore the pointer events in order for the click handler to work.
this._ngZone.runOutsideAngular(() => {
fromEvent(this._backdropElement!, 'wheel').pipe(
tap(() => this._backdropElement!.style.pointerEvents = 'none'),
debounceTime(100)
).subscribe(() => this._backdropElement!.style.pointerEvents = '');
});
}

// Add class to fade-in the backdrop after one frame.
if (typeof requestAnimationFrame !== 'undefined') {
this._ngZone.runOutsideAngular(() => {
Expand Down
34 changes: 34 additions & 0 deletions src/cdk/overlay/overlay.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -769,6 +769,40 @@ describe('Overlay', () => {
expect(backdropClickHandler).toHaveBeenCalledTimes(1);
});

it('should disable pointer events on the backdrop when scrolling', fakeAsync(() => {
let overlayRef = overlay.create(config);
overlayRef.attach(componentPortal);

viewContainerFixture.detectChanges();
let backdrop = overlayContainerElement.querySelector('.cdk-overlay-backdrop') as HTMLElement;

expect(backdrop.style.pointerEvents).toBeFalsy();

dispatchFakeEvent(backdrop, 'wheel');

expect(backdrop.style.pointerEvents).toBe('none');

tick(100);

expect(backdrop.style.pointerEvents).toBeFalsy();
}));

it('should not disable pointer events on the backdrop when scrolling is blocked', () => {
config.scrollStrategy = overlay.scrollStrategies.block();

let overlayRef = overlay.create(config);
overlayRef.attach(componentPortal);

viewContainerFixture.detectChanges();
let backdrop = overlayContainerElement.querySelector('.cdk-overlay-backdrop') as HTMLElement;

expect(backdrop.style.pointerEvents).toBeFalsy();

dispatchFakeEvent(backdrop, 'wheel');

expect(backdrop.style.pointerEvents).toBeFalsy();
});

});

describe('panelClass', () => {
Expand Down