File size: 7,724 Bytes
05c5ed5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"use client";

import { useReactFlow } from "@xyflow/react";
import { UINode } from "lib/ai/workflow/workflow.interface";
import { ChevronRightIcon, SearchIcon, VariableIcon } from "lucide-react";
import { ReactNode, useMemo, useRef, useState } from "react";
import {
  DropdownMenu,
  DropdownMenuContent,
  DropdownMenuGroup,
  DropdownMenuItem,
  DropdownMenuLabel,
  DropdownMenuPortal,
  DropdownMenuSeparator,
  DropdownMenuSub,
  DropdownMenuSubContent,
  DropdownMenuSubTrigger,
  DropdownMenuTrigger,
} from "ui/dropdown-menu";
import { Input } from "ui/input";

import { JSONSchema7 } from "json-schema";
import { findAccessibleNodeIds } from "lib/ai/workflow/shared.workflow";
import { cn } from "lib/utils";
import { useTranslations } from "next-intl";

interface VariableSelectProps {
  currentNodeId: string;
  allowedTypes?: string[];
  children: React.ReactNode;
  onChange: (item: {
    nodeId: string;
    path: string[];
    nodeName: string;
    type: string;
  }) => void;
}

export function VariableSelect({
  currentNodeId,
  onChange,
  children,
  allowedTypes,
}: VariableSelectProps) {
  const [open, setOpen] = useState(false);
  return (
    <DropdownMenu open={open} onOpenChange={setOpen}>
      <DropdownMenuTrigger asChild>{children}</DropdownMenuTrigger>
      <DropdownMenuContent className="w-72">
        <VariableSelectContent
          currentNodeId={currentNodeId}
          allowedTypes={allowedTypes}
          onClose={() => {
            setOpen(false);
          }}
          onChange={(item) => {
            onChange(item);
            setOpen(false);
          }}
        />
      </DropdownMenuContent>
    </DropdownMenu>
  );
}

export function VariableSelectContent({
  currentNodeId,
  onChange,
  allowedTypes,
  onClose,
}: Omit<VariableSelectProps, "children"> & {
  onClose?: () => void;
}) {
  const [query, setQuery] = useState("");
  const { getNodes, getEdges } = useReactFlow<UINode>();
  const nodes = getNodes();
  const edges = getEdges();
  const t = useTranslations();
  const firstNodeRef = useRef<HTMLDivElement>(null);

  const accessibleSchemas = useMemo(() => {
    const accessibleNodes = findAccessibleNodeIds({
      nodeId: currentNodeId,
      nodes: nodes.map((node) => node.data),
      edges,
    });
    return nodes
      .filter((node) => accessibleNodes.includes(node.id))
      .map((node) => {
        return {
          id: node.data.id,
          name: node.data.name,
          schema: node.data.outputSchema?.properties,
          kind: node.data.kind,
        };
      })
      .filter((v) => {
        return v.schema && Object.keys(v.schema).length;
      });
  }, [nodes, currentNodeId, edges]);

  const filteredNodes = useMemo<ReactNode[]>(() => {
    const first = [firstNodeRef];
    return accessibleSchemas
      .map(({ name, id, schema }) => {
        const items = Array.from(Object.entries(schema ?? {}))
          .filter(([key]) => key.includes(query))
          .map(([key, schema]) => {
            const ref = first.shift()!;
            return (
              <SchemaItem
                ref={ref}
                key={key}
                name={key}
                schema={schema}
                allowedTypes={allowedTypes}
                path={[]}
                onChange={(path) => {
                  onChange({
                    nodeId: id,
                    path,
                    nodeName: name,
                    type: schema.type as string,
                  });
                }}
              />
            );
          });

        if (!items.length) return null;

        return (
          <DropdownMenuGroup key={id}>
            <DropdownMenuLabel className="text-xs text-muted-foreground flex items-center gap-1">
              {name}
            </DropdownMenuLabel>
            {items}
          </DropdownMenuGroup>
        );
      })
      .filter(Boolean);
  }, [accessibleSchemas, query]);
  return (
    <div className="flex flex-col w-full">
      <div
        className="flex items-center gap-1 px-2"
        onKeyDown={(e) => {
          e.stopPropagation();
        }}
      >
        <SearchIcon className="size-4 text-muted-foreground" />
        <Input
          autoFocus
          className="border-none bg-transparent w-full"
          placeholder={t("Common.search")}
          value={query}
          onKeyDown={(e) => {
            if (e.key === "Escape") {
              onClose?.();
            }
            if (e.key === "Backspace" && query.length === 0) {
              onClose?.();
            }
            if (e.key === "ArrowDown") {
              firstNodeRef.current?.focus();
            }
          }}
          onChange={(e) => {
            e.stopPropagation();
            setQuery(e.target.value);
          }}
        />
      </div>
      <DropdownMenuSeparator />
      <div className="max-h-[50vh] overflow-y-auto flex flex-col">
        {nodes.length === 0 || filteredNodes.length === 0 ? (
          <div className="flex items-center justify-center h-full">
            <p className="text-muted-foreground py-4 text-xs">
              {t("Workflow.noVariablesFound")}
            </p>
          </div>
        ) : (
          filteredNodes
        )}
      </div>
    </div>
  );
}

function SchemaItem({
  name,
  schema,
  path,
  onChange,
  allowedTypes,
  ref,
}: {
  name: string;
  schema: JSONSchema7;
  path: string[];
  ref?: React.RefObject<HTMLDivElement | null>;
  allowedTypes?: string[];
  onChange: (path: string[]) => void;
}) {
  const disabled = useMemo(() => {
    return (
      allowedTypes?.length && !allowedTypes.includes(schema.type as string)
    );
  }, [allowedTypes, schema.type]);

  if (
    schema.type === "object" &&
    schema.properties &&
    Object.keys(schema.properties).length > 0
  ) {
    return (
      <DropdownMenuSub>
        <DropdownMenuSubTrigger
          ref={ref}
          onClick={() => {
            if (disabled) return;
            onChange([...path, name]);
          }}
          icon={
            <>
              <span className="text-xs text-muted-foreground ml-auto">
                {schema.type}
              </span>
              <ChevronRightIcon className="size-4 text-muted-foreground" />
            </>
          }
          className="text-xs text-muted-foreground flex items-center gap-1"
        >
          <VariableIcon className="size-4 text-blue-500" />
          <span
            className={cn(
              "text-foreground ml-1 truncate",
              disabled && "text-muted-foreground",
            )}
          >
            {name}
          </span>
        </DropdownMenuSubTrigger>
        <DropdownMenuPortal>
          <DropdownMenuSubContent className="md:max-h-96 overflow-y-auto">
            {Object.entries(schema.properties ?? {}).map(([key, schema]) => {
              return (
                <SchemaItem
                  key={key}
                  name={key}
                  allowedTypes={allowedTypes}
                  schema={schema as JSONSchema7}
                  path={[...path, name]}
                  onChange={onChange}
                />
              );
            })}
          </DropdownMenuSubContent>
        </DropdownMenuPortal>
      </DropdownMenuSub>
    );
  }

  return (
    <DropdownMenuItem
      ref={ref}
      disabled={!!disabled}
      onClick={() => {
        if (disabled) return;
        onChange([...path, name]);
      }}
    >
      <VariableIcon className="size-4 text-blue-500" />
      <span className="truncate">{name}</span>
      <span className="text-xs text-muted-foreground ml-auto">
        {schema.type}
      </span>
      <div className="w-4" />
    </DropdownMenuItem>
  );
}