Skip to content

Commit 33d0f04

Browse files
authored
Merge pull request #1519 from ghiscoding/bugfix/resize-data-length
fix: add `autoResize.autoHeight` to resize by dataset length
2 parents e41fe93 + 683b716 commit 33d0f04

File tree

4 files changed

+37
-1
lines changed

4 files changed

+37
-1
lines changed

src/app/examples/grid-tree-data-hierarchical.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ export class GridTreeDataHierarchicalComponent implements OnInit {
138138

139139
this.gridOptions = {
140140
autoResize: {
141+
autoHeight: false,
141142
container: '#demo-container',
142143
rightPadding: 10,
143144
},

src/app/modules/angular-slickgrid/components/__tests__/angular-slickgrid.component.spec.ts

+28
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,8 @@ Object.defineProperty(paginationServiceStub, 'totalItems', {
183183
});
184184

185185
const resizerServiceStub = {
186+
isAutoHeightEnabled: true,
187+
autoHeightRecalcRow: 100,
186188
init: jest.fn(),
187189
dispose: jest.fn(),
188190
bindAutoResizeDataGrid: jest.fn(),
@@ -2272,6 +2274,32 @@ describe('Angular-Slickgrid Custom Component instantiated via Constructor', () =
22722274
expect(footerSpy).toHaveBeenCalledWith(expectation);
22732275
});
22742276

2277+
it('should call a grid resize when the DataView "onRowCountChanged" event is triggered with a low dataset length and autoResize.autoHeight is enabled', () => {
2278+
const mockData = [
2279+
{ firstName: 'John', lastName: 'Doe' },
2280+
{ firstName: 'Jane', lastName: 'Smith' },
2281+
];
2282+
const invalidateSpy = jest.spyOn(mockGrid, 'invalidate');
2283+
const expectation = {
2284+
startTime: expect.any(Date),
2285+
endTime: expect.any(Date),
2286+
itemCount: 2,
2287+
totalItemCount: 2,
2288+
};
2289+
jest.spyOn(mockDataView, 'getItemCount').mockReturnValue(mockData.length);
2290+
jest.spyOn(mockDataView, 'getFilteredItemCount').mockReturnValue(mockData.length);
2291+
jest.spyOn(mockDataView, 'getLength').mockReturnValue(mockData.length);
2292+
const resizerSpy = jest.spyOn(resizerServiceStub, 'resizeGrid');
2293+
2294+
component.gridOptions = { enableAutoResize: true, autoResize: { autoHeight: true } };
2295+
component.initialization(slickEventHandler);
2296+
mockDataView.onRowCountChanged.notify({ current: 2, previous: 0, dataView: mockDataView, itemCount: 0, callingOnRowsChanged: false });
2297+
2298+
expect(invalidateSpy).toHaveBeenCalled();
2299+
expect(component.metrics).toEqual(expectation);
2300+
expect(resizerSpy).toHaveBeenCalled();
2301+
});
2302+
22752303
it('should have custom footer with metrics when the DataView "onSetItemsCalled" event is triggered', () => {
22762304
const expectation = {
22772305
startTime: expect.toBeDate(),

src/app/modules/angular-slickgrid/components/angular-slickgrid.component.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1262,6 +1262,11 @@ export class AngularSlickgridComponent<TData = any> implements AfterViewInit, On
12621262
if (this._isLocalGrid && this.gridOptions?.enableEmptyDataWarningMessage) {
12631263
this.displayEmptyDataWarning(currentPageRowItemCount === 0);
12641264
}
1265+
1266+
// when autoResize.autoHeight is enabled, we'll want to call a resize
1267+
if (this.gridOptions.enableAutoResize && this.resizerService.isAutoHeightEnabled && currentPageRowItemCount > 0) {
1268+
this.resizerService.resizeGrid();
1269+
}
12651270
}
12661271

12671272
protected initializePaginationService(paginationOptions: Pagination) {

src/app/modules/angular-slickgrid/global-grid-options.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ export const GlobalGridOptions: Partial<GridOption> = {
1818
autoFitColumnsOnFirstLoad: true,
1919
autoResize: {
2020
applyResizeToContainer: true,
21+
autoHeight: true,
22+
autoHeightRecalcRow: 100,
2123
calculateAvailableSizeBy: 'window',
2224
bottomPadding: 20,
23-
minHeight: 180,
25+
minHeight: 250,
2426
minWidth: 300,
2527
rightPadding: 0,
2628
},

0 commit comments

Comments
 (0)