diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-07-23 17:29:33 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-07-23 17:29:33 +0200 |
commit | 857113a749b1402c63422fc83bad3150a8f832da (patch) | |
tree | 812a23a57d2489e90777420645130c5ece05f3f3 /pages/index.tsx | |
parent | 44248cb4eb0839a111e9f5db91c96b707d76d78e (diff) | |
parent | e4559edc53bbb68d611962ab4088c61a848283c3 (diff) |
merge changes
Diffstat (limited to 'pages/index.tsx')
-rw-r--r-- | pages/index.tsx | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index 8462d31..89c0553 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -674,12 +674,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) })() }) @@ -709,7 +707,6 @@ export const Graph = function (props: GraphProps) { } const theme = useTheme() - console.log(theme) const graphCommonProps: ComponentPropsWithoutRef<typeof TForceGraph2D> = { graphData: scopedGraphData, width: windowWidth, @@ -733,7 +730,9 @@ export const Graph = function (props: GraphProps) { nodeRelSize: physics.nodeRel, nodeVal: (node) => { const links = linksByNodeId[node.id!] ?? [] - return links.length + const basicSize = 3 + links.length + const highlightSize = highlightedNodes[node.id!] ? physics.highlightNodeSize : 1 + return basicSize * highlightSize }, nodeCanvasObject: (node, ctx, globalScale) => { if (!physics.labels) { @@ -794,14 +793,20 @@ export const Graph = function (props: GraphProps) { return linkIsHighlighted ? theme.colors.purple[500] : theme.colors.gray[500] }, - linkWidth: physics.linkWidth, + linkWidth: (link) => { + const linkIsHighlighted = + (link.source as NodeObject).id! === centralHighlightedNode?.id! || + (link.target as NodeObject).id! === centralHighlightedNode?.id! + + return linkIsHighlighted ? physics.highlightLinkSize * physics.linkWidth : physics.linkWidth + }, linkDirectionalParticleWidth: physics.particlesWidth, d3AlphaDecay: physics.alphaDecay, d3AlphaMin: physics.alphaMin, d3VelocityDecay: physics.velocityDecay, - onNodeClick: onNodeClick, + onNodeClick, onBackgroundClick: () => { setScope((currentScope) => ({ ...currentScope, |