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
418 lines (377 loc) · 11.3 KB
/
Copy pathsubdocs-menu.tsx
File metadata and controls
418 lines (377 loc) · 11.3 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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
"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,
useEffect,
useMemo,
useRef,
useState,
} from "react";
import { PiGraph } from "react-icons/pi";
import { BoxesIcon } from "lucide-react";
// localStorage utilities for managing user's connection type preference
const STORAGE_KEY = "copilotkit-nav-preference";
function getStoredNavPreference(): string | null {
if (typeof window === "undefined") return null;
try {
return localStorage.getItem(STORAGE_KEY);
} catch {
return null;
}
}
function setStoredNavPreference(url: string): void {
if (typeof window === "undefined") return;
try {
localStorage.setItem(STORAGE_KEY, url);
} catch {
// Ignore localStorage errors
}
}
export function isActive(
url: string,
pathname: string,
nested = true,
root = false
): boolean {
// Exact match
if (url === pathname) return true;
// For nested matching
if (nested) {
// Special handling for root URL
if (root && url === "/") {
return pathname === "/";
}
// For non-root URLs, check if pathname starts with the URL followed by a slash
// This ensures /direct-to-llm/guides/quickstart matches /direct-to-llm/guides/frontend-actions
if (url !== "/" && pathname.startsWith(`${url}/`)) {
return true;
}
// Special case for direct-to-llm: if the option URL is /direct-to-llm/guides/quickstart
// and the current path is anywhere under /direct-to-llm/, consider it active
if (url.includes('/direct-to-llm/') && pathname.startsWith('/direct-to-llm/')) {
return true;
}
}
return false;
}
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[];
}
export interface Separator {
type: 'separator';
}
export interface Label {
type: 'label';
text: string;
}
function isOptionDropdown(
item: Option | OptionDropdown | Separator | Label
): item is OptionDropdown {
return "options" in item;
}
function isOption(item: Option | OptionDropdown | Separator | Label): item is Option {
return !isOptionDropdown(item) && !isSeparator(item) && !isLabel(item);
}
function isSeparator(item: Option | OptionDropdown | Separator | Label): item is Separator {
return (item as Separator).type === 'separator';
}
function isLabel(item: Option | OptionDropdown | Separator | Label): item is Label {
return (item as Label).type === 'label';
}
export function SubdocsMenu({
options,
...props
}: {
options: (Option | OptionDropdown | Separator | Label)[];
} & HTMLAttributes<HTMLButtonElement>): React.ReactElement {
const { closeOnRedirect } = useSidebar();
const pathname = usePathname();
// State for tracking user's explicit navigation preference
const [storedPreference, setStoredPreference] = useState<string | null>(null);
const [isInitialized, setIsInitialized] = useState(false);
// Load stored preference on mount
useEffect(() => {
const preference = getStoredNavPreference();
setStoredPreference(preference);
setIsInitialized(true);
}, []);
const selected: Option | undefined = useMemo(() => {
// Don't calculate selection until we've loaded the stored preference
if (!isInitialized) return undefined;
// Get all available options for easier searching
const allOptions = options.filter(isOption) as Option[];
const dropDowns = options.filter((item) => isOptionDropdown(item)) as OptionDropdown[];
let dropdownOptions: Option[] = [];
if (dropDowns.length > 0) {
const dropDown = dropDowns[0];
dropdownOptions = dropDown.options;
}
// PRIORITY 1: Check if current pathname matches any option (highest priority)
const activeDropdownOption = dropdownOptions.find(
(item) => isActive(item.url, pathname, true)
);
if (activeDropdownOption) {
return activeDropdownOption;
}
const activeMainOption = allOptions.find(
(item) => isActive(item.url, pathname, true, item.url === "/")
);
if (activeMainOption) {
return activeMainOption;
}
// PRIORITY 2: If no current pathname match, check stored preference
if (storedPreference) {
// Check if stored preference matches any main option
const storedOption = allOptions.find(option => option.url === storedPreference);
if (storedOption) {
return storedOption;
}
// Check if stored preference matches any dropdown option
const storedDropdownOption = dropdownOptions.find(option => option.url === storedPreference);
if (storedDropdownOption) {
return storedDropdownOption;
}
}
// Default fallback
return undefined;
}, [options, pathname, storedPreference, isInitialized]);
// Handle explicit upper nav clicks to store preference
const handleExplicitNavClick = useCallback((url: string) => {
setStoredNavPreference(url);
setStoredPreference(url);
closeOnRedirect.current = false;
}, []);
const onClick = useCallback(() => {
closeOnRedirect.current = false;
}, [closeOnRedirect]);
return (
<div className="flex flex-col gap-2 border-b p-4">
{options.map((item, index) => {
if (isSeparator(item)) {
return <hr key={`separator-${index}`} className="my-2 border-t border-gray-700" />;
} else if (isLabel(item)) {
return (
<div key={`label-${index}`} className="px-2 py-1 text-xs font-semibold text-gray-400 uppercase tracking-wider">
{item.text}
</div>
);
} else {
return (
<SubdocsMenuItem
key={isOption(item) ? item.url : "dropdown"}
item={item}
selected={selected}
onClick={onClick}
onExplicitClick={handleExplicitNavClick}
/>
);
}
})}
</div>
);
}
function SubdocsMenuItem({
item,
selected,
onClick,
onExplicitClick,
}: {
item: Option | OptionDropdown;
selected?: Option;
onClick?: () => void;
onExplicitClick?: (url: string) => void;
}) {
if (isOption(item)) {
return (
<Link
key={item.url}
href={item.url}
onClick={() => {
onClick?.();
onExplicitClick?.(item.url);
}}
{...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}
onExplicitClick={onExplicitClick}
/>
);
}
}
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,
onExplicitClick,
}: {
item: OptionDropdown;
selected?: Option;
onClick?: () => void;
onExplicitClick?: (url: string) => void;
}) {
const router = useRouter();
const selectRef = useRef(null);
const pathname = usePathname();
const selectedOption = item.options.find(
(option) => option.url === selected?.url
);
// Check if we're on a page that should reset the dropdown
const topLevelPages = ["/", "/reference"];
const shouldResetDropdown = topLevelPages.some(page =>
page === "/" ? pathname === "/" : pathname.startsWith(page)
);
const isSelected = selectedOption !== undefined && !shouldResetDropdown;
return (
<div className="w-full">
<Select
key={shouldResetDropdown ? "reset" : "normal"}
onValueChange={(url) => {
router.push(url);
onClick?.();
onExplicitClick?.(url);
if (selectRef.current) {
setTimeout(() => {
(selectRef.current as any).blur();
}, 10);
}
}}
value={shouldResetDropdown ? undefined : 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 && "bg-gradient-to-b from-cyan-700 to-cyan-400 text-cyan-100")}>
{selectedOption?.icon || (
<BoxesIcon
className="w-4 h-4"
style={{ fontSize: '16px', width: '16px', height: '16px' }}
/>
)}
</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>
);
}