-
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
virtual-scroll: re-render when the viewport or content size changes #10117
Comments
I ended up implementing this in my usages:
|
Here is a temporary and crappy workaround. Probably needs a throttle, debounce, or something:
|
Here's how I temporarily fixed it, waiting for the official fix: @Directive({
selector: 'cdk-virtual-scroll-viewport',
})
export class CdkVirtualScrollViewportPatchDirective implements OnInit, OnDestroy {
protected readonly destroy$ = new Subject();
constructor(
@Self() @Inject(CdkVirtualScrollViewport) private readonly viewportComponent: CdkVirtualScrollViewport,
) {}
ngOnInit() {
fromEvent(window, 'resize')
.pipe(
debounceTime(10),
takeUntil(this.destroy$),
)
.subscribe(() => this.viewportComponent.checkViewportSize())
;
}
ngOnDestroy() {
this.destroy$.next();
this.destroy$.complete();
}
} |
Still no fix for this? This is one of the first things I noticed when porting my library over to this virtual scrolling |
Any solution??? |
The virtual scrolling feature is so useful and I think it should manage the container resizing. |
Also hit this here using a variation of the linked issue #13981 (same root cause - viewport size should not be computed when the tab containing the virtual scrolling component is not activated). In the meantime an application-only workaround for tab-based use could be to wrap the content under an *ngIf, if the tab is not activated so viewport calculation is not completed prematurely. Still, the above workarounds are preferable, so will try that first. Thanks to @grant77 and @jlowcs for that snippet 👍. |
@jlowcs's Directive works great to solve the window resizing issue. It, however, doesn't solve the issue when switching tabs when the virtual scrolling component is used in a mat-tab component. I'll need to figure out a similar mechanism which triggers checkViewportSize() on tab change. |
I did the following workaround as below: In the cityTab component ,if tab is visible, then dispatch resize event to trigger for checkViewportSize. |
@jlowcs first this is a good solution, but i dont see any reason angular cdk not handle this by its own should be a bug / error. If u have multiple Directives / Components or whatever on page which should react on a window resize u have to register multiple Window.Resize Events. I think it is better to create 1 Resize Event and share this Event through Observable with all who are interested in this. So u will allways have only 1 resize event and this should be better in my opinion. I create a window resize service for my own projects to register only one listener which will be shared. And could registered like this, and at this point it is very easy to update cdk-virtual-scroll-viewport
|
Still waiting for official solution |
Reproduction of the problem: https://stackblitz.com/edit/components-issue-ljc2ov?file=app/app.component.ts |
We've implemented an extension directive to handle these situations, easily reusable and doesn't require pollution of the parent |
Found a super easy, albeit hacky way to fix this. I've found you don't have to have the exact size of the itemSize property correct, if you change the value when the viewport changes, then it will refresh the number to display... it would be even easier but I had to use setTimeout to avoid the dreaded expression has changed after view checked. template <cdk-virtual-scroll-viewport [itemSize]="itemSize" component export class VirtualScrollProfilesComponent implements OnInit {
virtualPersons = [];
itemSize = 50;
ngOnInit() {
this.determineItemSize();
}
private determineItemSize() {
setTimeout(() => {
this.itemSize = 50 - this.windowService.boostrapColumns;
})
}
/**
* resize columns on windowResize
* @param event resize event
*/
@HostListener('window:resize')
onResize() {
this.determineItemSize();
}
} |
My virtual scroll component is sitting inside an expansion panel which changes the size of the viewport independent from the window size. For everybody else facing that problem: I ended up using css-element-queries and connecting the CdkVirtualScrollViewport to the ResizeSensor in the AfterViewInit hook. Now the viewport can be rerenderd on any size change, wherever it comes from. |
Dispatching the 'resize' event is working well for my use case. |
I am running into this issue because my CSS is causing the size to change, thus the window resize event is not fired. I am using a const resized$ = new Subject<void>();
const resizeObserver = new ResizeObserver(() => resized$.next());
resized$
.pipe(throttleTime(20, undefined, { leading: true, trailing: true }), takeUntil(this.destroyed$))
.subscribe(() => viewport.checkViewportSize());
resizeObserver.observe(viewport.elementRef.nativeElement);
this.destroyed$.subscribe(() => resizeObserver.disconnect()); Probably whatever code is causing the viewport to run |
Any news about this issue? Still not working with mat-tab when tab not active. Items don't resize vertically full height. |
an issue from 2018 still on and no solutions !!!!!!!!!!!!!!!!!!! |
still no solution ?? |
try do this: |
I modified the directive to also check for visibility changes in the import { Directive, ElementRef, Inject, OnDestroy, OnInit, Self } from '@angular/core';
import { debounceTime, fromEvent, Subject, takeUntil } from 'rxjs';
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
@Directive({
selector: 'cdk-virtual-scroll-viewport-resize-aware',
standalone: true
})
export class CdkVirtualScrollViewportHeightAwareDirective implements OnInit, OnDestroy {
protected readonly destroy$: Subject<void> = new Subject();
private visibilityObserver!: IntersectionObserver;
constructor(
@Self() @Inject(CdkVirtualScrollViewport) private readonly viewportComponent: CdkVirtualScrollViewport,
private elementRef: ElementRef
) {}
ngOnInit() {
// Handle window resize events
fromEvent(window, 'resize')
.pipe(
debounceTime(50),
takeUntil(this.destroy$)
)
.subscribe(() => {
console.debug('Checking viewport size after window resize');
this.viewportComponent.checkViewportSize();
});
this.visibilityObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
console.debug('Element became visible');
this.viewportComponent.checkViewportSize();
}
});
});
this.visibilityObserver.observe(this.elementRef.nativeElement);
}
ngOnDestroy() {
this.visibilityObserver.disconnect();
this.destroy$.next();
this.destroy$.complete();
}
} |
Adds support for automatically re-calculating the viewport's size if content size changes. Partially implements angular#10117
Add support for automatically re-rendering the list when the viewport or content size changes such that not enough content is rendered. We should also expose a public method to allow users to trigger this manually
The text was updated successfully, but these errors were encountered: