-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.jsx
144 lines (128 loc) · 3.61 KB
/
ui.jsx
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
// ui.js
// Displays the drag-and-drop UI
// --------------------------------------------------
import { useState, useRef, useCallback } from "react"
import ReactFlow, { Controls, Background, MiniMap } from "reactflow"
import { useStore } from "./store"
import { shallow } from "zustand/shallow"
import {
InputNode,
OutputNode,
TextNode,
LLMNode,
TextToFileNode,
FileSaveNode,
} from "./nodes"
import { CustomEdge } from "./edges/customEdge"
import "reactflow/dist/style.css"
const gridSize = 25
const proOptions = { hideAttribution: true }
const nodeTypes = {
customInput: InputNode,
customOutput: OutputNode,
text: TextNode,
llm: LLMNode,
textToFile: TextToFileNode,
fileSave: FileSaveNode,
}
const edgeTypes = {
custom: CustomEdge,
}
const selector = (state) => ({
nodes: state.nodes,
edges: state.edges,
getNodeID: state.getNodeID,
addNode: state.addNode,
removeNode: state.removeNode,
onNodesChange: state.onNodesChange,
onEdgesChange: state.onEdgesChange,
onConnect: state.onConnect,
})
export const PipelineUI = () => {
const reactFlowWrapper = useRef(null)
const [reactFlowInstance, setReactFlowInstance] = useState(null)
const {
nodes,
edges,
getNodeID,
addNode,
removeNode,
onNodesChange,
onEdgesChange,
onConnect,
} = useStore(selector, shallow)
const getInitNodeData = useCallback(
(nodeID, type, label) => {
let nodeData = {
id: nodeID,
label: label,
nodeType: `${type}`,
onDelete: removeNode,
}
return nodeData
},
[removeNode]
)
const onDrop = useCallback(
(event) => {
event.preventDefault()
const reactFlowBounds = reactFlowWrapper.current.getBoundingClientRect()
if (event?.dataTransfer?.getData("application/reactflow")) {
const appData = JSON.parse(
event.dataTransfer.getData("application/reactflow")
)
const type = appData?.nodeType
const label = appData?.label
// check if the dropped element is valid
if (typeof type === "undefined" || !type) {
return
}
const position = reactFlowInstance.project({
x: event.clientX - reactFlowBounds.left,
y: event.clientY - reactFlowBounds.top,
})
const nodeID = getNodeID(type)
const newNode = {
id: nodeID,
type,
position,
data: getInitNodeData(nodeID, type, label),
}
addNode(newNode)
}
},
[addNode, getNodeID, reactFlowInstance, getInitNodeData]
)
const onDragOver = useCallback((event) => {
event.preventDefault()
event.dataTransfer.dropEffect = "move"
}, [])
return (
<div className="flex flex-1 p-4 bg-[#fafafa]">
<div
ref={reactFlowWrapper}
className=" flex flex-1 rounded-xl shadow-sm bg-white overflow-hidden"
>
<ReactFlow
nodes={nodes}
edges={edges}
onNodesChange={onNodesChange}
onEdgesChange={onEdgesChange}
onConnect={onConnect}
onDrop={onDrop}
onDragOver={onDragOver}
onInit={setReactFlowInstance}
nodeTypes={nodeTypes}
edgeTypes={edgeTypes}
proOptions={proOptions}
snapGrid={[gridSize, gridSize]}
connectionLineType="smoothstep"
>
<Background color="#e5e5e5" gap={gridSize} size={3} variant="dots" />
<Controls className="!bg-white !border !border-gray-200 !shadow-sm !rounded-lg" />
<MiniMap className="!bg-white !border !border-gray-200 !shadow-sm !rounded-lg" />
</ReactFlow>
</div>
</div>
)
}