-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathagents-list.tsx
More file actions
235 lines (218 loc) · 6.25 KB
/
agents-list.tsx
File metadata and controls
235 lines (218 loc) · 6.25 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
/**
* Agents List Component for Home Page
*
* Displays a compact list of agents (Virtual MCPs) with their icon and name.
* Only shows when the organization has agents.
*/
import { useChatStable } from "@/web/components/chat/context";
import {
VirtualMCPPopoverContent,
type VirtualMCPInfo,
} from "@/web/components/chat/select-virtual-mcp";
import { IntegrationIcon } from "@/web/components/integration-icon.tsx";
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "@deco/ui/components/popover.tsx";
import { Skeleton } from "@deco/ui/components/skeleton.tsx";
import { cn } from "@deco/ui/lib/utils.ts";
import {
isDecopilot,
useVirtualMCPs,
useAgentLastUsed,
} from "@decocms/mesh-sdk";
import { ChevronRight, Users03 } from "@untitledui/icons";
import { Suspense, useEffect, useRef, useState } from "react";
/**
* Individual agent preview component
*/
function AgentPreview({
agent,
}: {
agent: {
id: string;
title: string;
icon?: string | null;
};
}) {
const { setVirtualMcpId } = useChatStable();
const handleClick = () => {
// Select the agent in the chat context
setVirtualMcpId(agent.id);
};
return (
<button
type="button"
onClick={handleClick}
className={cn(
"flex flex-col items-center gap-3 p-2 rounded-lg",
"transition-colors hover:bg-accent/30",
"cursor-pointer",
"self-stretch",
)}
aria-label={`Select agent ${agent.title}`}
>
<IntegrationIcon
icon={agent.icon}
name={agent.title}
fallbackIcon={<Users03 size={20} />}
/>
<p className="text-sm text-foreground text-center leading-tight line-clamp-2">
{agent.title}
</p>
</button>
);
}
/**
* See All button component
*/
function SeeAllButton({
virtualMcps,
selectedVirtualMcpId,
onVirtualMcpChange,
}: {
virtualMcps: VirtualMCPInfo[];
selectedVirtualMcpId?: string | null;
onVirtualMcpChange: (virtualMcpId: string | null) => void;
}) {
const [open, setOpen] = useState(false);
const searchInputRef = useRef<HTMLInputElement>(null);
// Focus search input when popover opens
// oxlint-disable-next-line ban-use-effect/ban-use-effect
useEffect(() => {
if (open) {
setTimeout(() => {
searchInputRef.current?.focus();
}, 0);
}
}, [open]);
const handleVirtualMcpChange = (virtualMcpId: string | null) => {
onVirtualMcpChange(virtualMcpId);
setOpen(false);
};
return (
<Popover open={open} onOpenChange={setOpen}>
<PopoverTrigger asChild>
<button
type="button"
className={cn(
"flex flex-col items-center gap-3 p-2 rounded-lg",
"transition-colors hover:bg-accent/30",
"cursor-pointer",
"self-stretch",
)}
aria-label="See all agents"
>
<div className="size-12 rounded-lg bg-accent flex items-center justify-center shrink-0">
<ChevronRight size={24} className="text-foreground" />
</div>
<p className="text-sm text-foreground text-center leading-tight">
See all
</p>
</button>
</PopoverTrigger>
<PopoverContent
className="w-[550px] p-0 overflow-hidden"
align="start"
side="top"
sideOffset={8}
>
<VirtualMCPPopoverContent
virtualMcps={virtualMcps}
selectedVirtualMcpId={selectedVirtualMcpId}
onVirtualMcpChange={handleVirtualMcpChange}
searchInputRef={searchInputRef}
/>
</PopoverContent>
</Popover>
);
}
/**
* Agents list content component
*/
function AgentsListContent() {
const virtualMcps = useVirtualMCPs();
const { selectedVirtualMcp, setVirtualMcpId } = useChatStable();
const nonDecopilotAgents = virtualMcps.filter(
(agent): agent is typeof agent & { id: string } =>
agent.id !== null && !isDecopilot(agent.id),
);
const agentIds = nonDecopilotAgents.map((a) => a.id);
const lastUsedMap = useAgentLastUsed(agentIds);
// Sort by actual last usage (most recent first), then by updated_at as fallback
const agents = [...nonDecopilotAgents]
.sort((a, b) => {
const aUsed = lastUsedMap[a.id];
const bUsed = lastUsedMap[b.id];
if (aUsed && bUsed)
return new Date(bUsed).getTime() - new Date(aUsed).getTime();
if (aUsed && !bUsed) return -1;
if (!aUsed && bUsed) return 1;
const aUpdated = a.updated_at ?? a.created_at;
const bUpdated = b.updated_at ?? b.created_at;
if (aUpdated && bUpdated)
return new Date(bUpdated).getTime() - new Date(aUpdated).getTime();
return 0;
})
.slice(0, 6);
// Don't render if no agents
if (agents.length === 0) {
return null;
}
// Convert to VirtualMCPInfo format
const virtualMcpsInfo: VirtualMCPInfo[] = virtualMcps.map((agent) => ({
id: agent.id,
title: agent.title,
description: agent.description,
icon: agent.icon,
}));
return (
<div className="w-full max-w-[800px]">
<h2 className="text-sm font-medium text-muted-foreground mb-4">
Recently used agents
</h2>
<div className="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-7 gap-2">
{agents.map((agent) => (
<AgentPreview key={agent.id ?? "default"} agent={agent} />
))}
<SeeAllButton
virtualMcps={virtualMcpsInfo}
selectedVirtualMcpId={selectedVirtualMcp?.id ?? null}
onVirtualMcpChange={setVirtualMcpId}
/>
</div>
</div>
);
}
/**
* Skeleton loader for agents list
*/
function AgentsListSkeleton() {
return (
<div className="w-full max-w-[800px]">
<Skeleton className="h-5 w-40 mb-4" />
<div className="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-7 gap-2">
{Array.from({ length: 7 }).map((_, i) => (
<div
key={i}
className="flex flex-col items-center gap-3 p-2 self-stretch"
>
<Skeleton className="size-6 rounded-md shrink-0" />
<Skeleton className="h-4 w-full" />
</div>
))}
</div>
</div>
);
}
/**
* Agents list component with Suspense boundary
*/
export function AgentsList() {
return (
<Suspense fallback={<AgentsListSkeleton />}>
<AgentsListContent />
</Suspense>
);
}