Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-center camera when nodes update #204

Merged
merged 2 commits into from
Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions src/CameraControls/useCenterGraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,15 +135,21 @@ export const useCenterGraph = ({

useLayoutEffect(() => {
async function load() {
// Center the graph once nodes are loaded on mount
if (controls && nodes?.length && !mounted.current) {
await centerNodes(nodes, false);
mounted.current = true;
// Once we've loaded controls and we have nodes, let's recenter
if (controls && nodes?.length) {
if (!mounted.current) {
// Center the graph once nodes are loaded on mount
await centerNodes(nodes, false);
mounted.current = true;
} else {
// If node positions have changed and some aren't in view, center the graph
await centerNodes(nodes, animated);
}
}
}

load();
}, [controls, centerNodes, nodes]);
}, [controls, centerNodes, nodes, animated]);

useHotkeys([
{
Expand Down
Loading