-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathConcat.tsx
101 lines (94 loc) · 2.17 KB
/
Concat.tsx
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
/* eslint-disable @next/next/no-img-element */
import { Play, Trash2, Unlock, Lock } from "lucide-react";
import { memo, useEffect } from "react";
import {
Handle,
Position,
NodeProps,
NodeToolbar,
getIncomers,
getConnectedEdges,
useUpdateNodeInternals,
Node,
} from "reactflow";
import "reactflow/dist/style.css";
import { Nodes } from ".";
import { Label } from "../Label";
import {
Output,
Outputs,
Panel,
TextVariable,
Toolbar,
ToolButton,
Variables,
} from "../Node";
export type Concat = NodeProps<{
locked: boolean;
running: boolean;
repeating: boolean;
input: {
first: string;
second: string;
};
output: {
final: string;
};
}>;
export function Concat(node: Concat) {
const { editNode, deleteNode, nodes, edges } = Nodes.use((state) => ({
editNode: state.editNode,
deleteNode: state.deleteNode,
nodes: state.nodes,
edges: state.edges,
}));
return (
<Panel name="Concat" running={node.data.running} selected={node.selected}>
<Toolbar show={node.selected}>
<ToolButton
onClick={() =>
editNode(node.id, {
locked: !node.data.locked,
})
}
active={node.data.locked}
>
{node.data.locked ? <Lock size={16} /> : <Unlock size={16} />}
</ToolButton>
<ToolButton onClick={() => deleteNode(node.id)}>
<Trash2 size={16} />
</ToolButton>
</Toolbar>
<Variables>
<TextVariable
name="first"
value={node.data.input.first || ""}
label="String A"
nodeID={node.id}
/>
<TextVariable
name="second"
value={node.data.input.second || ""}
label="String B"
nodeID={node.id}
/>
</Variables>
<Outputs>
<Output
label="Concatenated String"
name="final"
nodeID={node.id}
type="string"
/>
</Outputs>
</Panel>
);
}
export namespace Concat {
export async function run(node: Node): Promise<any> {
return {
final: node.data.input.first + node.data.input.second,
};
}
export const Memo = memo(Concat);
}