Spaces:
Running
Running
File size: 6,196 Bytes
4d9392e be095f5 8a41bbe 4d9392e be095f5 5b78906 23cab17 8a41bbe be095f5 23cab17 be095f5 5b78906 be095f5 5b78906 8a41bbe 23cab17 4d9392e 8a41bbe 23cab17 8a41bbe 23cab17 8a41bbe 44d07e8 8a41bbe c4b5e4b 8a41bbe 44d07e8 c4b5e4b 8a41bbe 23cab17 8a41bbe be095f5 4d9392e be095f5 4d9392e be095f5 23cab17 be095f5 4d9392e be095f5 a55eb17 5b78906 23cab17 5b78906 23cab17 be095f5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
// The LynxKite workspace editor.
import { useParams } from "react-router";
import useSWR from 'swr';
import { useEffect, useMemo, useCallback, useState } from "react";
import favicon from '../assets/favicon.ico';
import {
ReactFlow,
Controls,
MarkerType,
ReactFlowProvider,
applyEdgeChanges,
applyNodeChanges,
useUpdateNodeInternals,
type XYPosition,
type Node,
type Edge,
type Connection,
type NodeTypes,
} from '@xyflow/react';
// @ts-ignore
import ArrowBack from '~icons/tabler/arrow-back.jsx';
// @ts-ignore
import Backspace from '~icons/tabler/backspace.jsx';
// @ts-ignore
import Atom from '~icons/tabler/atom.jsx';
import { syncedStore, getYjsDoc } from "@syncedstore/core";
import { WebsocketProvider } from "y-websocket";
import NodeWithParams from './nodes/NodeWithParams';
// import NodeWithVisualization from './NodeWithVisualization';
// import NodeWithImage from './NodeWithImage';
// import NodeWithTableView from './NodeWithTableView';
// import NodeWithSubFlow from './NodeWithSubFlow';
// import NodeWithArea from './NodeWithArea';
// import NodeSearch from './NodeSearch';
import EnvironmentSelector from './EnvironmentSelector';
import { LynxKiteState } from './LynxKiteState';
import '@xyflow/react/dist/style.css';
import { Workspace } from "../apiTypes.ts";
export default function (props: any) {
return (
<ReactFlowProvider>
<LynxKiteFlow {...props} />
</ReactFlowProvider>
);
}
function LynxKiteFlow() {
const updateNodeInternals = useUpdateNodeInternals()
const [nodes, setNodes] = useState([] as Node[]);
const [edges, setEdges] = useState([] as Edge[]);
const { path } = useParams();
const [state, setState] = useState({ workspace: {} as Workspace });
useEffect(() => {
const state = syncedStore({ workspace: {} as Workspace });
setState(state);
const doc = getYjsDoc(state);
const wsProvider = new WebsocketProvider("ws://localhost:8000/ws/crdt", path!, doc);
const onChange = (update: any, origin: any, doc: any, tr: any) => {
if (origin === wsProvider) {
// An update from the CRDT. Apply it to the local state.
// This is only necessary because ReactFlow keeps secret internal copies of our stuff.
if (!state.workspace) return;
if (!state.workspace.nodes) return;
if (!state.workspace.edges) return;
setNodes([...state.workspace.nodes] as Node[]);
setEdges([...state.workspace.edges] as Edge[]);
for (const node of state.workspace.nodes) {
// Make sure the internal copies are updated.
updateNodeInternals(node.id);
}
}
};
doc.on('update', onChange);
return () => {
doc.destroy();
wsProvider.destroy();
}
}, [path]);
const onNodesChange = (changes: any[]) => {
// An update from the UI. Apply it to the local state...
setNodes((nds) => applyNodeChanges(changes, nds));
// ...and to the CRDT state. (Which could be the same, except for ReactFlow's internal copies.)
const wnodes = state.workspace?.nodes;
if (!wnodes) return;
for (const ch of changes) {
const nodeIndex = wnodes.findIndex((n) => n.id === ch.id);
if (nodeIndex === -1) continue;
const node = wnodes[nodeIndex];
if (!node) continue;
// Position events sometimes come with NaN values. Ignore them.
if (ch.type === 'position' && !isNaN(ch.position.x) && !isNaN(ch.position.y)) {
getYjsDoc(state).transact(() => {
Object.assign(node.position, ch.position);
});
} else if (ch.type === 'select') {
} else if (ch.type === 'dimensions') {
getYjsDoc(state).transact(() => Object.assign(node, ch.dimensions));
} else if (ch.type === 'replace') {
// Ideally we would only update the parameter that changed. But ReactFlow does not give us that detail.
const u = {
collapsed: ch.item.data.collapsed,
// The "..." expansion on a Y.map returns an empty object. Copying with fromEntries/entries instead.
params: { ...Object.fromEntries(Object.entries(ch.item.data.params)) },
__execution_delay: ch.item.data.__execution_delay,
};
getYjsDoc(state).transact(() => Object.assign(node.data, u));
} else {
console.log('Unknown node change', ch);
}
}
};
const onEdgesChange = (changes: any[]) => {
setEdges((eds) => applyEdgeChanges(changes, eds));
};
const fetcher = (resource: string, init?: RequestInit) => fetch(resource, init).then(res => res.json());
const catalog = useSWR('/api/catalog', fetcher);
const nodeTypes = useMemo(() => ({
basic: NodeWithParams,
table_view: NodeWithParams,
}), []);
const parentDir = path!.split('/').slice(0, -1).join('/');
return (
<div className="workspace">
<div className="top-bar bg-neutral">
<a className="logo" href=""><img src={favicon} /></a>
<div className="ws-name">
{path}
</div>
<EnvironmentSelector
options={Object.keys(catalog.data || {})}
value={state.workspace.env!}
onChange={(env) => { state.workspace.env = env; }}
/>
<div className="tools text-secondary">
<a href=""><Atom /></a>
<a href=""><Backspace /></a>
<a href={'/dir/' + parentDir}><ArrowBack /></a>
</div>
</div>
<div style={{ height: "100%", width: '100vw' }}>
<LynxKiteState.Provider value={state}>
<ReactFlow
nodes={nodes}
edges={edges}
nodeTypes={nodeTypes} fitView
onNodesChange={onNodesChange}
onEdgesChange={onEdgesChange}
proOptions={{ hideAttribution: true }}
maxZoom={3}
minZoom={0.3}
defaultEdgeOptions={{ markerEnd: { type: MarkerType.Arrow } }}
>
<Controls />
{/* {#if nodeSearchSettings}
<NodeSearch pos={nodeSearchSettings.pos} boxes={nodeSearchSettings.boxes} on:cancel={closeNodeSearch} on:add={addNode} />
{/if} */}
</ReactFlow>
</LynxKiteState.Provider>
</div>
</div>
);
}
|