diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/index.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index 356f5bb..31cc0ba 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -139,11 +139,19 @@ export function GraphPage() { const [physics, setPhysics] = usePersistantState('physics', initialPhysics) const [theme, setTheme] = useState(initialTheme) const [graphData, setGraphData] = useState<GraphData | null>(null) + const [emacsNode, setEmacsNode] = useState<string>('') const nodeByIdRef = useRef<NodeById>({}) const linksByNodeIdRef = useRef<LinksByNodeId>({}) useEffect(() => { + const trackEmacs = new EventSource('http://127.0.0.1:35901/current-node-id') + + trackEmacs.addEventListener('message', (e) => { + setEmacsNode(e.data) + console.log(e.data) + console.log(emacsNode) + }) fetch('http://localhost:35901/theme') .then((res) => res.json()) .then((emacsTheme) => { |