I came to this problem when I wanted to show my user at which point he/she was on the list when they were scrolling. In short, I wanted to have a counter indicating the current index of the visible Row.
This can be achieved with onItemsRendered
.
However, when using react-window-infinite-loader that prop is taken from the children's value needed to load else it is stuck to the loading state.
onItemsRendered={onItemsRendered}
To return the desired state,
onItemsRendered
needs to receivevisibleStartIndex
andvisibleStopIndex
. To get the current row and return the correct state, try the following:In addition here is a working example: https://stackblitz.com/edit/react-list-counter