- Foldable left panel (user profile) and right panel (task details) - Clicking a task in the list or graph node selects it and shows details - Both views (task list + graph) always mounted via absolute inset-0 for correct canvas dimensions; tabs toggle visibility with opacity - Graph node selection animation: other nodes repel outward (charge -600), then selected node smoothly slides to center (500ms cubic ease-out), then charge restores to -120 and graph stabilizes - Graph re-fits on tab switch and panel resize via ResizeObserver - Fix UUID string IDs throughout (backend returns UUIDs, not integers) - Add TaskDetailPanel, UserPanel components - Add CLAUDE.md project documentation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
<head>
|
|
<style> body { margin: 0; } </style>
|
|
|
|
<script src="//cdn.jsdelivr.net/npm/force-graph"></script>
|
|
<!--<script src="../../dist/force-graph.js"></script>-->
|
|
</head>
|
|
|
|
<body>
|
|
<div id="graph"></div>
|
|
|
|
<script>
|
|
window.devicePixelRatio = 1; // use standard resolution in retina displays
|
|
|
|
fetch('../datasets/mplate.mtx').then(res => res.text()).then(mtxData => {
|
|
let nodeSet = new Set();
|
|
|
|
const pairs = mtxData.split('\n')
|
|
.slice(14, -1)
|
|
.map(d => d.split(' '));
|
|
|
|
pairs.forEach(d => {
|
|
nodeSet.add(d[0]);
|
|
nodeSet.add(d[1]);
|
|
});
|
|
|
|
const nodes = Array.from(nodeSet).map(d => ({ id: d }));
|
|
const links = pairs.filter(d => d[0] !== d[1])
|
|
.map(d => ({ source: d[0], target: d[1] }));
|
|
|
|
const Graph = new ForceGraph(document.getElementById('graph'))
|
|
.graphData({ nodes, links })
|
|
.d3AlphaDecay(0)
|
|
.d3VelocityDecay(0.08)
|
|
.cooldownTime(60000)
|
|
.linkColor(() => 'rgba(0,0,0,0.05)')
|
|
.zoom(0.05)
|
|
.enablePointerInteraction(false);
|
|
});
|
|
</script>
|
|
</body> |