-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputNode.jsx
54 lines (51 loc) · 1.7 KB
/
inputNode.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
import { useMemo, useState } from "react"
import { Position } from "reactflow"
import { FileInput } from "lucide-react"
import { BaseNode } from "./baseNode"
export const InputNode = ({ id, data }) => {
const [fieldName, setFieldName] = useState(data?.fieldName || `input_${id}`)
const [type, setType] = useState(data?.type || "Text")
const handles = useMemo(
() => [
{
id: `${id}-output`,
type: "source",
position: Position.Right,
label: fieldName,
},
],
[id, fieldName]
)
return (
<BaseNode
label={data?.label || "Input"}
icon={FileInput}
handles={handles}
onDelete={() => data?.onDelete(id)}
>
<div className="space-y-4">
<div className="space-y-1.5">
<label className="text-sm text-gray-600">Field Name</label>
<input
type="text"
value={fieldName}
onChange={(e) => setFieldName(e.target.value)}
className="w-full rounded-md border border-gray-200 bg-white px-3 py-1.5 text-sm text-gray-900 shadow-sm focus:border-[#818cf8] focus:outline-none"
/>
</div>
<div className="space-y-1.5">
<label className="text-sm text-gray-600">Type</label>
<select
value={type}
onChange={(e) => setType(e.target.value)}
className="w-full rounded-md border border-gray-200 bg-white px-3 py-1.5 text-sm text-gray-900 shadow-sm focus:border-[#818cf8] focus:outline-none"
>
<option value="Text">Text</option>
<option value="File">File</option>
<option value="Audio">Audio</option>
</select>
</div>
</div>
</BaseNode>
)
}