forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubdocs-menu.tsx
More file actions
288 lines (265 loc) · 7.02 KB
/
Copy pathsubdocs-menu.tsx
File metadata and controls
288 lines (265 loc) · 7.02 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
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
283
284
285
286
287
288
"use client";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select";
import { cn } from "@/lib/utils";
import { useSidebar } from "fumadocs-ui/provider";
import Link from "next/link";
import { usePathname, useRouter } from "next/navigation";
import {
type HTMLAttributes,
type ReactNode,
useCallback,
useMemo,
useRef,
} from "react";
import { PiGraph } from "react-icons/pi";
export function isActive(
url: string,
pathname: string,
nested = true,
root = false
): boolean {
const isActive =
url === pathname || (nested && pathname.startsWith(root ? url : `${url}/`));
return isActive;
}
export interface Option {
/**
* Redirect URL of the folder, usually the index page
*/
url: string;
icon?: ReactNode;
title: ReactNode;
description?: ReactNode;
bgGradient: string;
selectedStyle?: string;
props?: HTMLAttributes<HTMLElement>;
}
export interface OptionDropdown {
title: ReactNode;
options: Option[];
}
function isOptionDropdown(
item: Option | OptionDropdown
): item is OptionDropdown {
return "options" in item;
}
function isOption(item: Option | OptionDropdown): item is Option {
return !isOptionDropdown(item);
}
export function SubdocsMenu({
options,
...props
}: {
options: (Option | OptionDropdown)[];
} & HTMLAttributes<HTMLButtonElement>): React.ReactElement {
const { closeOnRedirect } = useSidebar();
const pathname = usePathname();
const selected: Option | undefined = useMemo(() => {
// First, try all non-root options
let nonRootOptions = options.filter(
(item) => isOption(item) && item.url !== "/"
);
const dropDowns = options.filter((item) => isOptionDropdown(item));
if (dropDowns.length > 0) {
const dropDown = dropDowns[0];
nonRootOptions = nonRootOptions.concat(dropDown.options);
}
const activeNonRootOption = nonRootOptions.find(
(item) => isOption(item) && isActive(item.url, pathname, true)
);
if (activeNonRootOption) {
return activeNonRootOption as Option;
}
// If no non-root options are active, try the root options ("/*")
return options.find(
(item) => isOption(item) && isActive(item.url, pathname, true, true)
) as Option | undefined;
}, [options, pathname]);
const onClick = useCallback(() => {
closeOnRedirect.current = false;
}, [closeOnRedirect]);
return (
<div className="flex flex-col gap-2 border-b p-4">
{options.map((item) => (
<SubdocsMenuItem
key={isOption(item) ? item.url : "dropdown"}
item={item}
selected={selected}
onClick={onClick}
/>
))}
</div>
);
}
function SubdocsMenuItem({
item,
selected,
onClick,
}: {
item: Option | OptionDropdown;
selected?: Option;
onClick?: () => void;
}) {
if (isOption(item)) {
return (
<Link
key={item.url}
href={item.url}
onClick={onClick}
{...item.props}
className={cn(
"p-2 flex flex-row gap-3 items-center cursor-pointer group opacity-60 hover:opacity-100",
item.props?.className,
selected === item && `${item.selectedStyle} opacity-100`
)}
>
<div
className={cn(
"rounded-sm p-1.5",
item.bgGradient,
selected !== item && ""
)}
>
{item.icon}
</div>
<div className="font-medium">{item.title}</div>
</Link>
);
} else if (isOptionDropdown(item)) {
return (
<SubdocsMenuItemDropdown
item={item}
selected={selected}
onClick={onClick}
/>
);
}
}
function SubdocsMenuItemAgentFramework({
item,
selected,
onClick,
}: {
item: OptionDropdown;
selected?: Option;
onClick?: () => void;
}) {
const defaultOption = item.options.find(
(option) => option.url === "/coagents"
)!;
const isSelected = item.options.find(
(option) => option.url === selected?.url
);
const showOption =
item.options.find((option) => option.url === selected?.url) ||
defaultOption;
return (
<Link
key={showOption.url}
href={showOption.url}
onClick={onClick}
{...showOption.props}
className={cn(
"p-2 flex flex-row gap-3 items-center cursor-pointer group opacity-60 hover:opacity-100",
showOption.props?.className,
isSelected && `${showOption.selectedStyle} opacity-100`
)}
>
<div
className={cn(
"rounded-sm p-1.5",
showOption.bgGradient,
isSelected && ""
)}
>
{showOption.icon}
</div>
<div className="font-medium">{showOption.title}</div>
</Link>
);
}
function SubdocsMenuItemDropdown({
item,
selected,
onClick,
}: {
item: OptionDropdown;
selected?: Option;
onClick?: () => void;
}) {
const router = useRouter();
const selectRef = useRef(null);
const selectedOption = item.options.find(
(option) => option.url === selected?.url
);
const isSelected = selectedOption !== undefined;
return (
<div className="w-full">
<Select
onValueChange={(url) => {
router.push(url);
onClick?.();
if (selectRef.current) {
setTimeout(() => {
(selectRef.current as any).blur();
}, 10);
}
}}
value={selectedOption?.url}
>
<SelectTrigger
className={cn(
"pl-2 py-2 border-0 h-auto flex gap-3 items-center w-full",
isSelected
? `${
selectedOption?.selectedStyle ||
"ring-purple-500/70 ring-2 rounded-sm"
} opacity-100`
: "ring-0 opacity-60 hover:opacity-100"
)}
ref={selectRef}
>
<SelectValue
placeholder={
<div className="flex items-center">
<div className={cn("rounded-sm p-1.5 mr-2")}>
{selectedOption?.icon || (
<PiGraph
className={cn(
"w-5 h-5 text-bold bg-gradient-to-b rounded-sm",
"from-purple-700 to-purple-400 text-purple-100 inline-block"
)}
/>
)}
</div>
<div className="font-medium">{item.title}</div>
</div>
}
/>
</SelectTrigger>
<SelectContent className="p-1">
{item.options.map((option) => (
<SelectItem
key={option.url}
value={option.url}
className="py-2 px-2 cursor-pointer focus:bg-accent focus:text-accent-foreground"
>
<div className="flex items-center">
<div className={cn("rounded-sm p-1.5 mr-2", option.bgGradient)}>
{option.icon}
</div>
<span className="font-medium">{option.title}</span>
</div>
</SelectItem>
))}
</SelectContent>
</Select>
</div>
);
}