ag-grid-enterprise
Version:
ag-Grid Enterprise Features
46 lines (33 loc) • 1.39 kB
text/typescript
import {Autowired, Events, EventService, GridApi, IStatusPanelComp, PostConstruct} from 'ag-grid-community';
import {NameValueComp} from "./nameValueComp";
export class TotalRowsComp extends NameValueComp implements IStatusPanelComp {
private eventService: EventService;
private gridApi: GridApi;
constructor() {
super('rowCount', 'Total Rows');
}
protected postConstruct(): void {
super.postConstruct();
// this component is only really useful with client side rowmodel
if (this.gridApi.getModel().getType() !== 'clientSide') {
console.warn(`ag-Grid: agTotalAndFilteredRowCountComponent should only be used with the client side row model.`);
return;
}
this.addCssClass('ag-status-panel');
this.addCssClass('ag-status-panel-total-row-count');
this.setVisible(true);
const listener = this.onDataChanged.bind(this);
this.eventService.addEventListener(Events.EVENT_MODEL_UPDATED, listener);
}
private onDataChanged() {
this.setValue(this.getRowCountValue())
}
private getRowCountValue(): string {
let totalRowCount = 0;
this.gridApi.forEachNode((node) => totalRowCount += 1);
return `${totalRowCount}`;
}
public init() {
}
}