@agent-relay/dashboard 2.0.81 → 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/{dYlczDQI12PIQ3tqq3N4Y → IxfA6RZu4trcsEMYlkQra}/_buildManifest.js +0 -0
  242. /package/out/_next/static/{dYlczDQI12PIQ3tqq3N4Y → 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,385 @@
1
+ /**
2
+ * ChannelBrowser Component
3
+ *
4
+ * A modal for browsing, searching, and joining public channels.
5
+ * Includes search with debouncing and pagination.
6
+ */
7
+
8
+ import React, { useState, useCallback, useEffect, useRef } from 'react';
9
+ import { useChannelBrowser, type BrowseChannel } from './hooks/useChannelBrowser';
10
+ import { Pagination } from './Pagination';
11
+
12
+ export interface ChannelBrowserProps {
13
+ /** Workspace ID for API calls */
14
+ workspaceId: string;
15
+ isOpen: boolean;
16
+ onClose: () => void;
17
+ onChannelJoined?: (channel: BrowseChannel) => void;
18
+ currentUserId?: string;
19
+ }
20
+
21
+ export function ChannelBrowser({
22
+ workspaceId,
23
+ isOpen,
24
+ onClose,
25
+ onChannelJoined,
26
+ }: ChannelBrowserProps) {
27
+ const {
28
+ channels,
29
+ isLoading,
30
+ error,
31
+ searchQuery,
32
+ setSearchQuery,
33
+ currentPage,
34
+ totalPages,
35
+ totalCount,
36
+ goToPage,
37
+ joinChannel,
38
+ leaveChannel,
39
+ refresh,
40
+ } = useChannelBrowser({ workspaceId, autoFetch: isOpen });
41
+
42
+ const [joiningChannelId, setJoiningChannelId] = useState<string | null>(null);
43
+ const [leavingChannelId, setLeavingChannelId] = useState<string | null>(null);
44
+ const inputRef = useRef<HTMLInputElement>(null);
45
+
46
+ // Focus search input when modal opens
47
+ useEffect(() => {
48
+ if (isOpen && inputRef.current) {
49
+ inputRef.current.focus();
50
+ }
51
+ }, [isOpen]);
52
+
53
+ // Handle escape key
54
+ useEffect(() => {
55
+ if (!isOpen) return;
56
+
57
+ const handleKeyDown = (e: KeyboardEvent) => {
58
+ if (e.key === 'Escape') {
59
+ onClose();
60
+ }
61
+ };
62
+
63
+ window.addEventListener('keydown', handleKeyDown);
64
+ return () => window.removeEventListener('keydown', handleKeyDown);
65
+ }, [isOpen, onClose]);
66
+
67
+ // Handle join channel
68
+ const handleJoin = useCallback(async (channel: BrowseChannel) => {
69
+ setJoiningChannelId(channel.id);
70
+ try {
71
+ await joinChannel(channel.id);
72
+ onChannelJoined?.({ ...channel, isJoined: true });
73
+ } catch (err) {
74
+ console.error('Failed to join channel:', err);
75
+ } finally {
76
+ setJoiningChannelId(null);
77
+ }
78
+ }, [joinChannel, onChannelJoined]);
79
+
80
+ // Handle leave channel
81
+ const handleLeave = useCallback(async (channel: BrowseChannel) => {
82
+ setLeavingChannelId(channel.id);
83
+ try {
84
+ await leaveChannel(channel.id);
85
+ } catch (err) {
86
+ console.error('Failed to leave channel:', err);
87
+ } finally {
88
+ setLeavingChannelId(null);
89
+ }
90
+ }, [leaveChannel]);
91
+
92
+ if (!isOpen) return null;
93
+
94
+ return (
95
+ <div
96
+ className="fixed inset-0 bg-black/60 flex items-start justify-center pt-[10vh] z-[1000] animate-fade-in"
97
+ onClick={onClose}
98
+ >
99
+ <div
100
+ className="bg-sidebar-bg border border-sidebar-border rounded-xl w-[600px] max-w-[90vw] max-h-[75vh] flex flex-col shadow-modal animate-slide-down"
101
+ onClick={(e) => e.stopPropagation()}
102
+ >
103
+ {/* Header */}
104
+ <div className="flex items-center justify-between p-4 border-b border-sidebar-border">
105
+ <div className="flex items-center gap-3">
106
+ <div className="w-10 h-10 rounded-xl bg-gradient-to-br from-accent-cyan/20 to-blue-500/20 flex items-center justify-center border border-accent-cyan/30">
107
+ <HashIcon />
108
+ </div>
109
+ <div>
110
+ <h2 className="text-lg font-semibold text-text-primary m-0">
111
+ Browse Channels
112
+ </h2>
113
+ <p className="text-xs text-text-muted m-0">
114
+ {totalCount} channel{totalCount !== 1 ? 's' : ''} available
115
+ </p>
116
+ </div>
117
+ </div>
118
+ <button
119
+ onClick={onClose}
120
+ className="w-8 h-8 rounded-lg flex items-center justify-center text-text-muted hover:text-text-primary hover:bg-sidebar-border transition-colors"
121
+ title="Close (Esc)"
122
+ >
123
+ <CloseIcon />
124
+ </button>
125
+ </div>
126
+
127
+ {/* Search */}
128
+ <div className="p-4 border-b border-sidebar-border">
129
+ <div className="relative">
130
+ <SearchIcon className="absolute left-3 top-1/2 -translate-y-1/2 text-text-muted" />
131
+ <input
132
+ ref={inputRef}
133
+ type="text"
134
+ value={searchQuery}
135
+ onChange={(e) => setSearchQuery(e.target.value)}
136
+ placeholder="Search channels..."
137
+ className="w-full pl-10 pr-4 py-2.5 bg-bg-tertiary border border-sidebar-border rounded-lg text-sm text-text-primary placeholder:text-text-muted outline-none focus:border-accent-cyan/50 transition-colors"
138
+ />
139
+ {searchQuery && (
140
+ <button
141
+ onClick={() => setSearchQuery('')}
142
+ className="absolute right-3 top-1/2 -translate-y-1/2 text-text-muted hover:text-text-primary"
143
+ title="Clear search"
144
+ >
145
+ <CloseIcon className="w-4 h-4" />
146
+ </button>
147
+ )}
148
+ </div>
149
+ </div>
150
+
151
+ {/* Channel List */}
152
+ <div className="flex-1 overflow-y-auto p-2">
153
+ {isLoading && channels.length === 0 ? (
154
+ <div className="py-12 text-center">
155
+ <LoadingSpinner />
156
+ <p className="text-sm text-text-muted mt-2">Loading channels...</p>
157
+ </div>
158
+ ) : error ? (
159
+ <div className="py-12 text-center">
160
+ <ErrorIcon />
161
+ <p className="text-sm text-error mt-2">{error}</p>
162
+ <button
163
+ onClick={refresh}
164
+ className="mt-3 px-4 py-2 text-sm text-accent-cyan hover:underline"
165
+ >
166
+ Try again
167
+ </button>
168
+ </div>
169
+ ) : channels.length === 0 ? (
170
+ <div className="py-12 text-center">
171
+ <EmptyIcon />
172
+ <p className="text-sm text-text-muted mt-2">
173
+ {searchQuery
174
+ ? `No channels matching "${searchQuery}"`
175
+ : 'No channels available'}
176
+ </p>
177
+ </div>
178
+ ) : (
179
+ <div className="space-y-1">
180
+ {channels.map((channel) => (
181
+ <ChannelCard
182
+ key={channel.id}
183
+ channel={channel}
184
+ isJoining={joiningChannelId === channel.id}
185
+ isLeaving={leavingChannelId === channel.id}
186
+ onJoin={() => handleJoin(channel)}
187
+ onLeave={() => handleLeave(channel)}
188
+ />
189
+ ))}
190
+ </div>
191
+ )}
192
+ </div>
193
+
194
+ {/* Pagination */}
195
+ {totalPages > 1 && (
196
+ <div className="p-4 border-t border-sidebar-border">
197
+ <Pagination
198
+ currentPage={currentPage}
199
+ totalPages={totalPages}
200
+ onPageChange={goToPage}
201
+ />
202
+ </div>
203
+ )}
204
+ </div>
205
+ </div>
206
+ );
207
+ }
208
+
209
+ interface ChannelCardProps {
210
+ channel: BrowseChannel;
211
+ isJoining: boolean;
212
+ isLeaving: boolean;
213
+ onJoin: () => void;
214
+ onLeave: () => void;
215
+ }
216
+
217
+ function ChannelCard({ channel, isJoining, isLeaving, onJoin, onLeave }: ChannelCardProps) {
218
+ const isProcessing = isJoining || isLeaving;
219
+
220
+ return (
221
+ <div className="flex items-center gap-3 p-3 rounded-lg hover:bg-sidebar-border/50 transition-colors">
222
+ {/* Channel icon */}
223
+ <div className={`
224
+ w-10 h-10 rounded-lg flex items-center justify-center flex-shrink-0
225
+ ${channel.isPrivate
226
+ ? 'bg-warning/10 text-warning border border-warning/20'
227
+ : 'bg-accent-cyan/10 text-accent-cyan border border-accent-cyan/20'
228
+ }
229
+ `}>
230
+ {channel.isPrivate ? <LockIcon /> : <HashIcon />}
231
+ </div>
232
+
233
+ {/* Channel info */}
234
+ <div className="flex-1 min-w-0">
235
+ <div className="flex items-center gap-2">
236
+ <span className="text-sm font-medium text-text-primary truncate">
237
+ #{channel.name}
238
+ </span>
239
+ {channel.isPrivate && (
240
+ <span className="px-1.5 py-0.5 text-[10px] font-medium bg-warning/20 text-warning rounded">
241
+ Private
242
+ </span>
243
+ )}
244
+ </div>
245
+ <div className="flex items-center gap-3 mt-0.5">
246
+ {channel.description && (
247
+ <span className="text-xs text-text-muted truncate flex-1">
248
+ {channel.description}
249
+ </span>
250
+ )}
251
+ <span className="text-xs text-text-muted flex-shrink-0">
252
+ {channel.memberCount} member{channel.memberCount !== 1 ? 's' : ''}
253
+ </span>
254
+ </div>
255
+ </div>
256
+
257
+ {/* Action button */}
258
+ {channel.isJoined ? (
259
+ <button
260
+ onClick={onLeave}
261
+ disabled={isProcessing}
262
+ className="px-3 py-1.5 text-xs font-medium text-text-muted border border-sidebar-border rounded-md hover:text-error hover:border-error/50 disabled:opacity-50 disabled:cursor-not-allowed transition-colors"
263
+ >
264
+ {isLeaving ? (
265
+ <span className="flex items-center gap-1">
266
+ <MiniSpinner />
267
+ Leaving...
268
+ </span>
269
+ ) : (
270
+ 'Leave'
271
+ )}
272
+ </button>
273
+ ) : (
274
+ <button
275
+ onClick={onJoin}
276
+ disabled={isProcessing}
277
+ className="px-3 py-1.5 text-xs font-medium bg-accent-cyan text-bg-deep rounded-md hover:bg-accent-cyan/90 disabled:opacity-50 disabled:cursor-not-allowed transition-colors"
278
+ >
279
+ {isJoining ? (
280
+ <span className="flex items-center gap-1">
281
+ <MiniSpinner />
282
+ Joining...
283
+ </span>
284
+ ) : (
285
+ 'Join'
286
+ )}
287
+ </button>
288
+ )}
289
+ </div>
290
+ );
291
+ }
292
+
293
+ // Icons
294
+ function HashIcon({ className = '' }: { className?: string }) {
295
+ return (
296
+ <svg className={className} width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
297
+ <line x1="4" y1="9" x2="20" y2="9" />
298
+ <line x1="4" y1="15" x2="20" y2="15" />
299
+ <line x1="10" y1="3" x2="8" y2="21" />
300
+ <line x1="16" y1="3" x2="14" y2="21" />
301
+ </svg>
302
+ );
303
+ }
304
+
305
+ function SearchIcon({ className = '' }: { className?: string }) {
306
+ return (
307
+ <svg className={className} width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
308
+ <circle cx="11" cy="11" r="8" />
309
+ <line x1="21" y1="21" x2="16.65" y2="16.65" />
310
+ </svg>
311
+ );
312
+ }
313
+
314
+ function CloseIcon({ className = '' }: { className?: string }) {
315
+ return (
316
+ <svg className={className} width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
317
+ <line x1="18" y1="6" x2="6" y2="18" />
318
+ <line x1="6" y1="6" x2="18" y2="18" />
319
+ </svg>
320
+ );
321
+ }
322
+
323
+ function LockIcon() {
324
+ return (
325
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
326
+ <rect x="3" y="11" width="18" height="11" rx="2" ry="2" />
327
+ <path d="M7 11V7a5 5 0 0 1 10 0v4" />
328
+ </svg>
329
+ );
330
+ }
331
+
332
+ function LoadingSpinner() {
333
+ return (
334
+ <svg className="animate-spin mx-auto text-accent-cyan" width="24" height="24" viewBox="0 0 24 24">
335
+ <circle
336
+ cx="12"
337
+ cy="12"
338
+ r="10"
339
+ stroke="currentColor"
340
+ strokeWidth="2"
341
+ fill="none"
342
+ strokeDasharray="32"
343
+ strokeLinecap="round"
344
+ />
345
+ </svg>
346
+ );
347
+ }
348
+
349
+ function MiniSpinner() {
350
+ return (
351
+ <svg className="animate-spin" width="12" height="12" viewBox="0 0 24 24">
352
+ <circle
353
+ cx="12"
354
+ cy="12"
355
+ r="10"
356
+ stroke="currentColor"
357
+ strokeWidth="2"
358
+ fill="none"
359
+ strokeDasharray="32"
360
+ strokeLinecap="round"
361
+ />
362
+ </svg>
363
+ );
364
+ }
365
+
366
+ function ErrorIcon() {
367
+ return (
368
+ <svg className="mx-auto text-error" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
369
+ <circle cx="12" cy="12" r="10" />
370
+ <line x1="12" y1="8" x2="12" y2="12" />
371
+ <line x1="12" y1="16" x2="12.01" y2="16" />
372
+ </svg>
373
+ );
374
+ }
375
+
376
+ function EmptyIcon() {
377
+ return (
378
+ <svg className="mx-auto text-text-muted" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
379
+ <circle cx="12" cy="12" r="10" />
380
+ <line x1="8" y1="15" x2="16" y2="15" strokeLinecap="round" />
381
+ <circle cx="9" cy="9" r="1" fill="currentColor" stroke="none" />
382
+ <circle cx="15" cy="9" r="1" fill="currentColor" stroke="none" />
383
+ </svg>
384
+ );
385
+ }
@@ -0,0 +1,261 @@
1
+ /**
2
+ * ChannelChat Component
3
+ *
4
+ * Chat view for a channel or DM conversation.
5
+ * Displays messages and provides input for sending new messages.
6
+ * Uses shared MessageComposer for consistent attachment/paste support.
7
+ */
8
+
9
+ import React, { useCallback, useRef, useEffect } from 'react';
10
+ import type { ChannelMessage } from './hooks/useChannels';
11
+ import type { Agent } from '../types';
12
+ import type { UserPresence } from './hooks/usePresence';
13
+ import { MessageSenderName } from './MessageSenderName';
14
+ import { MessageComposer } from './MessageComposer';
15
+ import type { HumanUser } from './MentionAutocomplete';
16
+
17
+ export interface ChannelChatProps {
18
+ /** Current channel name */
19
+ channel: string;
20
+ /** Messages in this channel */
21
+ messages: ChannelMessage[];
22
+ /** Current user's username */
23
+ currentUser: string;
24
+ /** Send a message (now supports attachments) */
25
+ onSendMessage: (body: string, thread?: string, attachmentIds?: string[]) => void;
26
+ /** Online users for mentions */
27
+ onlineUsers?: string[];
28
+ /** Agents list for profile lookup */
29
+ agents?: Agent[];
30
+ /** Online user presence list for profile lookup */
31
+ onlineUserPresence?: UserPresence[];
32
+ /** Callback when agent name is clicked */
33
+ onAgentClick?: (agent: Agent) => void;
34
+ /** Callback when user name is clicked */
35
+ onUserClick?: (user: UserPresence) => void;
36
+ /** Whether message sending is in progress */
37
+ isSending?: boolean;
38
+ }
39
+
40
+ export function ChannelChat({
41
+ channel,
42
+ messages,
43
+ currentUser,
44
+ onSendMessage,
45
+ onlineUsers = [],
46
+ agents = [],
47
+ onlineUserPresence = [],
48
+ onAgentClick,
49
+ onUserClick,
50
+ isSending = false,
51
+ }: ChannelChatProps) {
52
+ const messagesEndRef = useRef<HTMLDivElement>(null);
53
+
54
+ // Filter messages for this channel
55
+ const channelMessages = messages.filter(m => {
56
+ if (m.type === 'channel_message') {
57
+ return m.channel === channel;
58
+ }
59
+ // For DMs, check if this is the right conversation
60
+ if (m.type === 'direct_message' && channel.startsWith('dm:')) {
61
+ const participants = channel.split(':').slice(1);
62
+ return participants.includes(m.from) || participants.includes(m.to || '');
63
+ }
64
+ return false;
65
+ });
66
+
67
+ // Scroll to bottom on new messages
68
+ useEffect(() => {
69
+ messagesEndRef.current?.scrollIntoView({ behavior: 'smooth' });
70
+ }, [channelMessages.length]);
71
+
72
+ // Handle message send with attachments
73
+ const handleSend = useCallback(async (content: string, attachmentIds?: string[]): Promise<boolean> => {
74
+ if (!content.trim() && (!attachmentIds || attachmentIds.length === 0)) return false;
75
+ onSendMessage(content, undefined, attachmentIds);
76
+ return true;
77
+ }, [onSendMessage]);
78
+
79
+ const isDm = channel.startsWith('dm:');
80
+ const channelDisplay = isDm
81
+ ? channel.split(':').slice(1).filter(u => u !== currentUser).join(', ')
82
+ : channel;
83
+
84
+ // Convert online user presence to HumanUser format for mentions
85
+ const humanUsers: HumanUser[] = onlineUserPresence.map(u => ({
86
+ username: u.username,
87
+ avatarUrl: u.avatarUrl,
88
+ }));
89
+
90
+ return (
91
+ <div style={{
92
+ display: 'flex',
93
+ flexDirection: 'column',
94
+ height: '100%',
95
+ backgroundColor: 'var(--bg-primary, #11111b)',
96
+ }}>
97
+ {/* Header */}
98
+ <div style={{
99
+ padding: '16px 20px',
100
+ borderBottom: '1px solid var(--border-color, #313244)',
101
+ display: 'flex',
102
+ alignItems: 'center',
103
+ gap: '8px',
104
+ }}>
105
+ <span style={{
106
+ fontSize: '16px',
107
+ fontWeight: 600,
108
+ color: 'var(--text-primary, #cdd6f4)',
109
+ }}>
110
+ {isDm ? '@' : ''}{channelDisplay}
111
+ </span>
112
+ {!isDm && (
113
+ <span style={{
114
+ fontSize: '13px',
115
+ color: 'var(--text-muted, #6c7086)',
116
+ }}>
117
+ Channel
118
+ </span>
119
+ )}
120
+ </div>
121
+
122
+ {/* Messages */}
123
+ <div style={{
124
+ flex: 1,
125
+ overflow: 'auto',
126
+ padding: '16px 20px',
127
+ display: 'flex',
128
+ flexDirection: 'column',
129
+ gap: '8px',
130
+ }}>
131
+ {channelMessages.length === 0 ? (
132
+ <div style={{
133
+ textAlign: 'center',
134
+ color: 'var(--text-muted, #6c7086)',
135
+ padding: '40px 20px',
136
+ }}>
137
+ <div style={{ fontSize: '32px', marginBottom: '12px' }}>
138
+ {isDm ? '👋' : '💬'}
139
+ </div>
140
+ <div style={{ fontSize: '16px', fontWeight: 500, marginBottom: '4px' }}>
141
+ {isDm
142
+ ? `Start a conversation with ${channelDisplay}`
143
+ : `Welcome to ${channel}`}
144
+ </div>
145
+ <div style={{ fontSize: '13px' }}>
146
+ {isDm
147
+ ? 'Send a message to get started'
148
+ : 'This is the beginning of the channel'}
149
+ </div>
150
+ </div>
151
+ ) : (
152
+ channelMessages.map((msg) => (
153
+ <MessageBubble
154
+ key={msg.id}
155
+ message={msg}
156
+ isOwn={msg.from === currentUser}
157
+ agents={agents}
158
+ onlineUserPresence={onlineUserPresence}
159
+ onAgentClick={onAgentClick}
160
+ onUserClick={onUserClick}
161
+ />
162
+ ))
163
+ )}
164
+ <div ref={messagesEndRef} />
165
+ </div>
166
+
167
+ {/* Input - Using shared MessageComposer for attachment support */}
168
+ <div style={{
169
+ padding: '16px 20px',
170
+ borderTop: '1px solid var(--border-color, #313244)',
171
+ }}>
172
+ <MessageComposer
173
+ onSend={handleSend}
174
+ isSending={isSending}
175
+ placeholder={`Message ${channelDisplay}...`}
176
+ agents={agents}
177
+ humanUsers={humanUsers}
178
+ />
179
+ </div>
180
+ </div>
181
+ );
182
+ }
183
+
184
+ interface MessageBubbleProps {
185
+ message: ChannelMessage;
186
+ isOwn: boolean;
187
+ agents?: Agent[];
188
+ onlineUserPresence?: UserPresence[];
189
+ onAgentClick?: (agent: Agent) => void;
190
+ onUserClick?: (user: UserPresence) => void;
191
+ }
192
+
193
+ function MessageBubble({
194
+ message,
195
+ isOwn,
196
+ agents = [],
197
+ onlineUserPresence = [],
198
+ onAgentClick,
199
+ onUserClick,
200
+ }: MessageBubbleProps) {
201
+ const time = new Date(message.timestamp).toLocaleTimeString([], {
202
+ hour: '2-digit',
203
+ minute: '2-digit',
204
+ });
205
+
206
+ // Look up agent or user for the sender
207
+ const senderAgent = agents.find(a => a.name.toLowerCase() === message.from.toLowerCase() && !a.isHuman);
208
+ const senderUser = onlineUserPresence.find(u => u.username.toLowerCase() === message.from.toLowerCase());
209
+
210
+ const nameColor = isOwn
211
+ ? 'var(--accent-color, #89b4fa)'
212
+ : 'var(--text-primary, #cdd6f4)';
213
+
214
+ return (
215
+ <div style={{
216
+ display: 'flex',
217
+ flexDirection: 'column',
218
+ alignItems: isOwn ? 'flex-end' : 'flex-start',
219
+ }}>
220
+ <div style={{
221
+ display: 'flex',
222
+ alignItems: 'baseline',
223
+ gap: '8px',
224
+ marginBottom: '4px',
225
+ }}>
226
+ <MessageSenderName
227
+ displayName={message.from}
228
+ color={nameColor}
229
+ isCurrentUser={isOwn}
230
+ agent={senderAgent}
231
+ userPresence={senderUser}
232
+ onAgentClick={onAgentClick}
233
+ onUserClick={onUserClick}
234
+ />
235
+ <span style={{
236
+ fontSize: '11px',
237
+ color: 'var(--text-muted, #6c7086)',
238
+ }}>
239
+ {time}
240
+ </span>
241
+ </div>
242
+ <div style={{
243
+ maxWidth: '70%',
244
+ padding: '10px 14px',
245
+ backgroundColor: isOwn
246
+ ? 'var(--accent-color, #89b4fa)'
247
+ : 'var(--bg-secondary, #1e1e2e)',
248
+ color: isOwn ? '#11111b' : 'var(--text-primary, #cdd6f4)',
249
+ borderRadius: isOwn ? '16px 16px 4px 16px' : '16px 16px 16px 4px',
250
+ fontSize: '14px',
251
+ lineHeight: '1.4',
252
+ wordBreak: 'break-word',
253
+ whiteSpace: 'pre-wrap',
254
+ }}>
255
+ {message.body}
256
+ </div>
257
+ </div>
258
+ );
259
+ }
260
+
261
+ export default ChannelChat;