Diogo
Diogo
Hi @don-p. At the moment there is no infinite scroll functionality. I can look into adding that in the near future. The onExpand part I don't see why you can't...
Hi @don-p. Started a POC on this at https://github.com/diogofcunha/react-virtualized-tree/pull/79. So far the PR has 0 breaking changes. The next part will be to figure out how to easily check if...
Hey Don. That is not the problem I do have in that PR. Exposing a callback that fires when rows are rendered and a ref to register the children is...
I don't think there is any reliable way to know if a row is loaded or not inside this source code, because all apps have their own business logic. Image...
Hey @jpambulo. If you're talking about window scroller it is not possible atm, although I'm thinking about making the tree support everything that react virtualized list does. I will take...
Hi @Baehn. I believe the tree supports a reasonable number of child nodes, but yes the bottleneck is `getFlattenedTree`. I will be releasing some news on a more performant approach...
Hi @Baehn Just did some work on this and by managing more state could make some fantastic improvements. This work is still unstable, so it isn't available on npm just...
Hi @Baehn. I'm aware of performance implications with reduce, although most times it doesn't really matter. The new tree implementation (Unstable) is written with for loops and an improved seek...
Hey @guillaumesayegh. I like to first give it a few tries before committing to definitive solution, specially since this can be a huge compromise. I didn't like the way things...
There are several tricky things on dnd that we need to keep in mind: I can see dragging meaning 3 things: - Drag between nodes to re-order or move nodes...