Spaces:
Running
Running
File size: 14,791 Bytes
544e2ab 7ed5764 7fda361 7ed5764 7fda361 7ed5764 7fda361 7ed5764 f4eadba 7ed5764 684c4b3 499182c 7ed5764 893e71a 1270bff 90b31da 7ed5764 7fda361 7ed5764 7fda361 7ed5764 585d48c 825e272 585d48c 7ed5764 90b31da 7fda361 7ed5764 ba37614 7ed5764 1270bff 1c8f3e0 d5f09ce fd4b8ab 7ed5764 ec23591 7ed5764 7fda361 f4eadba 7ed5764 499182c 684c4b3 90b31da 13ae1a3 556229c 893e71a 556229c 6b1217a 1270bff 499182c 556229c b3ec5b5 321802e b3ec5b5 25c9315 7734ebc 25c9315 556229c 684c4b3 556229c 7ed5764 556229c 7ed5764 556229c 7ed5764 556229c 7ed5764 b539c50 7ed5764 7fda361 7ed5764 21e70fe b539c50 7ed5764 d9aeaae fd4b8ab 7ed5764 ba37614 83c09d6 825e272 83c09d6 825e272 83c09d6 1eb900a 83c09d6 1eb900a 83c09d6 b539c50 499182c b539c50 7ed5764 1270bff 284a2da 893e71a 1270bff 893e71a 7ed5764 893e71a 7ed5764 893e71a 7ed5764 499182c 7ed5764 6ee5c9c 7ed5764 893e71a 1270bff 893e71a cac41bd 284a2da 893e71a 825e272 7fda361 90b31da 7ed5764 90b31da 13ae1a3 7fda361 684c4b3 7ed5764 7fda361 825e272 7ed5764 825e272 7ed5764 825e272 90b31da 585d48c 90b31da 7fda361 1270bff 483664b f4eadba 684c4b3 7ed5764 ba37614 7ed5764 684c4b3 499182c 7fda361 892ef10 38c7ee6 46e3932 05e02bd 7fda361 499182c 7ed5764 893e71a 7ed5764 7fda361 893e71a 7fda361 |
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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 |
// The LynxKite workspace editor.
import { getYjsDoc, syncedStore } from "@syncedstore/core";
import {
type Connection,
Controls,
type Edge,
MarkerType,
MiniMap,
type Node,
ReactFlow,
ReactFlowProvider,
type XYPosition,
applyEdgeChanges,
applyNodeChanges,
useReactFlow,
useUpdateNodeInternals,
} from "@xyflow/react";
import axios from "axios";
import { type MouseEvent, useCallback, useEffect, useMemo, useState } from "react";
import { Link } from "react-router";
import useSWR, { type Fetcher } from "swr";
import { WebsocketProvider } from "y-websocket";
// @ts-ignore
import Atom from "~icons/tabler/atom.jsx";
// @ts-ignore
import Backspace from "~icons/tabler/backspace.jsx";
// @ts-ignore
import Restart from "~icons/tabler/rotate-clockwise.jsx";
// @ts-ignore
import Close from "~icons/tabler/x.jsx";
import type { Workspace, WorkspaceNode } from "../apiTypes.ts";
import favicon from "../assets/favicon.ico";
import { usePath } from "../common.ts";
// import NodeWithTableView from './NodeWithTableView';
import EnvironmentSelector from "./EnvironmentSelector";
import LynxKiteEdge from "./LynxKiteEdge.tsx";
import { LynxKiteState } from "./LynxKiteState";
import NodeSearch, { type OpsOp, type Catalog, type Catalogs } from "./NodeSearch.tsx";
import NodeWithGraphCreationView from "./nodes/GraphCreationNode.tsx";
import NodeWithImage from "./nodes/NodeWithImage.tsx";
import NodeWithMolecule from "./nodes/NodeWithMolecule.tsx";
import NodeWithParams from "./nodes/NodeWithParams";
import NodeWithTableView from "./nodes/NodeWithTableView.tsx";
import NodeWithVisualization from "./nodes/NodeWithVisualization.tsx";
export default function (props: any) {
return (
<ReactFlowProvider>
<LynxKiteFlow {...props} />
</ReactFlowProvider>
);
}
function LynxKiteFlow() {
const updateNodeInternals = useUpdateNodeInternals();
const reactFlow = useReactFlow();
const [nodes, setNodes] = useState([] as Node[]);
const [edges, setEdges] = useState([] as Edge[]);
const path = usePath().replace(/^[/]edit[/]/, "");
const shortPath = path!
.split("/")
.pop()!
.replace(/[.]lynxkite[.]json$/, "");
const [state, setState] = useState({ workspace: {} as Workspace });
const [message, setMessage] = useState(null as string | null);
useEffect(() => {
const state = syncedStore({ workspace: {} as Workspace });
setState(state);
const doc = getYjsDoc(state);
const proto = location.protocol === "https:" ? "wss:" : "ws:";
const wsProvider = new WebsocketProvider(`${proto}//${location.host}/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;
for (const n of state.workspace.nodes) {
if (n.dragHandle !== ".bg-primary") {
n.dragHandle = ".bg-primary";
}
}
const nodes = reactFlow.getNodes();
const selection = nodes.filter((n) => n.selected).map((n) => n.id);
const newNodes = state.workspace.nodes.map((n) =>
selection.includes(n.id) ? { ...n, selected: true } : n,
);
setNodes([...newNodes] 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, updateNodeInternals]);
const onNodesChange = useCallback(
(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" &&
!Number.isNaN(ch.position.x) &&
!Number.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 === "remove") {
wnodes.splice(nodeIndex, 1);
} 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);
}
}
},
[state],
);
const onEdgesChange = useCallback(
(changes: any[]) => {
setEdges((eds) => applyEdgeChanges(changes, eds));
const wedges = state.workspace?.edges;
if (!wedges) return;
for (const ch of changes) {
const edgeIndex = wedges.findIndex((e) => e.id === ch.id);
if (ch.type === "remove") {
wedges.splice(edgeIndex, 1);
} else if (ch.type === "select") {
} else {
console.log("Unknown edge change", ch);
}
}
},
[state],
);
const fetcher: Fetcher<Catalogs> = (resource: string, init?: RequestInit) =>
fetch(resource, init).then((res) => res.json());
const catalog = useSWR(`/api/catalog?workspace=${path}`, fetcher);
const [suppressSearchUntil, setSuppressSearchUntil] = useState(0);
const [nodeSearchSettings, setNodeSearchSettings] = useState(
undefined as
| {
pos: XYPosition;
boxes: Catalog;
}
| undefined,
);
const nodeTypes = useMemo(
() => ({
basic: NodeWithParams,
visualization: NodeWithVisualization,
image: NodeWithImage,
table_view: NodeWithTableView,
graph_creation_view: NodeWithGraphCreationView,
molecule: NodeWithMolecule,
}),
[],
);
const edgeTypes = useMemo(
() => ({
default: LynxKiteEdge,
}),
[],
);
// Global keyboard shortcuts.
useEffect(() => {
const handleKeyDown = (event: KeyboardEvent) => {
// Show the node search dialog on "/".
if (nodeSearchSettings || isTypingInFormElement()) return;
if (event.key === "/") {
event.preventDefault();
setNodeSearchSettings({
pos: { x: 100, y: 100 },
boxes: catalog.data![state.workspace.env!],
});
} else if (event.key === "r") {
event.preventDefault();
executeWorkspace();
}
};
// TODO: Switch to keydown once https://github.com/xyflow/xyflow/pull/5055 is merged.
document.addEventListener("keyup", handleKeyDown);
return () => {
document.removeEventListener("keyup", handleKeyDown);
};
}, [catalog.data, nodeSearchSettings, state.workspace.env]);
function isTypingInFormElement() {
const activeElement = document.activeElement;
return (
activeElement &&
(activeElement.tagName === "INPUT" ||
activeElement.tagName === "TEXTAREA" ||
(activeElement as HTMLElement).isContentEditable)
);
}
const closeNodeSearch = useCallback(() => {
setNodeSearchSettings(undefined);
setSuppressSearchUntil(Date.now() + 200);
}, []);
const toggleNodeSearch = useCallback(
(event: MouseEvent) => {
if (suppressSearchUntil > Date.now()) return;
if (nodeSearchSettings) {
closeNodeSearch();
return;
}
event.preventDefault();
setNodeSearchSettings({
pos: { x: event.clientX, y: event.clientY },
boxes: catalog.data![state.workspace.env!],
});
},
[catalog, state, nodeSearchSettings, suppressSearchUntil, closeNodeSearch],
);
function addNode(node: Partial<WorkspaceNode>, state: { workspace: Workspace }, nodes: Node[]) {
const title = node.data?.title;
let i = 1;
node.id = `${title} ${i}`;
const wnodes = state.workspace.nodes!;
while (wnodes.find((x) => x.id === node.id)) {
i += 1;
node.id = `${title} ${i}`;
}
wnodes.push(node as WorkspaceNode);
setNodes([...nodes, node as WorkspaceNode]);
}
function nodeFromMeta(meta: OpsOp): Partial<WorkspaceNode> {
const node: Partial<WorkspaceNode> = {
type: meta.type,
data: {
meta: meta,
title: meta.name,
params: Object.fromEntries(Object.values(meta.params).map((p) => [p.name, p.default])),
},
};
return node;
}
const addNodeFromSearch = useCallback(
(meta: OpsOp) => {
const node = nodeFromMeta(meta);
const nss = nodeSearchSettings!;
node.position = reactFlow.screenToFlowPosition({
x: nss.pos.x,
y: nss.pos.y,
});
addNode(node, state, nodes);
closeNodeSearch();
},
[nodeSearchSettings, state, reactFlow, nodes, closeNodeSearch],
);
const onConnect = useCallback(
(connection: Connection) => {
setSuppressSearchUntil(Date.now() + 200);
const edge = {
id: `${connection.source} ${connection.sourceHandle} ${connection.target} ${connection.targetHandle}`,
source: connection.source,
sourceHandle: connection.sourceHandle!,
target: connection.target,
targetHandle: connection.targetHandle!,
};
state.workspace.edges!.push(edge);
setEdges((oldEdges) => [...oldEdges, edge]);
},
[state],
);
const parentDir = path!.split("/").slice(0, -1).join("/");
function onDragOver(e: React.DragEvent<HTMLDivElement>) {
e.stopPropagation();
e.preventDefault();
}
async function onDrop(e: React.DragEvent<HTMLDivElement>) {
e.stopPropagation();
e.preventDefault();
const file = e.dataTransfer.files[0];
const formData = new FormData();
formData.append("file", file);
try {
await axios.post("/api/upload", formData, {
onUploadProgress: (progressEvent) => {
const percentCompleted = Math.round((100 * progressEvent.loaded) / progressEvent.total!);
if (percentCompleted === 100) setMessage("Processing file...");
else setMessage(`Uploading ${percentCompleted}%`);
},
});
setMessage(null);
const cat = catalog.data![state.workspace.env!];
const node = nodeFromMeta(cat["Import file"]);
node.position = reactFlow.screenToFlowPosition({
x: e.clientX,
y: e.clientY,
});
node.data!.params.file_path = `uploads/${file.name}`;
if (file.name.includes(".csv")) {
node.data!.params.file_format = "csv";
} else if (file.name.includes(".parquet")) {
node.data!.params.file_format = "parquet";
} else if (file.name.includes(".json")) {
node.data!.params.file_format = "json";
} else if (file.name.includes(".xls")) {
node.data!.params.file_format = "excel";
}
addNode(node, state, nodes);
} catch (error) {
setMessage("File upload failed.");
}
}
async function executeWorkspace() {
const response = await axios.post(`/api/execute_workspace?name=${path}`);
if (response.status !== 200) {
setMessage("Workspace execution failed.");
}
}
return (
<div className="workspace">
<div className="top-bar bg-neutral">
<Link className="logo" to="/">
<img alt="" src={favicon} />
</Link>
<div className="ws-name">{shortPath}</div>
<title>{shortPath}</title>
<EnvironmentSelector
options={Object.keys(catalog.data || {})}
value={state.workspace.env!}
onChange={(env) => {
state.workspace.env = env;
}}
/>
<div className="tools text-secondary">
<button className="btn btn-link">
<Atom />
</button>
<button className="btn btn-link">
<Backspace />
</button>
<button className="btn btn-link" onClick={executeWorkspace}>
<Restart />
</button>
<Link className="btn btn-link" to={`/dir/${parentDir}`} aria-label="close">
<Close />
</Link>
</div>
</div>
<div style={{ height: "100%", width: "100vw" }} onDragOver={onDragOver} onDrop={onDrop}>
<LynxKiteState.Provider value={state}>
<ReactFlow
nodes={nodes}
edges={edges}
nodeTypes={nodeTypes}
edgeTypes={edgeTypes}
fitView
onNodesChange={onNodesChange}
onEdgesChange={onEdgesChange}
onPaneClick={toggleNodeSearch}
onConnect={onConnect}
proOptions={{ hideAttribution: true }}
maxZoom={1}
minZoom={0.2}
zoomOnScroll={false}
preventScrolling={false}
defaultEdgeOptions={{
markerEnd: {
type: MarkerType.ArrowClosed,
color: "black",
width: 15,
height: 15,
},
style: {
strokeWidth: 2,
stroke: "black",
},
}}
>
<Controls />
<MiniMap />
{nodeSearchSettings && (
<NodeSearch
pos={nodeSearchSettings.pos}
boxes={nodeSearchSettings.boxes}
onCancel={closeNodeSearch}
onAdd={addNodeFromSearch}
/>
)}
</ReactFlow>
</LynxKiteState.Provider>
{message && (
<div className="workspace-message">
<span className="close" onClick={() => setMessage(null)}>
<Close />
</span>
{message}
</div>
)}
</div>
</div>
);
}
|