helixevo 0.2.27 → 0.2.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dashboard/app/network/client.tsx +57 -21
- package/package.json +1 -1
|
@@ -313,7 +313,7 @@ export default function NetworkClient({
|
|
|
313
313
|
<button
|
|
314
314
|
key={sv.key}
|
|
315
315
|
className={`tab-item ${view === sv.key ? 'active' : ''}`}
|
|
316
|
-
onClick={() => { setView(sv.key)
|
|
316
|
+
onClick={() => { setView(sv.key) }}
|
|
317
317
|
>
|
|
318
318
|
{sv.label}
|
|
319
319
|
</button>
|
|
@@ -324,7 +324,7 @@ export default function NetworkClient({
|
|
|
324
324
|
<div style={{ display: 'flex', gap: 0 }}>
|
|
325
325
|
{/* Main content */}
|
|
326
326
|
<div style={{ flex: 1, minWidth: 0 }}>
|
|
327
|
-
{view === 'graph' && <GraphView flowNodes={flowNodes} flowEdges={flowEdges} stats={stats} />}
|
|
327
|
+
{view === 'graph' && <GraphView flowNodes={flowNodes} flowEdges={flowEdges} stats={stats} onNodeClick={setSelectedSkill} />}
|
|
328
328
|
{view === 'general' && (
|
|
329
329
|
<GeneralView
|
|
330
330
|
generalized={generalized} evolved={evolved} original={original}
|
|
@@ -339,6 +339,7 @@ export default function NetworkClient({
|
|
|
339
339
|
<CoEvolutionView
|
|
340
340
|
generalized={generalized} evolved={evolved} original={original}
|
|
341
341
|
edges={graphEdges} evolutionBySkill={evolutionBySkill} projects={projects}
|
|
342
|
+
onSelect={setSelectedSkill}
|
|
342
343
|
/>
|
|
343
344
|
)}
|
|
344
345
|
</div>
|
|
@@ -386,20 +387,20 @@ export default function NetworkClient({
|
|
|
386
387
|
{selectedEdges.inheritsFrom.length > 0 && (
|
|
387
388
|
<div style={{ fontSize: 12 }}>
|
|
388
389
|
<span style={{ color: 'var(--text-dim)' }}>Inherits from: </span>
|
|
389
|
-
{selectedEdges.inheritsFrom.map(e => <span key={e.from} className="badge badge-purple" style={{ marginRight: 3 }}>{e.from}</span>)}
|
|
390
|
+
{selectedEdges.inheritsFrom.map(e => <span key={e.from} className="badge badge-purple" style={{ marginRight: 3, cursor: 'pointer' }} onClick={() => setSelectedSkill(e.from)}>{e.from}</span>)}
|
|
390
391
|
</div>
|
|
391
392
|
)}
|
|
392
393
|
{selectedEdges.children.length > 0 && (
|
|
393
394
|
<div style={{ fontSize: 12 }}>
|
|
394
395
|
<span style={{ color: 'var(--text-dim)' }}>Children: </span>
|
|
395
|
-
{selectedEdges.children.map(e => <span key={e.to} className="badge badge-blue" style={{ marginRight: 3 }}>{e.to}</span>)}
|
|
396
|
+
{selectedEdges.children.map(e => <span key={e.to} className="badge badge-blue" style={{ marginRight: 3, cursor: 'pointer' }} onClick={() => setSelectedSkill(e.to)}>{e.to}</span>)}
|
|
396
397
|
</div>
|
|
397
398
|
)}
|
|
398
399
|
{selectedEdges.enhances.length > 0 && (
|
|
399
400
|
<div style={{ fontSize: 12 }}>
|
|
400
401
|
<span style={{ color: 'var(--text-dim)' }}>Enhances: </span>
|
|
401
402
|
{[...new Set(selectedEdges.enhances.map(e => e.from === selectedSkill ? e.to : e.from))].map(id =>
|
|
402
|
-
<span key={id} className="badge badge-green" style={{ marginRight: 3 }}>{id}</span>
|
|
403
|
+
<span key={id} className="badge badge-green" style={{ marginRight: 3, cursor: 'pointer' }} onClick={() => setSelectedSkill(id)}>{id}</span>
|
|
403
404
|
)}
|
|
404
405
|
</div>
|
|
405
406
|
)}
|
|
@@ -407,7 +408,7 @@ export default function NetworkClient({
|
|
|
407
408
|
<div style={{ fontSize: 12 }}>
|
|
408
409
|
<span style={{ color: 'var(--text-dim)' }}>Conflicts: </span>
|
|
409
410
|
{[...new Set(selectedEdges.conflicts.map(e => e.from === selectedSkill ? e.to : e.from))].map(id =>
|
|
410
|
-
<span key={id} className="badge badge-red" style={{ marginRight: 3 }}>{id}</span>
|
|
411
|
+
<span key={id} className="badge badge-red" style={{ marginRight: 3, cursor: 'pointer' }} onClick={() => setSelectedSkill(id)}>{id}</span>
|
|
411
412
|
)}
|
|
412
413
|
</div>
|
|
413
414
|
)}
|
|
@@ -440,6 +441,28 @@ export default function NetworkClient({
|
|
|
440
441
|
</div>
|
|
441
442
|
)}
|
|
442
443
|
|
|
444
|
+
{/* ─── Cross-Links ─── */}
|
|
445
|
+
<div style={{ marginBottom: 16 }}>
|
|
446
|
+
<div className="section-label">Navigate</div>
|
|
447
|
+
<div style={{ display: 'flex', gap: 6, flexWrap: 'wrap' }}>
|
|
448
|
+
{view !== 'graph' && (
|
|
449
|
+
<button onClick={() => setView('graph')} style={actionBtnStyle('var(--blue)')}>
|
|
450
|
+
◎ View in Graph
|
|
451
|
+
</button>
|
|
452
|
+
)}
|
|
453
|
+
{view !== 'general' && (
|
|
454
|
+
<button onClick={() => setView('general')} style={actionBtnStyle()}>
|
|
455
|
+
▤ View in Skills
|
|
456
|
+
</button>
|
|
457
|
+
)}
|
|
458
|
+
{view !== 'coevolution' && (
|
|
459
|
+
<button onClick={() => setView('coevolution')} style={actionBtnStyle()}>
|
|
460
|
+
↕ Co-Evolution
|
|
461
|
+
</button>
|
|
462
|
+
)}
|
|
463
|
+
</div>
|
|
464
|
+
</div>
|
|
465
|
+
|
|
443
466
|
{/* ─── Management Actions ─── */}
|
|
444
467
|
<div style={{ marginBottom: 20 }}>
|
|
445
468
|
<div className="section-label">Actions</div>
|
|
@@ -583,7 +606,7 @@ export default function NetworkClient({
|
|
|
583
606
|
// SUB-VIEW: Graph
|
|
584
607
|
// ═══════════════════════════════════════════════════════════════════
|
|
585
608
|
|
|
586
|
-
function GraphView({ flowNodes, flowEdges, stats }: { flowNodes: Node[]; flowEdges: Edge[]; stats: Props['stats'] }) {
|
|
609
|
+
function GraphView({ flowNodes, flowEdges, stats, onNodeClick }: { flowNodes: Node[]; flowEdges: Edge[]; stats: Props['stats']; onNodeClick: (id: string) => void }) {
|
|
587
610
|
return (
|
|
588
611
|
<div style={{ position: 'relative', height: 'calc(100vh - 200px)', width: '100%', borderRadius: 12, overflow: 'hidden', border: '1px solid var(--border)', background: 'var(--bg)' }}>
|
|
589
612
|
<ReactFlow
|
|
@@ -591,6 +614,7 @@ function GraphView({ flowNodes, flowEdges, stats }: { flowNodes: Node[]; flowEdg
|
|
|
591
614
|
edges={flowEdges}
|
|
592
615
|
nodeTypes={nodeTypes}
|
|
593
616
|
connectionLineType={ConnectionLineType.SmoothStep}
|
|
617
|
+
onNodeClick={(_event, node) => onNodeClick(node.id)}
|
|
594
618
|
fitView
|
|
595
619
|
fitViewOptions={{ padding: 0.2 }}
|
|
596
620
|
proOptions={{ hideAttribution: true }}
|
|
@@ -808,13 +832,24 @@ function ProjectsView({
|
|
|
808
832
|
</div>
|
|
809
833
|
</div>
|
|
810
834
|
{unresolved.length >= 3 && (
|
|
811
|
-
<
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
835
|
+
<button
|
|
836
|
+
onClick={async () => {
|
|
837
|
+
try {
|
|
838
|
+
await fetch('/api/run', {
|
|
839
|
+
method: 'POST',
|
|
840
|
+
headers: { 'Content-Type': 'application/json' },
|
|
841
|
+
body: JSON.stringify({ command: 'specialize', project: project.name }),
|
|
842
|
+
})
|
|
843
|
+
} catch {}
|
|
844
|
+
}}
|
|
845
|
+
style={{
|
|
846
|
+
padding: '6px 14px', borderRadius: 8, border: 'none', cursor: 'pointer',
|
|
847
|
+
background: 'var(--green)', color: '#fff',
|
|
848
|
+
fontSize: 11, fontWeight: 600,
|
|
849
|
+
}}
|
|
850
|
+
>
|
|
851
|
+
Specialize for {project.name} →
|
|
852
|
+
</button>
|
|
818
853
|
)}
|
|
819
854
|
</div>
|
|
820
855
|
</div>
|
|
@@ -869,10 +904,11 @@ function ProjectsView({
|
|
|
869
904
|
// ═══════════════════════════════════════════════════════════════════
|
|
870
905
|
|
|
871
906
|
function CoEvolutionView({
|
|
872
|
-
generalized, evolved, original, edges, evolutionBySkill, projects,
|
|
907
|
+
generalized, evolved, original, edges, evolutionBySkill, projects, onSelect,
|
|
873
908
|
}: {
|
|
874
909
|
generalized: SkillNode[]; evolved: SkillNode[]; original: SkillNode[]
|
|
875
910
|
edges: GraphEdge[]; evolutionBySkill: Record<string, EvolutionEntry[]>; projects: ProjectData[]
|
|
911
|
+
onSelect: (id: string) => void
|
|
876
912
|
}) {
|
|
877
913
|
const allNodes = [...generalized, ...evolved, ...original]
|
|
878
914
|
|
|
@@ -924,7 +960,7 @@ function CoEvolutionView({
|
|
|
924
960
|
width: 8, height: 8, borderRadius: '50%',
|
|
925
961
|
background: 'var(--purple)', flexShrink: 0,
|
|
926
962
|
}} />
|
|
927
|
-
<span style={{ fontWeight: 700, fontSize: 14 }}>{chain.parent.name}</span>
|
|
963
|
+
<span onClick={() => onSelect(chain.parent.id)} style={{ fontWeight: 700, fontSize: 14, cursor: 'pointer' }}>{chain.parent.name}</span>
|
|
928
964
|
<span style={{ fontSize: 22, fontWeight: 800, color: scoreColor(chain.parent.score), marginLeft: 'auto' }}>
|
|
929
965
|
{(chain.parent.score * 100).toFixed(0)}
|
|
930
966
|
</span>
|
|
@@ -939,7 +975,7 @@ function CoEvolutionView({
|
|
|
939
975
|
padding: '6px 0',
|
|
940
976
|
}}>
|
|
941
977
|
<span style={{ fontSize: 10, color: 'var(--purple)' }}>↳</span>
|
|
942
|
-
<span style={{ fontWeight: 500, fontSize: 13 }}>{child.name}</span>
|
|
978
|
+
<span onClick={() => onSelect(child.id)} style={{ fontWeight: 500, fontSize: 13, cursor: 'pointer' }}>{child.name}</span>
|
|
943
979
|
<span className="badge badge-green" style={{ fontSize: 9 }}>gen {child.generation}</span>
|
|
944
980
|
<span style={{ marginLeft: 'auto', fontSize: 13, fontWeight: 700, color: scoreColor(child.score) }}>
|
|
945
981
|
{(child.score * 100).toFixed(0)}
|
|
@@ -968,9 +1004,9 @@ function CoEvolutionView({
|
|
|
968
1004
|
display: 'flex', alignItems: 'center', gap: 10,
|
|
969
1005
|
padding: '8px 0', borderBottom: i < enhancePairs.length - 1 ? '1px solid var(--border)' : 'none',
|
|
970
1006
|
}}>
|
|
971
|
-
<span style={{ fontWeight: 500, fontSize: 13 }}>{pair.from.name}</span>
|
|
1007
|
+
<span onClick={() => onSelect(pair.from.id)} style={{ fontWeight: 500, fontSize: 13, cursor: 'pointer' }}>{pair.from.name}</span>
|
|
972
1008
|
<span style={{ color: 'var(--green)', fontSize: 12 }}>↔</span>
|
|
973
|
-
<span style={{ fontWeight: 500, fontSize: 13 }}>{pair.to.name}</span>
|
|
1009
|
+
<span onClick={() => onSelect(pair.to.id)} style={{ fontWeight: 500, fontSize: 13, cursor: 'pointer' }}>{pair.to.name}</span>
|
|
974
1010
|
<span style={{ marginLeft: 'auto', fontSize: 11, color: 'var(--text-dim)' }}>
|
|
975
1011
|
strength: {(pair.strength * 100).toFixed(0)}%
|
|
976
1012
|
</span>
|
|
@@ -991,9 +1027,9 @@ function CoEvolutionView({
|
|
|
991
1027
|
display: 'flex', alignItems: 'center', gap: 10,
|
|
992
1028
|
padding: '8px 0', borderBottom: i < conflictPairs.length - 1 ? '1px solid var(--border)' : 'none',
|
|
993
1029
|
}}>
|
|
994
|
-
<span style={{ fontWeight: 500, fontSize: 13 }}>{pair.from.name}</span>
|
|
1030
|
+
<span onClick={() => onSelect(pair.from.id)} style={{ fontWeight: 500, fontSize: 13, cursor: 'pointer' }}>{pair.from.name}</span>
|
|
995
1031
|
<span style={{ color: 'var(--red)', fontSize: 12 }}>⚡</span>
|
|
996
|
-
<span style={{ fontWeight: 500, fontSize: 13 }}>{pair.to.name}</span>
|
|
1032
|
+
<span onClick={() => onSelect(pair.to.id)} style={{ fontWeight: 500, fontSize: 13, cursor: 'pointer' }}>{pair.to.name}</span>
|
|
997
1033
|
<span style={{ marginLeft: 'auto', fontSize: 11, color: 'var(--text-dim)' }}>
|
|
998
1034
|
strength: {(pair.strength * 100).toFixed(0)}%
|
|
999
1035
|
</span>
|
package/package.json
CHANGED