summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pages/index.tsx14
1 files changed, 5 insertions, 9 deletions
diff --git a/pages/index.tsx b/pages/index.tsx
index 170935e..b78e357 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -664,12 +664,10 @@ export const Graph = function (props: GraphProps) {
fg.d3Force('y', null)
threeDim ? fg.d3Force('z', null) : null
}
- fg.d3Force('link').strength(physics.linkStrength)
- fg.d3Force('link').iterations(physics.linkIts)
- physics.collision
- ? fg.d3Force('collide', d3.forceCollide().radius(20))
- : fg.d3Force('collide', null)
- fg.d3Force('charge').strength(physics.charge)
+ physics.linkStrength && fg.d3Force('link').strength(physics.linkStrength)
+ physics.linkIts && fg.d3Force('link').iterations(physics.linkIts)
+ physics.charge && fg.d3Force('charge').strength(physics.charge)
+ fg.d3Force('collide', physics.collision ? d3.forceCollide().radius(20) : null)
})()
})
@@ -699,7 +697,6 @@ export const Graph = function (props: GraphProps) {
}
const theme = useTheme()
- console.log(theme)
const graphCommonProps: ComponentPropsWithoutRef<typeof TForceGraph2D> = {
graphData: scopedGraphData,
width: windowWidth,
@@ -790,8 +787,7 @@ export const Graph = function (props: GraphProps) {
d3AlphaDecay: physics.alphaDecay,
d3AlphaMin: physics.alphaMin,
d3VelocityDecay: physics.velocityDecay,
-
- onNodeClick: onNodeClick,
+ onNodeClick,
onBackgroundClick: () => {
setScope((currentScope) => ({
...currentScope,