@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.
- package/out/404.html +1 -1
- package/out/_next/static/chunks/{118-4c8241b0218335de.js → 118-ae2b650136a5a5fc.js} +1 -1
- package/out/_next/static/chunks/407-0c82986cf79c8ecb.js +1 -0
- package/out/_next/static/chunks/app/app/[[...slug]]/{page-1e81c047cff17212.js → page-f7eca1b66fb4249b.js} +1 -1
- package/out/_next/static/chunks/app/{page-6892fe2dd07fb48b.js → page-0ee604f7070d14c0.js} +1 -1
- package/out/_next/static/css/8968d98ed4c4d33f.css +1 -0
- package/out/about.html +2 -2
- package/out/about.txt +1 -1
- package/out/app/onboarding.html +1 -1
- package/out/app/onboarding.txt +1 -1
- package/out/app.html +1 -1
- package/out/app.txt +2 -2
- package/out/blog/go-to-bed-wake-up-to-a-finished-product.html +2 -2
- package/out/blog/go-to-bed-wake-up-to-a-finished-product.txt +1 -1
- package/out/blog/let-them-cook-multi-agent-orchestration.html +2 -2
- package/out/blog/let-them-cook-multi-agent-orchestration.txt +2 -2
- package/out/blog.html +2 -2
- package/out/blog.txt +1 -1
- package/out/careers.html +2 -2
- package/out/careers.txt +1 -1
- package/out/changelog.html +2 -2
- package/out/changelog.txt +1 -1
- package/out/cloud/link.html +1 -1
- package/out/cloud/link.txt +2 -2
- package/out/complete-profile.html +2 -2
- package/out/complete-profile.txt +1 -1
- package/out/connect-repos.html +1 -1
- package/out/connect-repos.txt +1 -1
- package/out/contact.html +2 -2
- package/out/contact.txt +1 -1
- package/out/docs.html +2 -2
- package/out/docs.txt +1 -1
- package/out/history.html +1 -1
- package/out/history.txt +2 -2
- package/out/index.html +1 -1
- package/out/index.txt +2 -2
- package/out/login.html +2 -2
- package/out/login.txt +1 -1
- package/out/metrics.html +1 -1
- package/out/metrics.txt +2 -2
- package/out/pricing.html +2 -2
- package/out/pricing.txt +1 -1
- package/out/privacy.html +2 -2
- package/out/privacy.txt +1 -1
- package/out/providers/setup/claude.html +1 -1
- package/out/providers/setup/claude.txt +1 -1
- package/out/providers/setup/codex.html +1 -1
- package/out/providers/setup/codex.txt +1 -1
- package/out/providers/setup/cursor.html +1 -1
- package/out/providers/setup/cursor.txt +1 -1
- package/out/providers.html +1 -1
- package/out/providers.txt +1 -1
- package/out/security.html +2 -2
- package/out/security.txt +1 -1
- package/out/signup.html +2 -2
- package/out/signup.txt +1 -1
- package/out/terms.html +2 -2
- package/out/terms.txt +1 -1
- package/package.json +7 -1
- package/src/app/about/page.tsx +7 -0
- package/src/app/app/[[...slug]]/DashboardPageClient.tsx +853 -0
- package/src/app/app/[[...slug]]/page.tsx +23 -0
- package/src/app/app/onboarding/page.tsx +394 -0
- package/src/app/apple-icon.png +0 -0
- package/src/app/blog/go-to-bed-wake-up-to-a-finished-product/page.tsx +88 -0
- package/src/app/blog/let-them-cook-multi-agent-orchestration/page.tsx +93 -0
- package/src/app/blog/page.tsx +15 -0
- package/src/app/careers/page.tsx +7 -0
- package/src/app/changelog/page.tsx +7 -0
- package/src/app/cloud/link/page.tsx +464 -0
- package/src/app/complete-profile/page.tsx +204 -0
- package/src/app/connect-repos/page.tsx +410 -0
- package/src/app/contact/page.tsx +7 -0
- package/src/app/docs/page.tsx +7 -0
- package/src/app/favicon.png +0 -0
- package/src/app/globals.css +200 -0
- package/src/app/history/page.tsx +658 -0
- package/src/app/layout.tsx +25 -0
- package/src/app/login/page.tsx +424 -0
- package/src/app/metrics/page.tsx +781 -0
- package/src/app/page.tsx +59 -0
- package/src/app/pricing/page.tsx +7 -0
- package/src/app/privacy/page.tsx +7 -0
- package/src/app/providers/page.tsx +193 -0
- package/src/app/providers/setup/[provider]/ProviderSetupClient.tsx +197 -0
- package/src/app/providers/setup/[provider]/constants.ts +35 -0
- package/src/app/providers/setup/[provider]/page.tsx +42 -0
- package/src/app/security/page.tsx +7 -0
- package/src/app/signup/page.tsx +533 -0
- package/src/app/terms/page.tsx +7 -0
- package/src/components/ActivityFeed.tsx +216 -0
- package/src/components/AddWorkspaceModal.tsx +170 -0
- package/src/components/AgentCard.test.tsx +134 -0
- package/src/components/AgentCard.tsx +585 -0
- package/src/components/AgentList.test.tsx +147 -0
- package/src/components/AgentList.tsx +419 -0
- package/src/components/AgentLogPreview.tsx +173 -0
- package/src/components/AgentProfilePanel.tsx +569 -0
- package/src/components/App.tsx +3424 -0
- package/src/components/BillingPanel.tsx +922 -0
- package/src/components/BillingResult.tsx +447 -0
- package/src/components/BroadcastComposer.tsx +690 -0
- package/src/components/ChannelAdminPanel.tsx +773 -0
- package/src/components/ChannelBrowser.tsx +385 -0
- package/src/components/ChannelChat.tsx +261 -0
- package/src/components/ChannelSidebar.tsx +399 -0
- package/src/components/CloudSessionProvider.tsx +130 -0
- package/src/components/CommandPalette.tsx +815 -0
- package/src/components/ConfirmationDialog.tsx +133 -0
- package/src/components/ConversationHistory.tsx +518 -0
- package/src/components/CoordinatorPanel.tsx +956 -0
- package/src/components/DecisionQueue.tsx +717 -0
- package/src/components/DirectMessageView.tsx +164 -0
- package/src/components/FileAutocomplete.tsx +368 -0
- package/src/components/FleetOverview.tsx +278 -0
- package/src/components/LogViewer.tsx +310 -0
- package/src/components/LogViewerPanel.tsx +482 -0
- package/src/components/Logo.tsx +284 -0
- package/src/components/MentionAutocomplete.tsx +384 -0
- package/src/components/MessageComposer.tsx +473 -0
- package/src/components/MessageList.tsx +725 -0
- package/src/components/MessageSenderName.tsx +91 -0
- package/src/components/MessageStatusIndicator.tsx +142 -0
- package/src/components/NewConversationModal.tsx +400 -0
- package/src/components/NotificationToast.tsx +488 -0
- package/src/components/OnlineUsersIndicator.tsx +164 -0
- package/src/components/Pagination.tsx +124 -0
- package/src/components/PricingPlans.tsx +386 -0
- package/src/components/ProjectList.tsx +711 -0
- package/src/components/ProviderAuthFlow.tsx +343 -0
- package/src/components/ProviderConnectionList.tsx +375 -0
- package/src/components/ProvisioningProgress.tsx +730 -0
- package/src/components/ReactionChips.tsx +70 -0
- package/src/components/ReactionPicker.tsx +121 -0
- package/src/components/RepoAccessPanel.tsx +787 -0
- package/src/components/RepositoriesPanel.tsx +901 -0
- package/src/components/ServerCard.tsx +202 -0
- package/src/components/SessionExpiredModal.tsx +128 -0
- package/src/components/SpawnModal.test.tsx +190 -0
- package/src/components/SpawnModal.tsx +1001 -0
- package/src/components/TaskAssignmentUI.tsx +375 -0
- package/src/components/TerminalProviderSetup.tsx +517 -0
- package/src/components/ThemeProvider.tsx +159 -0
- package/src/components/ThinkingIndicator.tsx +231 -0
- package/src/components/ThreadList.tsx +198 -0
- package/src/components/ThreadPanel.tsx +405 -0
- package/src/components/TrajectoryViewer.tsx +698 -0
- package/src/components/TypingIndicator.tsx +69 -0
- package/src/components/UsageBanner.tsx +231 -0
- package/src/components/UserProfilePanel.tsx +233 -0
- package/src/components/WorkspaceContext.tsx +95 -0
- package/src/components/WorkspaceSelector.tsx +234 -0
- package/src/components/WorkspaceStatusIndicator.tsx +396 -0
- package/src/components/XTermInteractive.tsx +516 -0
- package/src/components/XTermLogViewer.tsx +719 -0
- package/src/components/channels/ChannelDialogs.tsx +1411 -0
- package/src/components/channels/ChannelHeader.tsx +317 -0
- package/src/components/channels/ChannelMessageList.tsx +463 -0
- package/src/components/channels/ChannelViewV1.tsx +146 -0
- package/src/components/channels/MessageInput.tsx +302 -0
- package/src/components/channels/SearchInput.tsx +172 -0
- package/src/components/channels/SearchResults.tsx +336 -0
- package/src/components/channels/api.test.ts +1527 -0
- package/src/components/channels/api.ts +703 -0
- package/src/components/channels/index.ts +76 -0
- package/src/components/channels/mockApi.ts +344 -0
- package/src/components/channels/types.ts +566 -0
- package/src/components/hooks/index.ts +58 -0
- package/src/components/hooks/useAgentLogs.ts +504 -0
- package/src/components/hooks/useAgents.ts +127 -0
- package/src/components/hooks/useBroadcastDedup.test.ts +371 -0
- package/src/components/hooks/useBroadcastDedup.ts +86 -0
- package/src/components/hooks/useChannelAdmin.ts +329 -0
- package/src/components/hooks/useChannelBrowser.ts +239 -0
- package/src/components/hooks/useChannelCommands.ts +138 -0
- package/src/components/hooks/useChannels.ts +367 -0
- package/src/components/hooks/useDebounce.ts +29 -0
- package/src/components/hooks/useDirectMessage.test.ts +952 -0
- package/src/components/hooks/useDirectMessage.ts +141 -0
- package/src/components/hooks/useMessages.ts +310 -0
- package/src/components/hooks/useOrchestrator.test.ts +165 -0
- package/src/components/hooks/useOrchestrator.ts +424 -0
- package/src/components/hooks/usePinnedAgents.test.ts +356 -0
- package/src/components/hooks/usePinnedAgents.ts +140 -0
- package/src/components/hooks/usePresence.test.ts +245 -0
- package/src/components/hooks/usePresence.ts +377 -0
- package/src/components/hooks/useRecentRepos.ts +130 -0
- package/src/components/hooks/useSession.ts +209 -0
- package/src/components/hooks/useThread.ts +138 -0
- package/src/components/hooks/useTrajectory.ts +265 -0
- package/src/components/hooks/useWebSocket.ts +290 -0
- package/src/components/hooks/useWorkspaceMembers.ts +132 -0
- package/src/components/hooks/useWorkspaceRepos.ts +73 -0
- package/src/components/hooks/useWorkspaceStatus.ts +237 -0
- package/src/components/index.ts +81 -0
- package/src/components/layout/Header.tsx +311 -0
- package/src/components/layout/RepoContextHeader.tsx +361 -0
- package/src/components/layout/Sidebar.archive.test.tsx +126 -0
- package/src/components/layout/Sidebar.test.tsx +691 -0
- package/src/components/layout/Sidebar.tsx +900 -0
- package/src/components/layout/index.ts +7 -0
- package/src/components/settings/BillingSettingsPanel.tsx +564 -0
- package/src/components/settings/SettingsPage.tsx +683 -0
- package/src/components/settings/TeamSettingsPanel.tsx +560 -0
- package/src/components/settings/WorkspaceSettingsPanel.tsx +1368 -0
- package/src/components/settings/index.ts +11 -0
- package/src/components/settings/types.ts +79 -0
- package/src/components/utils/messageFormatting.test.tsx +331 -0
- package/src/components/utils/messageFormatting.tsx +597 -0
- package/src/index.ts +63 -0
- package/src/landing/AboutPage.tsx +77 -0
- package/src/landing/BlogContent.tsx +187 -0
- package/src/landing/BlogPage.tsx +47 -0
- package/src/landing/CareersPage.tsx +53 -0
- package/src/landing/ChangelogPage.tsx +33 -0
- package/src/landing/ContactPage.tsx +41 -0
- package/src/landing/DocsPage.tsx +43 -0
- package/src/landing/LandingPage.tsx +702 -0
- package/src/landing/PricingPage.tsx +549 -0
- package/src/landing/PrivacyPage.tsx +117 -0
- package/src/landing/SecurityPage.tsx +42 -0
- package/src/landing/StaticPage.tsx +165 -0
- package/src/landing/TermsPage.tsx +125 -0
- package/src/landing/blogData.ts +312 -0
- package/src/landing/index.ts +18 -0
- package/src/landing/styles.css +3673 -0
- package/src/lib/agent-merge.test.ts +43 -0
- package/src/lib/agent-merge.ts +35 -0
- package/src/lib/api.ts +1294 -0
- package/src/lib/cloudApi.ts +893 -0
- package/src/lib/colors.test.ts +175 -0
- package/src/lib/colors.ts +218 -0
- package/src/lib/config.ts +109 -0
- package/src/lib/hierarchy.ts +242 -0
- package/src/lib/stuckDetection.ts +142 -0
- package/src/lib/useUrlRouting.ts +190 -0
- package/src/types/index.ts +317 -0
- package/src/types/threading.ts +7 -0
- package/out/_next/static/chunks/285-dc644487a8d6500d.js +0 -1
- package/out/_next/static/css/4c58d9cf493aa626.css +0 -1
- /package/out/_next/static/{AqelRhy1vr2nBUcU0Iqcp → IxfA6RZu4trcsEMYlkQra}/_buildManifest.js +0 -0
- /package/out/_next/static/{AqelRhy1vr2nBUcU0Iqcp → IxfA6RZu4trcsEMYlkQra}/_ssgManifest.js +0 -0
- /package/out/_next/static/chunks/{528-d375bc8b46912d2c.js → 528-f5f676996d613c25.js} +0 -0
- /package/out/_next/static/chunks/app/blog/let-them-cook-multi-agent-orchestration/{page-a58308f43557b908.js → page-b194f207fbd91862.js} +0 -0
|
@@ -0,0 +1,367 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* useChannels Hook
|
|
3
|
+
*
|
|
4
|
+
* Manages channel-based messaging via the presence WebSocket.
|
|
5
|
+
* - Join/leave channels
|
|
6
|
+
* - Send/receive channel messages
|
|
7
|
+
* - Send/receive direct messages
|
|
8
|
+
* - Track joined channels
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import { useState, useEffect, useCallback, useRef } from 'react';
|
|
12
|
+
import { getWebSocketUrl } from '../../lib/config';
|
|
13
|
+
|
|
14
|
+
/** Channel message from server */
|
|
15
|
+
export interface ChannelMessage {
|
|
16
|
+
id: string;
|
|
17
|
+
type: 'channel_message' | 'direct_message';
|
|
18
|
+
channel?: string;
|
|
19
|
+
from: string;
|
|
20
|
+
to?: string;
|
|
21
|
+
body: string;
|
|
22
|
+
thread?: string;
|
|
23
|
+
timestamp: string;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface UseChannelsOptions {
|
|
27
|
+
/** Current user info (if logged in) */
|
|
28
|
+
currentUser?: {
|
|
29
|
+
username: string;
|
|
30
|
+
avatarUrl?: string;
|
|
31
|
+
};
|
|
32
|
+
/** WebSocket URL (defaults to same as main WebSocket) */
|
|
33
|
+
wsUrl?: string;
|
|
34
|
+
/** Whether to auto-connect */
|
|
35
|
+
autoConnect?: boolean;
|
|
36
|
+
/** Callback when a message is received */
|
|
37
|
+
onMessage?: (message: ChannelMessage) => void;
|
|
38
|
+
/** Workspace ID for cloud channel message subscription */
|
|
39
|
+
workspaceId?: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/** Connection quality state for UI indicators */
|
|
43
|
+
export type ChannelConnectionState = 'connected' | 'reconnecting' | 'disconnected';
|
|
44
|
+
|
|
45
|
+
export interface UseChannelsReturn {
|
|
46
|
+
/** List of channels user has joined */
|
|
47
|
+
channels: string[];
|
|
48
|
+
/** Join a channel */
|
|
49
|
+
joinChannel: (channel: string) => void;
|
|
50
|
+
/** Leave a channel */
|
|
51
|
+
leaveChannel: (channel: string) => void;
|
|
52
|
+
/** Send a message to a channel */
|
|
53
|
+
sendChannelMessage: (channel: string, body: string, thread?: string) => void;
|
|
54
|
+
/** Send a direct message */
|
|
55
|
+
sendDirectMessage: (to: string, body: string, thread?: string) => void;
|
|
56
|
+
/** Whether connected */
|
|
57
|
+
isConnected: boolean;
|
|
58
|
+
/** Granular connection quality: 'connected', 'reconnecting', or 'disconnected' */
|
|
59
|
+
connectionState: ChannelConnectionState;
|
|
60
|
+
/** Recent messages (last 100) */
|
|
61
|
+
messages: ChannelMessage[];
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Get the presence WebSocket URL using centralized config
|
|
66
|
+
*/
|
|
67
|
+
function getPresenceUrl(): string {
|
|
68
|
+
return getWebSocketUrl('/ws/presence');
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
const MAX_MESSAGES = 100;
|
|
72
|
+
|
|
73
|
+
export function useChannels(options: UseChannelsOptions = {}): UseChannelsReturn {
|
|
74
|
+
const { currentUser, wsUrl, autoConnect = true, onMessage, workspaceId } = options;
|
|
75
|
+
|
|
76
|
+
const [channels, setChannels] = useState<string[]>([]);
|
|
77
|
+
const [messages, setMessages] = useState<ChannelMessage[]>([]);
|
|
78
|
+
const [isConnected, setIsConnected] = useState(false);
|
|
79
|
+
const [connectionState, setConnectionState] = useState<ChannelConnectionState>('disconnected');
|
|
80
|
+
|
|
81
|
+
const wsRef = useRef<WebSocket | null>(null);
|
|
82
|
+
const reconnectTimeoutRef = useRef<NodeJS.Timeout | null>(null);
|
|
83
|
+
const reconnectAttemptsRef = useRef(0);
|
|
84
|
+
const isConnectingRef = useRef(false);
|
|
85
|
+
const hasConnectedBeforeRef = useRef(false);
|
|
86
|
+
const currentUserRef = useRef(currentUser);
|
|
87
|
+
const onMessageRef = useRef(onMessage);
|
|
88
|
+
const workspaceIdRef = useRef(workspaceId);
|
|
89
|
+
currentUserRef.current = currentUser;
|
|
90
|
+
onMessageRef.current = onMessage;
|
|
91
|
+
workspaceIdRef.current = workspaceId;
|
|
92
|
+
|
|
93
|
+
const connect = useCallback(() => {
|
|
94
|
+
const user = currentUserRef.current;
|
|
95
|
+
if (!user) return;
|
|
96
|
+
if (wsRef.current?.readyState === WebSocket.OPEN) return;
|
|
97
|
+
if (isConnectingRef.current) return;
|
|
98
|
+
|
|
99
|
+
// Track reconnection state
|
|
100
|
+
if (hasConnectedBeforeRef.current) {
|
|
101
|
+
setConnectionState('reconnecting');
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
isConnectingRef.current = true;
|
|
105
|
+
const url = wsUrl || getPresenceUrl();
|
|
106
|
+
|
|
107
|
+
try {
|
|
108
|
+
const ws = new WebSocket(url);
|
|
109
|
+
|
|
110
|
+
ws.onopen = () => {
|
|
111
|
+
isConnectingRef.current = false;
|
|
112
|
+
setIsConnected(true);
|
|
113
|
+
setConnectionState('connected');
|
|
114
|
+
reconnectAttemptsRef.current = 0;
|
|
115
|
+
hasConnectedBeforeRef.current = true;
|
|
116
|
+
|
|
117
|
+
const currentUserInfo = currentUserRef.current;
|
|
118
|
+
if (currentUserInfo) {
|
|
119
|
+
// Announce presence (this registers with UserBridge on server)
|
|
120
|
+
ws.send(JSON.stringify({
|
|
121
|
+
type: 'presence',
|
|
122
|
+
action: 'join',
|
|
123
|
+
user: {
|
|
124
|
+
username: currentUserInfo.username,
|
|
125
|
+
avatarUrl: currentUserInfo.avatarUrl,
|
|
126
|
+
},
|
|
127
|
+
}));
|
|
128
|
+
|
|
129
|
+
// Subscribe to channel messages for this workspace (cloud mode)
|
|
130
|
+
const wsId = workspaceIdRef.current;
|
|
131
|
+
if (wsId) {
|
|
132
|
+
ws.send(JSON.stringify({
|
|
133
|
+
type: 'subscribe_channels',
|
|
134
|
+
workspaceId: wsId,
|
|
135
|
+
}));
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
ws.onclose = () => {
|
|
141
|
+
isConnectingRef.current = false;
|
|
142
|
+
setIsConnected(false);
|
|
143
|
+
wsRef.current = null;
|
|
144
|
+
|
|
145
|
+
if (currentUserRef.current) {
|
|
146
|
+
setConnectionState('reconnecting');
|
|
147
|
+
const baseDelay = Math.min(
|
|
148
|
+
500 * Math.pow(2, reconnectAttemptsRef.current),
|
|
149
|
+
15000
|
|
150
|
+
);
|
|
151
|
+
// Add jitter to prevent thundering herd
|
|
152
|
+
const delay = Math.round(baseDelay * (0.5 + Math.random() * 0.5));
|
|
153
|
+
reconnectAttemptsRef.current++;
|
|
154
|
+
|
|
155
|
+
console.log(`[WS:Channels] Reconnecting (attempt ${reconnectAttemptsRef.current})...`);
|
|
156
|
+
|
|
157
|
+
reconnectTimeoutRef.current = setTimeout(() => {
|
|
158
|
+
connect();
|
|
159
|
+
}, delay);
|
|
160
|
+
} else {
|
|
161
|
+
setConnectionState('disconnected');
|
|
162
|
+
}
|
|
163
|
+
};
|
|
164
|
+
|
|
165
|
+
ws.onerror = (event) => {
|
|
166
|
+
console.error('[useChannels] Error:', event);
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
ws.onmessage = (event) => {
|
|
170
|
+
try {
|
|
171
|
+
const msg = JSON.parse(event.data);
|
|
172
|
+
|
|
173
|
+
switch (msg.type) {
|
|
174
|
+
case 'channel_joined':
|
|
175
|
+
if (msg.success) {
|
|
176
|
+
setChannels((prev) => {
|
|
177
|
+
if (prev.includes(msg.channel)) return prev;
|
|
178
|
+
return [...prev, msg.channel];
|
|
179
|
+
});
|
|
180
|
+
}
|
|
181
|
+
break;
|
|
182
|
+
|
|
183
|
+
case 'channel_left':
|
|
184
|
+
if (msg.success) {
|
|
185
|
+
setChannels((prev) => prev.filter((c) => c !== msg.channel));
|
|
186
|
+
}
|
|
187
|
+
break;
|
|
188
|
+
|
|
189
|
+
case 'channel_message': {
|
|
190
|
+
const channelMsg: ChannelMessage = {
|
|
191
|
+
id: `${Date.now()}-${Math.random().toString(36).slice(2)}`,
|
|
192
|
+
type: 'channel_message',
|
|
193
|
+
channel: msg.channel,
|
|
194
|
+
from: msg.from,
|
|
195
|
+
body: msg.body,
|
|
196
|
+
thread: msg.thread,
|
|
197
|
+
timestamp: msg.timestamp || new Date().toISOString(),
|
|
198
|
+
};
|
|
199
|
+
setMessages((prev) => {
|
|
200
|
+
const updated = [...prev, channelMsg];
|
|
201
|
+
return updated.slice(-MAX_MESSAGES);
|
|
202
|
+
});
|
|
203
|
+
onMessageRef.current?.(channelMsg);
|
|
204
|
+
break;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
case 'direct_message': {
|
|
208
|
+
const dmMsg: ChannelMessage = {
|
|
209
|
+
id: `${Date.now()}-${Math.random().toString(36).slice(2)}`,
|
|
210
|
+
type: 'direct_message',
|
|
211
|
+
from: msg.from,
|
|
212
|
+
to: currentUserRef.current?.username,
|
|
213
|
+
body: msg.body,
|
|
214
|
+
thread: msg.thread,
|
|
215
|
+
timestamp: msg.timestamp || new Date().toISOString(),
|
|
216
|
+
};
|
|
217
|
+
setMessages((prev) => {
|
|
218
|
+
const updated = [...prev, dmMsg];
|
|
219
|
+
return updated.slice(-MAX_MESSAGES);
|
|
220
|
+
});
|
|
221
|
+
onMessageRef.current?.(dmMsg);
|
|
222
|
+
break;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
} catch (e) {
|
|
226
|
+
console.error('[useChannels] Failed to parse message:', e);
|
|
227
|
+
}
|
|
228
|
+
};
|
|
229
|
+
|
|
230
|
+
wsRef.current = ws;
|
|
231
|
+
} catch (e) {
|
|
232
|
+
console.error('[useChannels] Failed to create WebSocket:', e);
|
|
233
|
+
}
|
|
234
|
+
}, [wsUrl]);
|
|
235
|
+
|
|
236
|
+
const disconnect = useCallback(() => {
|
|
237
|
+
if (reconnectTimeoutRef.current) {
|
|
238
|
+
clearTimeout(reconnectTimeoutRef.current);
|
|
239
|
+
reconnectTimeoutRef.current = null;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
isConnectingRef.current = false;
|
|
243
|
+
|
|
244
|
+
if (wsRef.current) {
|
|
245
|
+
const ws = wsRef.current;
|
|
246
|
+
ws.onclose = null;
|
|
247
|
+
ws.onerror = null;
|
|
248
|
+
|
|
249
|
+
const user = currentUserRef.current;
|
|
250
|
+
if (ws.readyState === WebSocket.OPEN && user) {
|
|
251
|
+
ws.send(JSON.stringify({
|
|
252
|
+
type: 'presence',
|
|
253
|
+
action: 'leave',
|
|
254
|
+
username: user.username,
|
|
255
|
+
}));
|
|
256
|
+
}
|
|
257
|
+
ws.close();
|
|
258
|
+
wsRef.current = null;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
setIsConnected(false);
|
|
262
|
+
setConnectionState('disconnected');
|
|
263
|
+
setChannels([]);
|
|
264
|
+
}, []);
|
|
265
|
+
|
|
266
|
+
const joinChannel = useCallback((channel: string) => {
|
|
267
|
+
if (!wsRef.current || wsRef.current.readyState !== WebSocket.OPEN) return;
|
|
268
|
+
|
|
269
|
+
wsRef.current.send(JSON.stringify({
|
|
270
|
+
type: 'channel_join',
|
|
271
|
+
channel,
|
|
272
|
+
}));
|
|
273
|
+
}, []);
|
|
274
|
+
|
|
275
|
+
const leaveChannel = useCallback((channel: string) => {
|
|
276
|
+
if (!wsRef.current || wsRef.current.readyState !== WebSocket.OPEN) return;
|
|
277
|
+
|
|
278
|
+
wsRef.current.send(JSON.stringify({
|
|
279
|
+
type: 'channel_leave',
|
|
280
|
+
channel,
|
|
281
|
+
}));
|
|
282
|
+
}, []);
|
|
283
|
+
|
|
284
|
+
const sendChannelMessage = useCallback((channel: string, body: string, thread?: string) => {
|
|
285
|
+
if (!wsRef.current || wsRef.current.readyState !== WebSocket.OPEN) return;
|
|
286
|
+
|
|
287
|
+
wsRef.current.send(JSON.stringify({
|
|
288
|
+
type: 'channel_message',
|
|
289
|
+
channel,
|
|
290
|
+
body,
|
|
291
|
+
thread,
|
|
292
|
+
}));
|
|
293
|
+
}, []);
|
|
294
|
+
|
|
295
|
+
const sendDirectMessage = useCallback((to: string, body: string, thread?: string) => {
|
|
296
|
+
if (!wsRef.current || wsRef.current.readyState !== WebSocket.OPEN) return;
|
|
297
|
+
|
|
298
|
+
wsRef.current.send(JSON.stringify({
|
|
299
|
+
type: 'direct_message',
|
|
300
|
+
to,
|
|
301
|
+
body,
|
|
302
|
+
thread,
|
|
303
|
+
}));
|
|
304
|
+
}, []);
|
|
305
|
+
|
|
306
|
+
// Connect when user is available
|
|
307
|
+
useEffect(() => {
|
|
308
|
+
if (!autoConnect || !currentUserRef.current) return;
|
|
309
|
+
|
|
310
|
+
if (wsRef.current && wsRef.current.readyState !== WebSocket.CLOSED) {
|
|
311
|
+
return;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
connect();
|
|
315
|
+
|
|
316
|
+
return () => {
|
|
317
|
+
disconnect();
|
|
318
|
+
};
|
|
319
|
+
}, [autoConnect, currentUser?.username, workspaceId, connect, disconnect]);
|
|
320
|
+
|
|
321
|
+
// Send leave on page unload
|
|
322
|
+
useEffect(() => {
|
|
323
|
+
const handleUnload = () => {
|
|
324
|
+
const user = currentUserRef.current;
|
|
325
|
+
if (wsRef.current?.readyState === WebSocket.OPEN && user) {
|
|
326
|
+
wsRef.current.send(JSON.stringify({
|
|
327
|
+
type: 'presence',
|
|
328
|
+
action: 'leave',
|
|
329
|
+
username: user.username,
|
|
330
|
+
}));
|
|
331
|
+
}
|
|
332
|
+
};
|
|
333
|
+
|
|
334
|
+
window.addEventListener('beforeunload', handleUnload);
|
|
335
|
+
return () => window.removeEventListener('beforeunload', handleUnload);
|
|
336
|
+
}, []);
|
|
337
|
+
|
|
338
|
+
// Visibility change listener: reconnect when tab becomes visible
|
|
339
|
+
useEffect(() => {
|
|
340
|
+
const handleVisibilityChange = () => {
|
|
341
|
+
if (document.visibilityState === 'visible') {
|
|
342
|
+
// Check if connection is dead and reconnect
|
|
343
|
+
if (currentUserRef.current && (!wsRef.current || wsRef.current.readyState === WebSocket.CLOSED)) {
|
|
344
|
+
console.log('[WS:Channels] Tab visible, reconnecting...');
|
|
345
|
+
reconnectAttemptsRef.current = 0; // Reset attempts for visibility-triggered reconnect
|
|
346
|
+
connect();
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
};
|
|
350
|
+
|
|
351
|
+
document.addEventListener('visibilitychange', handleVisibilityChange);
|
|
352
|
+
return () => {
|
|
353
|
+
document.removeEventListener('visibilitychange', handleVisibilityChange);
|
|
354
|
+
};
|
|
355
|
+
}, [connect]);
|
|
356
|
+
|
|
357
|
+
return {
|
|
358
|
+
channels,
|
|
359
|
+
joinChannel,
|
|
360
|
+
leaveChannel,
|
|
361
|
+
sendChannelMessage,
|
|
362
|
+
sendDirectMessage,
|
|
363
|
+
isConnected,
|
|
364
|
+
connectionState,
|
|
365
|
+
messages,
|
|
366
|
+
};
|
|
367
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* useDebounce Hook
|
|
3
|
+
*
|
|
4
|
+
* Returns a debounced value that only updates after a delay.
|
|
5
|
+
* Useful for search inputs and other rapid-change scenarios.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import { useState, useEffect } from 'react';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Debounce a value by a specified delay.
|
|
12
|
+
* @param value - The value to debounce
|
|
13
|
+
* @param delay - Delay in milliseconds (default: 300ms)
|
|
14
|
+
*/
|
|
15
|
+
export function useDebounce<T>(value: T, delay: number = 300): T {
|
|
16
|
+
const [debouncedValue, setDebouncedValue] = useState(value);
|
|
17
|
+
|
|
18
|
+
useEffect(() => {
|
|
19
|
+
const handler = setTimeout(() => {
|
|
20
|
+
setDebouncedValue(value);
|
|
21
|
+
}, delay);
|
|
22
|
+
|
|
23
|
+
return () => {
|
|
24
|
+
clearTimeout(handler);
|
|
25
|
+
};
|
|
26
|
+
}, [value, delay]);
|
|
27
|
+
|
|
28
|
+
return debouncedValue;
|
|
29
|
+
}
|