Grant Steffen
Grant Steffen
Hmmm I'm not able to recreate this issue. @Edouard-Tby can you provide a repo that recreates it? https://github.com/reaviz/reagraph/assets/40581813/cdb2e966-1158-44f6-afcc-93eea0cff8a9
> @ghsteff, thanks for your answer, to recreate it you have to zoom in or zoom out. As you can see in the screen recording the centerGraph function will reset...
This should be fixed in `4.18.0`
> @ghsteff - Didn't you do some of this already? Yea tooltips and click handlers on sections
Just a heads up, I tested this locally with reablocks and `Tooltip` seems to be working with different positionings straight outta the box 🎉 But when testing with reaviz, which...
> @ghsteff what we decided with this one? So the tertiary tab variant looks pretty much the same as our button group which could be confusing if you use both...
@optojack we memoized some components in [this PR](https://github.com/reaviz/reagraph/pull/180) that helped performance quite a bit. And hid small unreadable labels from rendering in [this PR](https://github.com/reaviz/reagraph/pull/187) that also helped alot. There's no...
ideally I would have made a change [here](https://github.com/reaviz/reagraph/blob/663e7f23deabc619f3df79ef7dae192a92e4380f/src/selection/useSelection.ts#L270) like ``` if (nodes?.some(node => !isNodeInView(camera, node.position)) { ref.current?.centerGraph([data.id, ...adjacents]); } ``` but you can’t use the `useThree` hook in here to...