summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorThomas F. K. Jorna <[email protected]>2021-07-15 15:34:15 +0200
committerThomas F. K. Jorna <[email protected]>2021-07-15 15:34:15 +0200
commit47618defb7188e0b5e8c5db03b09115e08e93d7c (patch)
tree0435a9c9d7e89c1e40980fa3fb1d00f22b3ff791 /app
parente4249979b67127dbeaf8d78bab6500154dcf6cde (diff)
added node size by connections
Diffstat (limited to 'app')
-rw-r--r--app/components/graph/graph.tsx187
1 files changed, 98 insertions, 89 deletions
diff --git a/app/components/graph/graph.tsx b/app/components/graph/graph.tsx
index 7a4843b..38a4c80 100644
--- a/app/components/graph/graph.tsx
+++ b/app/components/graph/graph.tsx
@@ -11,9 +11,8 @@ import { flatten } from "ramda"
//import rando from "../../data/rando.json"
import rando from "../../data/randorev.json"
-
-import { ForceGraph2D, ForceGraph3D, ForceGraphVR, ForceGraphAR } from 'react-force-graph';
-import * as d3 from "d3-force";
+import { ForceGraph2D, ForceGraph3D, ForceGraphVR, ForceGraphAR } from "react-force-graph"
+import * as d3 from "d3-force"
const CONTAINER: ViewStyle = {
justifyContent: "center",
@@ -30,8 +29,8 @@ export interface GraphProps {
* An optional style override useful for padding & margin.
*/
style?: StyleProp<ViewStyle>
- physics
- gData
+ physics
+ gData
}
/**
@@ -41,91 +40,101 @@ export const Graph = observer(function Graph(props: GraphProps) {
const { style, physics, gData } = props
const styles = flatten([CONTAINER, style])
- const fgRef= useRef();
-
-
- const GROUPS: number =12;
- //const gData = genRandomTree(200);
-
- //const [charge, setCharge] = useState(-30);
- //const [link, setLink] = useState(-30);
-
- useEffect(()=> {
- const fg = fgRef.current;
-
- //fg.d3Force('center').strength(0.05);
- 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);
- });
-
- const rootId = 0;
-
- const nodesById = useMemo(() => {
- const nodesById = Object.fromEntries(rando.nodes.map(node => [node.id, node]));
-
- // link parent/children
- rando.nodes.forEach(node => {
- node.collapsed = node.id !== rootId;
- node.childLinks = [];
- });
- rando.links.forEach(link => nodesById[link.source].childLinks.push(link));
-
- return nodesById;
- }, [rando]);
-
- const getPrunedTree = useCallback(() => {
- const visibleNodes = [];
- const visibleLinks = [];
- (function traverseTree(node = nodesById[rootId]) {
- visibleNodes.push(node);
- if (node.collapsed) return;
- visibleLinks.push(...node.childLinks);
- node.childLinks
- .map(link => ((typeof link.target) === 'object') ? link.target : nodesById[link.target]) // get child node
- .forEach(traverseTree);
- })();
-
- return { nodes: visibleNodes, links: visibleLinks };
- }, [nodesById]);
-
- const [prunedTree, setPrunedTree] = useState(getPrunedTree());
-
- const handleNodeClick = useCallback(node => {
- node.collapsed = !node.collapsed; // toggle collapse state
- setPrunedTree(getPrunedTree())
- }, []);
-
- return (
+ const fgRef = useRef()
+
+ const GROUPS: number = 12
+ //const gData = genRandomTree(200);
+
+ //const [charge, setCharge] = useState(-30);
+ //const [link, setLink] = useState(-30);
+
+ useEffect(() => {
+ const fg = fgRef.current
+
+ //fg.d3Force('center').strength(0.05);
+ 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)
+ })
+
+ const rootId = 0
+
+ const nodesById = useMemo(() => {
+ const nodesById = Object.fromEntries(rando.nodes.map((node) => [node.id, node]))
+
+ // link parent/children
+ rando.nodes.forEach((node) => {
+ node.collapsed = node.id !== rootId
+ node.childLinks = []
+ node.parentLink = []
+ })
+ rando.links.forEach((link) => nodesById[link.source].childLinks.push(link))
+
+ return nodesById
+ }, [rando])
+
+ const getPrunedTree = useCallback(() => {
+ const visibleNodes = []
+ const visibleLinks = []
+ ;(function traverseTree(node = nodesById[rootId]) {
+ visibleNodes.push(node)
+ if (node.collapsed) return
+ visibleLinks.push(...node.childLinks)
+ node.childLinks
+ .map((link) => (typeof link.target === "object" ? link.target : nodesById[link.target])) // get child node
+ .forEach(traverseTree)
+ })()
+
+ return { nodes: visibleNodes, links: visibleLinks }
+ }, [nodesById])
+
+ const [prunedTree, setPrunedTree] = useState(getPrunedTree())
+
+ const handleNodeClick = useCallback((node) => {
+ node.collapsed = !node.collapsed // toggle collapse state
+ setPrunedTree(getPrunedTree())
+ }, [])
+
+ return (
<View>
- {!physics.threedim ?
- <ForceGraph2D
- ref={fgRef}
- graphData={physics.collapse ? prunedTree : rando}
- // nodeAutoColorBy={d => d.id%GROUPS}
- linkAutoColorBy={d => rando.nodes[d.source].id%GROUPS}
- linkColor={"#ffffff"}
- linkWidth={2}
- linkDirectionalParticles={2}
- nodeColor={node => !node.childLinks.length ? 'green' : node.collapsed ? 'red' : 'yellow'}
- onNodeClick={handleNodeClick}
- //d3VelocityDecay={visco}
- />
- :
- <ForceGraph3D
- ref={fgRef}
- graphData={physics.collapse ? prunedTree : rando}
- // nodeAutoColorBy={d => d.id%GROUPS}
- linkAutoColorBy={d => rando.nodes[d.source].id%GROUPS}
- linkColor={"#ffffff"}
- linkWidth={2}
- linkDirectionalParticles={2}
- nodeColor={node => !node.childLinks.length ? 'green' : node.collapsed ? 'red' : 'yellow'}
- onNodeClick={handleNodeClick}
- //d3VelocityDecay={visco}
- />
- }
+ {!physics.threedim ? (
+ <ForceGraph2D
+ ref={fgRef}
+ graphData={physics.collapse ? prunedTree : rando}
+ // nodeAutoColorBy={d => d.id%GROUPS}
+ linkAutoColorBy={(d) => rando.nodes[d.source].id % GROUPS}
+ linkColor={"#ffffff"}
+ linkWidth={2}
+ linkDirectionalParticles={2}
+ nodeColor={(node) =>
+ !node.childLinks.length ? "green" : node.collapsed ? "red" : "yellow"
+ }
+ onNodeClick={handleNodeClick}
+ nodeLabel={(node) => "label"}
+ nodeVal ={(node)=> node.childLinks.length * 0.5 + 1}
+ //d3VelocityDecay={visco}
+ />
+ ) : (
+ <ForceGraph3D
+ ref={fgRef}
+ graphData={physics.collapse ? prunedTree : rando}
+ // nodeAutoColorBy={d => d.id%GROUPS}
+ linkAutoColorBy={(d) => rando.nodes[d.source].id % GROUPS}
+ linkColor={"#ffffff"}
+ linkWidth={2}
+ linkDirectionalParticles={2}
+ nodeColor={(node) =>
+ !node.childLinks.length ? "green" : node.collapsed ? "red" : "yellow"
+ }
+ onNodeClick={handleNodeClick}
+ nodeVal ={(node)=> node.childLinks.length + 1}
+ linkOpacity={0.8}
+ //d3VelocityDecay={visco}
+ />
+ )}
</View>
)
})