forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuse-tree.ts
More file actions
222 lines (191 loc) · 5.36 KB
/
Copy pathuse-tree.ts
File metadata and controls
222 lines (191 loc) · 5.36 KB
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
import { randomId } from "@copilotkit/shared";
import { useCallback, useReducer } from "react";
export type TreeNodeId = string;
export interface TreeNode {
id: TreeNodeId;
value: string;
children: TreeNode[];
parentId?: TreeNodeId;
categories: Set<string>;
}
export type Tree = TreeNode[];
export interface UseTreeReturn {
tree: Tree;
addElement: (
value: string,
categories: string[],
parentId?: TreeNodeId,
) => TreeNodeId;
printTree: (categories: string[]) => string;
removeElement: (id: TreeNodeId) => void;
getAllElements: () => Tree;
}
const findNode = (nodes: Tree, id: TreeNodeId): TreeNode | undefined => {
for (const node of nodes) {
if (node.id === id) {
return node;
}
const result = findNode(node.children, id);
if (result) {
return result;
}
}
return undefined;
};
const removeNode = (nodes: Tree, id: TreeNodeId): Tree => {
return nodes.reduce((result: Tree, node) => {
if (node.id !== id) {
const newNode = { ...node, children: removeNode(node.children, id) };
result.push(newNode);
}
return result;
}, []);
};
const addNode = (
nodes: Tree,
newNode: TreeNode,
parentId?: TreeNodeId,
): Tree => {
if (!parentId) {
return [...nodes, newNode];
}
return nodes.map((node) => {
if (node.id === parentId) {
return { ...node, children: [...node.children, newNode] };
} else if (node.children.length) {
return { ...node, children: addNode(node.children, newNode, parentId) };
}
return node;
});
};
const treeIndentationRepresentation = (
index: number,
indentLevel: number,
): string => {
if (indentLevel === 0) {
return (index + 1).toString();
} else if (indentLevel === 1) {
return String.fromCharCode(65 + index); // 65 is the ASCII value for 'A'
} else if (indentLevel === 2) {
return String.fromCharCode(97 + index); // 97 is the ASCII value for 'a'
} else {
return "-";
}
};
const printNode = (node: TreeNode, prefix = "", indentLevel = 0): string => {
const indent = " ".repeat(3).repeat(indentLevel);
const prefixPlusIndentLength = prefix.length + indent.length;
const subsequentLinesPrefix = " ".repeat(prefixPlusIndentLength);
const valueLines = node.value.split("\n");
const outputFirstLine = `${indent}${prefix}${valueLines[0]}`;
const outputSubsequentLines = valueLines
.slice(1)
.map((line) => `${subsequentLinesPrefix}${line}`)
.join("\n");
let output = `${outputFirstLine}\n`;
if (outputSubsequentLines) {
output += `${outputSubsequentLines}\n`;
}
const childPrePrefix = " ".repeat(prefix.length);
node.children.forEach(
(child, index) =>
(output += printNode(
child,
`${childPrePrefix}${treeIndentationRepresentation(index, indentLevel + 1)}. `,
indentLevel + 1,
)),
);
return output;
};
// Action types
type Action =
| {
type: "ADD_NODE";
value: string;
parentId?: string;
id: string;
categories: string[];
}
| { type: "REMOVE_NODE"; id: string };
// Reducer function
function treeReducer(state: Tree, action: Action): Tree {
switch (action.type) {
case "ADD_NODE": {
const { value, parentId, id: newNodeId } = action;
const newNode: TreeNode = {
id: newNodeId,
value,
children: [],
categories: new Set(action.categories),
};
try {
return addNode(state, newNode, parentId);
} catch (error) {
console.error(`Error while adding node with id ${newNodeId}: ${error}`);
return state;
}
}
case "REMOVE_NODE":
return removeNode(state, action.id);
default:
return state;
}
}
// useTree hook
const useTree = (): UseTreeReturn => {
const [tree, dispatch] = useReducer(treeReducer, []);
const addElement = useCallback(
(value: string, categories: string[], parentId?: string): TreeNodeId => {
const newNodeId = randomId(); // Generate new ID outside of dispatch
dispatch({
type: "ADD_NODE",
value,
parentId,
id: newNodeId,
categories: categories,
});
return newNodeId; // Return the new ID
},
[],
);
const removeElement = useCallback((id: TreeNodeId): void => {
dispatch({ type: "REMOVE_NODE", id });
}, []);
const getAllElements = useCallback(() => {
return tree;
}, [tree]);
const printTree = useCallback(
(categories: string[]): string => {
const categoriesSet = new Set(categories);
let output = "";
tree.forEach((node, index) => {
// if the node does not have any of the desired categories, continue to the next node
if (!setsHaveIntersection(categoriesSet, node.categories)) {
return;
}
// add a new line before each node except the first one
if (index !== 0) {
output += "\n";
}
output += printNode(
node,
`${treeIndentationRepresentation(index, 0)}. `,
);
});
return output;
},
[tree],
);
return { tree, addElement, printTree, removeElement, getAllElements };
};
export default useTree;
function setsHaveIntersection<T>(setA: Set<T>, setB: Set<T>): boolean {
const [smallerSet, largerSet] =
setA.size <= setB.size ? [setA, setB] : [setB, setA];
for (let item of smallerSet) {
if (largerSet.has(item)) {
return true;
}
}
return false;
}