@agent-relay/dashboard 2.0.80 → 2.0.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (244) hide show
  1. package/out/404.html +1 -1
  2. package/out/_next/static/chunks/{118-4c8241b0218335de.js → 118-ae2b650136a5a5fc.js} +1 -1
  3. package/out/_next/static/chunks/407-0c82986cf79c8ecb.js +1 -0
  4. package/out/_next/static/chunks/app/app/[[...slug]]/{page-1e81c047cff17212.js → page-f7eca1b66fb4249b.js} +1 -1
  5. package/out/_next/static/chunks/app/{page-6892fe2dd07fb48b.js → page-0ee604f7070d14c0.js} +1 -1
  6. package/out/_next/static/css/8968d98ed4c4d33f.css +1 -0
  7. package/out/about.html +2 -2
  8. package/out/about.txt +1 -1
  9. package/out/app/onboarding.html +1 -1
  10. package/out/app/onboarding.txt +1 -1
  11. package/out/app.html +1 -1
  12. package/out/app.txt +2 -2
  13. package/out/blog/go-to-bed-wake-up-to-a-finished-product.html +2 -2
  14. package/out/blog/go-to-bed-wake-up-to-a-finished-product.txt +1 -1
  15. package/out/blog/let-them-cook-multi-agent-orchestration.html +2 -2
  16. package/out/blog/let-them-cook-multi-agent-orchestration.txt +2 -2
  17. package/out/blog.html +2 -2
  18. package/out/blog.txt +1 -1
  19. package/out/careers.html +2 -2
  20. package/out/careers.txt +1 -1
  21. package/out/changelog.html +2 -2
  22. package/out/changelog.txt +1 -1
  23. package/out/cloud/link.html +1 -1
  24. package/out/cloud/link.txt +2 -2
  25. package/out/complete-profile.html +2 -2
  26. package/out/complete-profile.txt +1 -1
  27. package/out/connect-repos.html +1 -1
  28. package/out/connect-repos.txt +1 -1
  29. package/out/contact.html +2 -2
  30. package/out/contact.txt +1 -1
  31. package/out/docs.html +2 -2
  32. package/out/docs.txt +1 -1
  33. package/out/history.html +1 -1
  34. package/out/history.txt +2 -2
  35. package/out/index.html +1 -1
  36. package/out/index.txt +2 -2
  37. package/out/login.html +2 -2
  38. package/out/login.txt +1 -1
  39. package/out/metrics.html +1 -1
  40. package/out/metrics.txt +2 -2
  41. package/out/pricing.html +2 -2
  42. package/out/pricing.txt +1 -1
  43. package/out/privacy.html +2 -2
  44. package/out/privacy.txt +1 -1
  45. package/out/providers/setup/claude.html +1 -1
  46. package/out/providers/setup/claude.txt +1 -1
  47. package/out/providers/setup/codex.html +1 -1
  48. package/out/providers/setup/codex.txt +1 -1
  49. package/out/providers/setup/cursor.html +1 -1
  50. package/out/providers/setup/cursor.txt +1 -1
  51. package/out/providers.html +1 -1
  52. package/out/providers.txt +1 -1
  53. package/out/security.html +2 -2
  54. package/out/security.txt +1 -1
  55. package/out/signup.html +2 -2
  56. package/out/signup.txt +1 -1
  57. package/out/terms.html +2 -2
  58. package/out/terms.txt +1 -1
  59. package/package.json +7 -1
  60. package/src/app/about/page.tsx +7 -0
  61. package/src/app/app/[[...slug]]/DashboardPageClient.tsx +853 -0
  62. package/src/app/app/[[...slug]]/page.tsx +23 -0
  63. package/src/app/app/onboarding/page.tsx +394 -0
  64. package/src/app/apple-icon.png +0 -0
  65. package/src/app/blog/go-to-bed-wake-up-to-a-finished-product/page.tsx +88 -0
  66. package/src/app/blog/let-them-cook-multi-agent-orchestration/page.tsx +93 -0
  67. package/src/app/blog/page.tsx +15 -0
  68. package/src/app/careers/page.tsx +7 -0
  69. package/src/app/changelog/page.tsx +7 -0
  70. package/src/app/cloud/link/page.tsx +464 -0
  71. package/src/app/complete-profile/page.tsx +204 -0
  72. package/src/app/connect-repos/page.tsx +410 -0
  73. package/src/app/contact/page.tsx +7 -0
  74. package/src/app/docs/page.tsx +7 -0
  75. package/src/app/favicon.png +0 -0
  76. package/src/app/globals.css +200 -0
  77. package/src/app/history/page.tsx +658 -0
  78. package/src/app/layout.tsx +25 -0
  79. package/src/app/login/page.tsx +424 -0
  80. package/src/app/metrics/page.tsx +781 -0
  81. package/src/app/page.tsx +59 -0
  82. package/src/app/pricing/page.tsx +7 -0
  83. package/src/app/privacy/page.tsx +7 -0
  84. package/src/app/providers/page.tsx +193 -0
  85. package/src/app/providers/setup/[provider]/ProviderSetupClient.tsx +197 -0
  86. package/src/app/providers/setup/[provider]/constants.ts +35 -0
  87. package/src/app/providers/setup/[provider]/page.tsx +42 -0
  88. package/src/app/security/page.tsx +7 -0
  89. package/src/app/signup/page.tsx +533 -0
  90. package/src/app/terms/page.tsx +7 -0
  91. package/src/components/ActivityFeed.tsx +216 -0
  92. package/src/components/AddWorkspaceModal.tsx +170 -0
  93. package/src/components/AgentCard.test.tsx +134 -0
  94. package/src/components/AgentCard.tsx +585 -0
  95. package/src/components/AgentList.test.tsx +147 -0
  96. package/src/components/AgentList.tsx +419 -0
  97. package/src/components/AgentLogPreview.tsx +173 -0
  98. package/src/components/AgentProfilePanel.tsx +569 -0
  99. package/src/components/App.tsx +3424 -0
  100. package/src/components/BillingPanel.tsx +922 -0
  101. package/src/components/BillingResult.tsx +447 -0
  102. package/src/components/BroadcastComposer.tsx +690 -0
  103. package/src/components/ChannelAdminPanel.tsx +773 -0
  104. package/src/components/ChannelBrowser.tsx +385 -0
  105. package/src/components/ChannelChat.tsx +261 -0
  106. package/src/components/ChannelSidebar.tsx +399 -0
  107. package/src/components/CloudSessionProvider.tsx +130 -0
  108. package/src/components/CommandPalette.tsx +815 -0
  109. package/src/components/ConfirmationDialog.tsx +133 -0
  110. package/src/components/ConversationHistory.tsx +518 -0
  111. package/src/components/CoordinatorPanel.tsx +956 -0
  112. package/src/components/DecisionQueue.tsx +717 -0
  113. package/src/components/DirectMessageView.tsx +164 -0
  114. package/src/components/FileAutocomplete.tsx +368 -0
  115. package/src/components/FleetOverview.tsx +278 -0
  116. package/src/components/LogViewer.tsx +310 -0
  117. package/src/components/LogViewerPanel.tsx +482 -0
  118. package/src/components/Logo.tsx +284 -0
  119. package/src/components/MentionAutocomplete.tsx +384 -0
  120. package/src/components/MessageComposer.tsx +473 -0
  121. package/src/components/MessageList.tsx +725 -0
  122. package/src/components/MessageSenderName.tsx +91 -0
  123. package/src/components/MessageStatusIndicator.tsx +142 -0
  124. package/src/components/NewConversationModal.tsx +400 -0
  125. package/src/components/NotificationToast.tsx +488 -0
  126. package/src/components/OnlineUsersIndicator.tsx +164 -0
  127. package/src/components/Pagination.tsx +124 -0
  128. package/src/components/PricingPlans.tsx +386 -0
  129. package/src/components/ProjectList.tsx +711 -0
  130. package/src/components/ProviderAuthFlow.tsx +343 -0
  131. package/src/components/ProviderConnectionList.tsx +375 -0
  132. package/src/components/ProvisioningProgress.tsx +730 -0
  133. package/src/components/ReactionChips.tsx +70 -0
  134. package/src/components/ReactionPicker.tsx +121 -0
  135. package/src/components/RepoAccessPanel.tsx +787 -0
  136. package/src/components/RepositoriesPanel.tsx +901 -0
  137. package/src/components/ServerCard.tsx +202 -0
  138. package/src/components/SessionExpiredModal.tsx +128 -0
  139. package/src/components/SpawnModal.test.tsx +190 -0
  140. package/src/components/SpawnModal.tsx +1001 -0
  141. package/src/components/TaskAssignmentUI.tsx +375 -0
  142. package/src/components/TerminalProviderSetup.tsx +517 -0
  143. package/src/components/ThemeProvider.tsx +159 -0
  144. package/src/components/ThinkingIndicator.tsx +231 -0
  145. package/src/components/ThreadList.tsx +198 -0
  146. package/src/components/ThreadPanel.tsx +405 -0
  147. package/src/components/TrajectoryViewer.tsx +698 -0
  148. package/src/components/TypingIndicator.tsx +69 -0
  149. package/src/components/UsageBanner.tsx +231 -0
  150. package/src/components/UserProfilePanel.tsx +233 -0
  151. package/src/components/WorkspaceContext.tsx +95 -0
  152. package/src/components/WorkspaceSelector.tsx +234 -0
  153. package/src/components/WorkspaceStatusIndicator.tsx +396 -0
  154. package/src/components/XTermInteractive.tsx +516 -0
  155. package/src/components/XTermLogViewer.tsx +719 -0
  156. package/src/components/channels/ChannelDialogs.tsx +1411 -0
  157. package/src/components/channels/ChannelHeader.tsx +317 -0
  158. package/src/components/channels/ChannelMessageList.tsx +463 -0
  159. package/src/components/channels/ChannelViewV1.tsx +146 -0
  160. package/src/components/channels/MessageInput.tsx +302 -0
  161. package/src/components/channels/SearchInput.tsx +172 -0
  162. package/src/components/channels/SearchResults.tsx +336 -0
  163. package/src/components/channels/api.test.ts +1527 -0
  164. package/src/components/channels/api.ts +703 -0
  165. package/src/components/channels/index.ts +76 -0
  166. package/src/components/channels/mockApi.ts +344 -0
  167. package/src/components/channels/types.ts +566 -0
  168. package/src/components/hooks/index.ts +58 -0
  169. package/src/components/hooks/useAgentLogs.ts +504 -0
  170. package/src/components/hooks/useAgents.ts +127 -0
  171. package/src/components/hooks/useBroadcastDedup.test.ts +371 -0
  172. package/src/components/hooks/useBroadcastDedup.ts +86 -0
  173. package/src/components/hooks/useChannelAdmin.ts +329 -0
  174. package/src/components/hooks/useChannelBrowser.ts +239 -0
  175. package/src/components/hooks/useChannelCommands.ts +138 -0
  176. package/src/components/hooks/useChannels.ts +367 -0
  177. package/src/components/hooks/useDebounce.ts +29 -0
  178. package/src/components/hooks/useDirectMessage.test.ts +952 -0
  179. package/src/components/hooks/useDirectMessage.ts +141 -0
  180. package/src/components/hooks/useMessages.ts +310 -0
  181. package/src/components/hooks/useOrchestrator.test.ts +165 -0
  182. package/src/components/hooks/useOrchestrator.ts +424 -0
  183. package/src/components/hooks/usePinnedAgents.test.ts +356 -0
  184. package/src/components/hooks/usePinnedAgents.ts +140 -0
  185. package/src/components/hooks/usePresence.test.ts +245 -0
  186. package/src/components/hooks/usePresence.ts +377 -0
  187. package/src/components/hooks/useRecentRepos.ts +130 -0
  188. package/src/components/hooks/useSession.ts +209 -0
  189. package/src/components/hooks/useThread.ts +138 -0
  190. package/src/components/hooks/useTrajectory.ts +265 -0
  191. package/src/components/hooks/useWebSocket.ts +290 -0
  192. package/src/components/hooks/useWorkspaceMembers.ts +132 -0
  193. package/src/components/hooks/useWorkspaceRepos.ts +73 -0
  194. package/src/components/hooks/useWorkspaceStatus.ts +237 -0
  195. package/src/components/index.ts +81 -0
  196. package/src/components/layout/Header.tsx +311 -0
  197. package/src/components/layout/RepoContextHeader.tsx +361 -0
  198. package/src/components/layout/Sidebar.archive.test.tsx +126 -0
  199. package/src/components/layout/Sidebar.test.tsx +691 -0
  200. package/src/components/layout/Sidebar.tsx +900 -0
  201. package/src/components/layout/index.ts +7 -0
  202. package/src/components/settings/BillingSettingsPanel.tsx +564 -0
  203. package/src/components/settings/SettingsPage.tsx +683 -0
  204. package/src/components/settings/TeamSettingsPanel.tsx +560 -0
  205. package/src/components/settings/WorkspaceSettingsPanel.tsx +1368 -0
  206. package/src/components/settings/index.ts +11 -0
  207. package/src/components/settings/types.ts +79 -0
  208. package/src/components/utils/messageFormatting.test.tsx +331 -0
  209. package/src/components/utils/messageFormatting.tsx +597 -0
  210. package/src/index.ts +63 -0
  211. package/src/landing/AboutPage.tsx +77 -0
  212. package/src/landing/BlogContent.tsx +187 -0
  213. package/src/landing/BlogPage.tsx +47 -0
  214. package/src/landing/CareersPage.tsx +53 -0
  215. package/src/landing/ChangelogPage.tsx +33 -0
  216. package/src/landing/ContactPage.tsx +41 -0
  217. package/src/landing/DocsPage.tsx +43 -0
  218. package/src/landing/LandingPage.tsx +702 -0
  219. package/src/landing/PricingPage.tsx +549 -0
  220. package/src/landing/PrivacyPage.tsx +117 -0
  221. package/src/landing/SecurityPage.tsx +42 -0
  222. package/src/landing/StaticPage.tsx +165 -0
  223. package/src/landing/TermsPage.tsx +125 -0
  224. package/src/landing/blogData.ts +312 -0
  225. package/src/landing/index.ts +18 -0
  226. package/src/landing/styles.css +3673 -0
  227. package/src/lib/agent-merge.test.ts +43 -0
  228. package/src/lib/agent-merge.ts +35 -0
  229. package/src/lib/api.ts +1294 -0
  230. package/src/lib/cloudApi.ts +893 -0
  231. package/src/lib/colors.test.ts +175 -0
  232. package/src/lib/colors.ts +218 -0
  233. package/src/lib/config.ts +109 -0
  234. package/src/lib/hierarchy.ts +242 -0
  235. package/src/lib/stuckDetection.ts +142 -0
  236. package/src/lib/useUrlRouting.ts +190 -0
  237. package/src/types/index.ts +317 -0
  238. package/src/types/threading.ts +7 -0
  239. package/out/_next/static/chunks/285-dc644487a8d6500d.js +0 -1
  240. package/out/_next/static/css/4c58d9cf493aa626.css +0 -1
  241. /package/out/_next/static/{AqelRhy1vr2nBUcU0Iqcp → IxfA6RZu4trcsEMYlkQra}/_buildManifest.js +0 -0
  242. /package/out/_next/static/{AqelRhy1vr2nBUcU0Iqcp → IxfA6RZu4trcsEMYlkQra}/_ssgManifest.js +0 -0
  243. /package/out/_next/static/chunks/{528-d375bc8b46912d2c.js → 528-f5f676996d613c25.js} +0 -0
  244. /package/out/_next/static/chunks/app/blog/let-them-cook-multi-agent-orchestration/{page-a58308f43557b908.js → page-b194f207fbd91862.js} +0 -0
@@ -0,0 +1,658 @@
1
+ /**
2
+ * Dashboard V2 - History Page
3
+ *
4
+ * Full-page conversation history view with sessions, messages, and conversations.
5
+ * Provides filtering, search, and navigation through historical data.
6
+ */
7
+
8
+ 'use client';
9
+
10
+ import React, { useState, useEffect, useCallback } from 'react';
11
+ import Link from 'next/link';
12
+ import {
13
+ api,
14
+ type HistorySession,
15
+ type HistoryMessage,
16
+ type Conversation,
17
+ type HistoryStats,
18
+ } from '../../lib/api';
19
+ import { getAgentColor, getAgentInitials } from '../../lib/colors';
20
+
21
+ type ViewMode = 'conversations' | 'sessions' | 'messages';
22
+
23
+ export default function HistoryPage() {
24
+ const [viewMode, setViewMode] = useState<ViewMode>('conversations');
25
+ const [conversations, setConversations] = useState<Conversation[]>([]);
26
+ const [sessions, setSessions] = useState<HistorySession[]>([]);
27
+ const [messages, setMessages] = useState<HistoryMessage[]>([]);
28
+ const [stats, setStats] = useState<HistoryStats | null>(null);
29
+ const [isLoading, setIsLoading] = useState(true);
30
+ const [error, setError] = useState<string | null>(null);
31
+
32
+ // Filters
33
+ const [searchQuery, setSearchQuery] = useState('');
34
+ const [agentFilter, setAgentFilter] = useState('');
35
+ const [selectedConversation, setSelectedConversation] = useState<Conversation | null>(null);
36
+
37
+ // Fetch stats on mount
38
+ useEffect(() => {
39
+ const fetchStats = async () => {
40
+ const result = await api.getHistoryStats();
41
+ if (result.success && result.data) {
42
+ setStats(result.data);
43
+ }
44
+ };
45
+ fetchStats();
46
+ }, []);
47
+
48
+ // Fetch data based on view mode
49
+ useEffect(() => {
50
+ const fetchData = async () => {
51
+ setIsLoading(true);
52
+ setError(null);
53
+
54
+ try {
55
+ if (viewMode === 'conversations') {
56
+ const result = await api.getHistoryConversations();
57
+ if (result.success && result.data) {
58
+ setConversations(result.data.conversations);
59
+ } else {
60
+ setError(result.error || 'Failed to fetch conversations');
61
+ }
62
+ } else if (viewMode === 'sessions') {
63
+ const result = await api.getHistorySessions({
64
+ agent: agentFilter || undefined,
65
+ limit: 100,
66
+ });
67
+ if (result.success && result.data) {
68
+ setSessions(result.data.sessions);
69
+ } else {
70
+ setError(result.error || 'Failed to fetch sessions');
71
+ }
72
+ } else if (viewMode === 'messages') {
73
+ const params: Parameters<typeof api.getHistoryMessages>[0] = {
74
+ limit: 200,
75
+ order: 'desc',
76
+ };
77
+
78
+ if (searchQuery) {
79
+ params.search = searchQuery;
80
+ }
81
+
82
+ if (selectedConversation) {
83
+ const [p1, p2] = selectedConversation.participants;
84
+ const result1 = await api.getHistoryMessages({ ...params, from: p1, to: p2 });
85
+ const result2 = await api.getHistoryMessages({ ...params, from: p2, to: p1 });
86
+
87
+ if (result1.success && result2.success) {
88
+ const allMessages = [
89
+ ...(result1.data?.messages || []),
90
+ ...(result2.data?.messages || []),
91
+ ].sort((a, b) => new Date(b.timestamp).getTime() - new Date(a.timestamp).getTime());
92
+ setMessages(allMessages);
93
+ }
94
+ } else {
95
+ const result = await api.getHistoryMessages(params);
96
+ if (result.success && result.data) {
97
+ setMessages(result.data.messages);
98
+ } else {
99
+ setError(result.error || 'Failed to fetch messages');
100
+ }
101
+ }
102
+ }
103
+ } catch (_err) {
104
+ setError('Failed to load data');
105
+ } finally {
106
+ setIsLoading(false);
107
+ }
108
+ };
109
+
110
+ fetchData();
111
+ }, [viewMode, agentFilter, searchQuery, selectedConversation]);
112
+
113
+ const handleConversationClick = useCallback((conv: Conversation) => {
114
+ setSelectedConversation(conv);
115
+ setViewMode('messages');
116
+ }, []);
117
+
118
+ const handleBackToConversations = useCallback(() => {
119
+ setSelectedConversation(null);
120
+ setViewMode('conversations');
121
+ }, []);
122
+
123
+ return (
124
+ <div className="min-h-screen bg-bg-primary text-text-primary font-sans">
125
+ {/* Header */}
126
+ <header className="sticky top-0 z-50 bg-sidebar-bg border-b border-sidebar-border px-4 md:px-8 py-4">
127
+ <div className="max-w-[1400px] mx-auto flex items-center justify-between">
128
+ <div className="flex items-center gap-4">
129
+ <Link
130
+ href="/"
131
+ className="flex items-center gap-2 text-text-muted text-sm font-medium px-3 py-2 rounded-md transition-all hover:text-accent hover:bg-accent/10"
132
+ >
133
+ <BackIcon />
134
+ <span className="hidden sm:inline">Dashboard</span>
135
+ </Link>
136
+ <div className="flex items-center gap-3">
137
+ <div className="w-8 h-8 bg-gradient-to-br from-accent/80 to-accent rounded-lg flex items-center justify-center border border-accent/30">
138
+ <HistoryIcon />
139
+ </div>
140
+ <div className="text-lg font-semibold tracking-tight">
141
+ Conversation <span className="text-accent">History</span>
142
+ </div>
143
+ </div>
144
+ </div>
145
+
146
+ {/* Stats - only show when we have real numbers (not 'unknown' from JSONL fallback) */}
147
+ {stats && typeof stats.messageCount === 'number' && (
148
+ <div className="hidden md:flex items-center gap-4 text-sm">
149
+ <StatBadge label="Messages" value={stats.messageCount} />
150
+ <StatBadge label="Sessions" value={stats.sessionCount} />
151
+ <StatBadge label="Agents" value={stats.uniqueAgents} />
152
+ </div>
153
+ )}
154
+ </div>
155
+ </header>
156
+
157
+ {/* Main Content */}
158
+ <main className="max-w-[1400px] mx-auto px-4 md:px-8 py-6">
159
+ {/* Toolbar */}
160
+ <div className="flex flex-col md:flex-row md:items-center gap-4 mb-6">
161
+ {/* View mode tabs */}
162
+ <div className="flex gap-1 bg-bg-secondary rounded-lg p-1 border border-border">
163
+ <TabButton
164
+ active={viewMode === 'conversations'}
165
+ onClick={() => {
166
+ setSelectedConversation(null);
167
+ setViewMode('conversations');
168
+ }}
169
+ >
170
+ <ConversationIcon />
171
+ Conversations
172
+ </TabButton>
173
+ <TabButton
174
+ active={viewMode === 'sessions'}
175
+ onClick={() => setViewMode('sessions')}
176
+ >
177
+ <SessionIcon />
178
+ Sessions
179
+ </TabButton>
180
+ <TabButton
181
+ active={viewMode === 'messages'}
182
+ onClick={() => setViewMode('messages')}
183
+ >
184
+ <MessageIcon />
185
+ Messages
186
+ </TabButton>
187
+ </div>
188
+
189
+ {/* Search/Filter */}
190
+ <div className="flex-1 flex items-center gap-3">
191
+ {viewMode === 'messages' && (
192
+ <div className="flex-1 max-w-md">
193
+ <div className="relative">
194
+ <SearchIcon className="absolute left-3 top-1/2 -translate-y-1/2 text-text-muted" />
195
+ <input
196
+ type="text"
197
+ placeholder="Search messages..."
198
+ value={searchQuery}
199
+ onChange={(e) => setSearchQuery(e.target.value)}
200
+ className="w-full pl-10 pr-4 py-2.5 bg-bg-secondary border border-border rounded-lg text-sm text-text-primary placeholder:text-text-muted focus:outline-none focus:border-accent transition-colors"
201
+ />
202
+ </div>
203
+ </div>
204
+ )}
205
+
206
+ {viewMode === 'sessions' && (
207
+ <div className="flex-1 max-w-md">
208
+ <div className="relative">
209
+ <SearchIcon className="absolute left-3 top-1/2 -translate-y-1/2 text-text-muted" />
210
+ <input
211
+ type="text"
212
+ placeholder="Filter by agent name..."
213
+ value={agentFilter}
214
+ onChange={(e) => setAgentFilter(e.target.value)}
215
+ className="w-full pl-10 pr-4 py-2.5 bg-bg-secondary border border-border rounded-lg text-sm text-text-primary placeholder:text-text-muted focus:outline-none focus:border-accent transition-colors"
216
+ />
217
+ </div>
218
+ </div>
219
+ )}
220
+
221
+ {selectedConversation && (
222
+ <button
223
+ onClick={handleBackToConversations}
224
+ className="flex items-center gap-2 px-4 py-2 text-sm text-text-muted hover:text-text-primary bg-bg-secondary border border-border rounded-lg transition-colors hover:bg-bg-tertiary"
225
+ >
226
+ <BackIcon />
227
+ Back to conversations
228
+ </button>
229
+ )}
230
+ </div>
231
+ </div>
232
+
233
+ {/* Content */}
234
+ {isLoading ? (
235
+ <div className="flex items-center justify-center h-[60vh]">
236
+ <div className="flex flex-col items-center gap-4">
237
+ <div className="w-10 h-10 border-2 border-border border-t-accent rounded-full animate-spin" />
238
+ <p className="text-text-muted text-sm">Loading history...</p>
239
+ </div>
240
+ </div>
241
+ ) : error ? (
242
+ <div className="flex items-center justify-center h-[60vh]">
243
+ <div className="flex flex-col items-center gap-4">
244
+ <div className="w-12 h-12 rounded-full bg-error/10 flex items-center justify-center">
245
+ <ErrorIcon />
246
+ </div>
247
+ <p className="text-text-secondary">{error}</p>
248
+ <button
249
+ onClick={() => window.location.reload()}
250
+ className="px-5 py-2.5 bg-accent text-white rounded-lg text-sm font-medium transition-colors hover:bg-accent-hover"
251
+ >
252
+ Retry
253
+ </button>
254
+ </div>
255
+ </div>
256
+ ) : viewMode === 'conversations' ? (
257
+ <ConversationList
258
+ conversations={conversations}
259
+ onConversationClick={handleConversationClick}
260
+ />
261
+ ) : viewMode === 'sessions' ? (
262
+ <SessionList sessions={sessions} />
263
+ ) : (
264
+ <MessageHistoryList
265
+ messages={messages}
266
+ conversationTitle={
267
+ selectedConversation
268
+ ? `${selectedConversation.participants[0]} & ${selectedConversation.participants[1]}`
269
+ : undefined
270
+ }
271
+ />
272
+ )}
273
+ </main>
274
+ </div>
275
+ );
276
+ }
277
+
278
+ // Sub-components
279
+
280
+ interface TabButtonProps {
281
+ active: boolean;
282
+ onClick: () => void;
283
+ children: React.ReactNode;
284
+ }
285
+
286
+ function TabButton({ active, onClick, children }: TabButtonProps) {
287
+ return (
288
+ <button
289
+ onClick={onClick}
290
+ className={`flex items-center gap-2 px-4 py-2 text-sm font-medium rounded-md transition-colors ${
291
+ active
292
+ ? 'bg-accent text-white'
293
+ : 'text-text-muted hover:text-text-primary hover:bg-bg-tertiary'
294
+ }`}
295
+ >
296
+ {children}
297
+ </button>
298
+ );
299
+ }
300
+
301
+ function StatBadge({ label, value }: { label: string; value: number | string }) {
302
+ return (
303
+ <div className="flex items-center gap-2 px-3 py-1.5 bg-bg-secondary/50 border border-border/50 rounded-lg">
304
+ <span className="text-text-muted text-xs">{label}:</span>
305
+ <span className="text-accent font-mono font-semibold">{value}</span>
306
+ </div>
307
+ );
308
+ }
309
+
310
+ interface ConversationListProps {
311
+ conversations: Conversation[];
312
+ onConversationClick: (conv: Conversation) => void;
313
+ }
314
+
315
+ function ConversationList({ conversations, onConversationClick }: ConversationListProps) {
316
+ if (conversations.length === 0) {
317
+ return (
318
+ <EmptyState
319
+ icon={<ConversationIcon className="w-12 h-12" />}
320
+ title="No conversations yet"
321
+ description="Start messaging between agents to see conversation history here."
322
+ />
323
+ );
324
+ }
325
+
326
+ return (
327
+ <div className="grid gap-4 md:grid-cols-2 lg:grid-cols-3">
328
+ {conversations.map((conv, index) => {
329
+ const [agent1, agent2] = conv.participants;
330
+ const colors1 = getAgentColor(agent1);
331
+ const colors2 = getAgentColor(agent2);
332
+
333
+ return (
334
+ <div
335
+ key={index}
336
+ onClick={() => onConversationClick(conv)}
337
+ className="p-5 bg-bg-secondary border border-border rounded-xl cursor-pointer transition-all hover:border-accent/50 hover:bg-bg-tertiary group"
338
+ >
339
+ <div className="flex items-center gap-3 mb-3">
340
+ <div className="flex -space-x-2">
341
+ <div
342
+ className="w-10 h-10 rounded-lg flex items-center justify-center text-xs font-bold border-2 border-bg-secondary"
343
+ style={{ backgroundColor: colors1.primary, color: colors1.text }}
344
+ >
345
+ {getAgentInitials(agent1)}
346
+ </div>
347
+ <div
348
+ className="w-10 h-10 rounded-lg flex items-center justify-center text-xs font-bold border-2 border-bg-secondary"
349
+ style={{ backgroundColor: colors2.primary, color: colors2.text }}
350
+ >
351
+ {getAgentInitials(agent2)}
352
+ </div>
353
+ </div>
354
+ <div className="flex-1 min-w-0">
355
+ <div className="font-semibold text-text-primary truncate">
356
+ {agent1} & {agent2}
357
+ </div>
358
+ <div className="text-xs text-text-muted">
359
+ {conv.messageCount} messages
360
+ </div>
361
+ </div>
362
+ <div className="text-xs text-text-muted">
363
+ {formatRelativeTime(conv.lastTimestamp)}
364
+ </div>
365
+ </div>
366
+ <p className="text-sm text-text-muted truncate">{conv.lastMessage}</p>
367
+ <div className="mt-3 flex items-center gap-2 text-xs text-accent opacity-0 group-hover:opacity-100 transition-opacity">
368
+ <span>View conversation</span>
369
+ <ArrowRightIcon />
370
+ </div>
371
+ </div>
372
+ );
373
+ })}
374
+ </div>
375
+ );
376
+ }
377
+
378
+ interface SessionListProps {
379
+ sessions: HistorySession[];
380
+ }
381
+
382
+ function SessionList({ sessions }: SessionListProps) {
383
+ if (sessions.length === 0) {
384
+ return (
385
+ <EmptyState
386
+ icon={<SessionIcon className="w-12 h-12" />}
387
+ title="No sessions found"
388
+ description="Agent sessions will appear here when agents connect."
389
+ />
390
+ );
391
+ }
392
+
393
+ return (
394
+ <div className="bg-bg-secondary border border-border rounded-xl overflow-hidden">
395
+ <div className="overflow-x-auto">
396
+ <table className="w-full min-w-[700px]">
397
+ <thead>
398
+ <tr className="bg-bg-tertiary border-b border-border">
399
+ <th className="text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted">Agent</th>
400
+ <th className="text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted">Status</th>
401
+ <th className="text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted">CLI</th>
402
+ <th className="text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted">Messages</th>
403
+ <th className="text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted">Started</th>
404
+ <th className="text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted">Duration</th>
405
+ </tr>
406
+ </thead>
407
+ <tbody>
408
+ {sessions.map((session) => {
409
+ const colors = getAgentColor(session.agentName);
410
+ return (
411
+ <tr key={session.id} className="border-b border-border/50 last:border-0 transition-colors hover:bg-bg-hover">
412
+ <td className="py-3 px-4">
413
+ <div className="flex items-center gap-3">
414
+ <div
415
+ className="w-8 h-8 rounded-md flex items-center justify-center text-xs font-semibold"
416
+ style={{ backgroundColor: colors.primary, color: colors.text }}
417
+ >
418
+ {getAgentInitials(session.agentName)}
419
+ </div>
420
+ <span className="font-medium text-text-primary">{session.agentName}</span>
421
+ </div>
422
+ </td>
423
+ <td className="py-3 px-4">
424
+ <SessionStatusBadge isActive={session.isActive} closedBy={session.closedBy} />
425
+ </td>
426
+ <td className="py-3 px-4">
427
+ {session.cli && (
428
+ <span className="text-xs px-2 py-1 bg-bg-tertiary text-text-muted rounded font-mono">
429
+ {session.cli}
430
+ </span>
431
+ )}
432
+ </td>
433
+ <td className="py-3 px-4 font-mono text-sm text-accent">{session.messageCount}</td>
434
+ <td className="py-3 px-4 text-sm text-text-muted">{formatDate(session.startedAt)}</td>
435
+ <td className="py-3 px-4 font-mono text-sm text-text-muted">{session.duration}</td>
436
+ </tr>
437
+ );
438
+ })}
439
+ </tbody>
440
+ </table>
441
+ </div>
442
+ </div>
443
+ );
444
+ }
445
+
446
+ interface SessionStatusBadgeProps {
447
+ isActive: boolean;
448
+ closedBy?: 'agent' | 'disconnect' | 'error';
449
+ }
450
+
451
+ function SessionStatusBadge({ isActive, closedBy }: SessionStatusBadgeProps) {
452
+ if (isActive) {
453
+ return (
454
+ <span className="inline-flex items-center gap-1.5 px-2.5 py-1 text-xs font-medium rounded-full bg-success/15 text-success">
455
+ <span className="w-1.5 h-1.5 bg-success rounded-full animate-pulse" />
456
+ Active
457
+ </span>
458
+ );
459
+ }
460
+
461
+ const config = {
462
+ agent: { label: 'Closed', className: 'bg-text-muted/10 text-text-muted' },
463
+ disconnect: { label: 'Disconnected', className: 'bg-warning/15 text-warning' },
464
+ error: { label: 'Error', className: 'bg-error/15 text-error' },
465
+ };
466
+
467
+ const style = closedBy ? config[closedBy] : config.agent;
468
+
469
+ return (
470
+ <span className={`inline-flex items-center px-2.5 py-1 text-xs font-medium rounded-full ${style.className}`}>
471
+ {style.label}
472
+ </span>
473
+ );
474
+ }
475
+
476
+ interface MessageHistoryListProps {
477
+ messages: HistoryMessage[];
478
+ conversationTitle?: string;
479
+ }
480
+
481
+ function MessageHistoryList({ messages, conversationTitle }: MessageHistoryListProps) {
482
+ if (messages.length === 0) {
483
+ return (
484
+ <EmptyState
485
+ icon={<MessageIcon className="w-12 h-12" />}
486
+ title="No messages found"
487
+ description={conversationTitle ? "No messages in this conversation yet." : "Try adjusting your search or filters."}
488
+ />
489
+ );
490
+ }
491
+
492
+ return (
493
+ <div className="space-y-4">
494
+ {conversationTitle && (
495
+ <h3 className="text-lg font-semibold text-text-primary mb-4">{conversationTitle}</h3>
496
+ )}
497
+ {messages.map((msg) => {
498
+ const colors = getAgentColor(msg.from);
499
+ return (
500
+ <div
501
+ key={msg.id}
502
+ className="p-4 bg-bg-secondary border border-border rounded-xl transition-colors hover:border-border-dark"
503
+ >
504
+ <div className="flex items-start gap-3">
505
+ <div
506
+ className="shrink-0 w-9 h-9 rounded-lg flex items-center justify-center text-xs font-bold"
507
+ style={{ backgroundColor: colors.primary, color: colors.text }}
508
+ >
509
+ {getAgentInitials(msg.from)}
510
+ </div>
511
+ <div className="flex-1 min-w-0">
512
+ <div className="flex items-center flex-wrap gap-2 mb-2">
513
+ <span className="font-semibold text-accent">{msg.from}</span>
514
+ <span className="text-text-muted">to</span>
515
+ <span className="font-medium text-text-primary">
516
+ {msg.to === '*' ? 'Everyone' : msg.to}
517
+ </span>
518
+ {msg.isBroadcast && (
519
+ <span className="text-[10px] px-2 py-0.5 bg-warning/15 text-warning rounded-full font-medium">
520
+ Broadcast
521
+ </span>
522
+ )}
523
+ {msg.isUrgent && (
524
+ <span className="text-[10px] px-2 py-0.5 bg-error/15 text-error rounded-full font-medium">
525
+ Urgent
526
+ </span>
527
+ )}
528
+ {msg.thread && (
529
+ <span className="text-[10px] px-2 py-0.5 bg-accent/15 text-accent rounded-full font-medium">
530
+ {msg.thread}
531
+ </span>
532
+ )}
533
+ <span className="text-xs text-text-muted ml-auto">
534
+ {formatRelativeTime(msg.timestamp)}
535
+ </span>
536
+ </div>
537
+ <p className="text-sm text-text-primary whitespace-pre-wrap break-words">
538
+ {msg.content}
539
+ </p>
540
+ </div>
541
+ </div>
542
+ </div>
543
+ );
544
+ })}
545
+ </div>
546
+ );
547
+ }
548
+
549
+ interface EmptyStateProps {
550
+ icon: React.ReactNode;
551
+ title: string;
552
+ description: string;
553
+ }
554
+
555
+ function EmptyState({ icon, title, description }: EmptyStateProps) {
556
+ return (
557
+ <div className="flex flex-col items-center justify-center py-20 text-center">
558
+ <div className="text-text-muted opacity-50 mb-4">{icon}</div>
559
+ <h3 className="text-lg font-semibold text-text-primary mb-2">{title}</h3>
560
+ <p className="text-sm text-text-muted max-w-md">{description}</p>
561
+ </div>
562
+ );
563
+ }
564
+
565
+ // Utility functions
566
+
567
+ function formatRelativeTime(timestamp: string): string {
568
+ const date = new Date(timestamp);
569
+ const now = new Date();
570
+ const diffMs = now.getTime() - date.getTime();
571
+ const diffMins = Math.floor(diffMs / 60000);
572
+ const diffHours = Math.floor(diffMs / 3600000);
573
+ const diffDays = Math.floor(diffMs / 86400000);
574
+
575
+ if (diffMins < 1) return 'just now';
576
+ if (diffMins < 60) return `${diffMins}m ago`;
577
+ if (diffHours < 24) return `${diffHours}h ago`;
578
+ if (diffDays < 7) return `${diffDays}d ago`;
579
+
580
+ return date.toLocaleDateString();
581
+ }
582
+
583
+ function formatDate(timestamp: string): string {
584
+ return new Date(timestamp).toLocaleString();
585
+ }
586
+
587
+ // Icons
588
+
589
+ function BackIcon() {
590
+ return (
591
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
592
+ <path d="M19 12H5M12 19l-7-7 7-7"/>
593
+ </svg>
594
+ );
595
+ }
596
+
597
+ function HistoryIcon() {
598
+ return (
599
+ <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="white" strokeWidth="2">
600
+ <circle cx="12" cy="12" r="10"/>
601
+ <polyline points="12 6 12 12 16 14"/>
602
+ </svg>
603
+ );
604
+ }
605
+
606
+ function SearchIcon({ className }: { className?: string }) {
607
+ return (
608
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" className={className}>
609
+ <circle cx="11" cy="11" r="8"/>
610
+ <line x1="21" y1="21" x2="16.65" y2="16.65"/>
611
+ </svg>
612
+ );
613
+ }
614
+
615
+ function ConversationIcon({ className }: { className?: string }) {
616
+ return (
617
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" className={className}>
618
+ <path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/>
619
+ </svg>
620
+ );
621
+ }
622
+
623
+ function SessionIcon({ className }: { className?: string }) {
624
+ return (
625
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" className={className}>
626
+ <rect x="3" y="4" width="18" height="18" rx="2" ry="2"/>
627
+ <line x1="16" y1="2" x2="16" y2="6"/>
628
+ <line x1="8" y1="2" x2="8" y2="6"/>
629
+ <line x1="3" y1="10" x2="21" y2="10"/>
630
+ </svg>
631
+ );
632
+ }
633
+
634
+ function MessageIcon({ className }: { className?: string }) {
635
+ return (
636
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" className={className}>
637
+ <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/>
638
+ <polyline points="22,6 12,13 2,6"/>
639
+ </svg>
640
+ );
641
+ }
642
+
643
+ function ErrorIcon() {
644
+ return (
645
+ <svg className="w-6 h-6 text-error" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
646
+ <path strokeLinecap="round" strokeLinejoin="round" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
647
+ </svg>
648
+ );
649
+ }
650
+
651
+ function ArrowRightIcon() {
652
+ return (
653
+ <svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
654
+ <line x1="5" y1="12" x2="19" y2="12"/>
655
+ <polyline points="12 5 19 12 12 19"/>
656
+ </svg>
657
+ );
658
+ }
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Dashboard V2 - Root Layout
3
+ *
4
+ * Provides global styles, fonts, and metadata for the dashboard.
5
+ */
6
+
7
+ import type { Metadata } from 'next';
8
+ import './globals.css';
9
+
10
+ export const metadata: Metadata = {
11
+ title: 'Agent Relay Dashboard',
12
+ description: 'Fleet control dashboard for Agent Relay',
13
+ };
14
+
15
+ export default function RootLayout({
16
+ children,
17
+ }: {
18
+ children: React.ReactNode;
19
+ }) {
20
+ return (
21
+ <html lang="en">
22
+ <body>{children}</body>
23
+ </html>
24
+ );
25
+ }