Matthias Nott
2026-03-02 a0f39302919fbacf7a0d407f01b1a50413ea6f70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
import React, {
  createContext,
  useCallback,
  useContext,
  useEffect,
  useRef,
  useState,
} from "react";
import { Message, WsIncoming, WsSession } from "../types";
import { useConnection } from "./ConnectionContext";
import { playAudio, encodeAudioToBase64 } from "../services/audio";
function generateId(): string {
  return Date.now().toString(36) + Math.random().toString(36).slice(2);
}
interface ChatContextValue {
  messages: Message[];
  sendTextMessage: (text: string) => void;
  sendVoiceMessage: (audioUri: string, durationMs?: number) => void;
  clearMessages: () => void;
  // Session management
  sessions: WsSession[];
  requestSessions: () => void;
  switchSession: (sessionId: string) => void;
  renameSession: (sessionId: string, name: string) => void;
  // Screenshot / navigation
  latestScreenshot: string | null;
  requestScreenshot: () => void;
  sendNavKey: (key: string) => void;
}
const ChatContext = createContext<ChatContextValue | null>(null);
export function ChatProvider({ children }: { children: React.ReactNode }) {
  const [messages, setMessages] = useState<Message[]>([]);
  const [sessions, setSessions] = useState<WsSession[]>([]);
  const [latestScreenshot, setLatestScreenshot] = useState<string | null>(null);
  const {
    sendTextMessage: wsSend,
    sendVoiceMessage: wsVoice,
    sendCommand,
    onMessageReceived,
  } = useConnection();
  const addMessage = useCallback((msg: Message) => {
    setMessages((prev) => [...prev, msg]);
  }, []);
  const updateMessageStatus = useCallback(
    (id: string, status: Message["status"]) => {
      setMessages((prev) =>
        prev.map((m) => (m.id === id ? { ...m, status } : m))
      );
    },
    []
  );
  // Handle incoming WebSocket messages
  useEffect(() => {
    onMessageReceived.current = (data: WsIncoming) => {
      switch (data.type) {
        case "text": {
          const msg: Message = {
            id: generateId(),
            role: "assistant",
            type: "text",
            content: data.content,
            timestamp: Date.now(),
            status: "sent",
          };
          setMessages((prev) => [...prev, msg]);
          break;
        }
        case "voice": {
          const msg: Message = {
            id: generateId(),
            role: "assistant",
            type: "voice",
            content: data.content ?? "",
            audioUri: data.audioBase64
              ? `data:audio/mp4;base64,${data.audioBase64}`
              : undefined,
            timestamp: Date.now(),
            status: "sent",
          };
          setMessages((prev) => [...prev, msg]);
          if (msg.audioUri) {
            playAudio(msg.audioUri).catch(() => {});
          }
          break;
        }
        case "image": {
          // Store as latest screenshot for navigation mode
          setLatestScreenshot(data.imageBase64);
          // Also add to chat as an image message
          const msg: Message = {
            id: generateId(),
            role: "assistant",
            type: "image",
            content: data.caption ?? "Screenshot",
            imageBase64: data.imageBase64,
            timestamp: Date.now(),
            status: "sent",
          };
          setMessages((prev) => [...prev, msg]);
          break;
        }
        case "sessions": {
          setSessions(data.sessions);
          break;
        }
        case "session_switched": {
          const msg: Message = {
            id: generateId(),
            role: "system",
            type: "text",
            content: `Switched to ${data.name}`,
            timestamp: Date.now(),
          };
          setMessages((prev) => [...prev, msg]);
          break;
        }
        case "session_renamed": {
          const msg: Message = {
            id: generateId(),
            role: "system",
            type: "text",
            content: `Renamed to ${data.name}`,
            timestamp: Date.now(),
          };
          setMessages((prev) => [...prev, msg]);
          // Refresh sessions to show updated name
          sendCommand("sessions");
          break;
        }
        case "error": {
          const msg: Message = {
            id: generateId(),
            role: "system",
            type: "text",
            content: data.message,
            timestamp: Date.now(),
          };
          setMessages((prev) => [...prev, msg]);
          break;
        }
      }
    };
    return () => {
      onMessageReceived.current = null;
    };
  }, [onMessageReceived, sendCommand]);
  const sendTextMessage = useCallback(
    (text: string) => {
      const id = generateId();
      const msg: Message = {
        id,
        role: "user",
        type: "text",
        content: text,
        timestamp: Date.now(),
        status: "sending",
      };
      addMessage(msg);
      const sent = wsSend(text);
      updateMessageStatus(id, sent ? "sent" : "error");
    },
    [wsSend, addMessage, updateMessageStatus]
  );
  const sendVoiceMessage = useCallback(
    async (audioUri: string, durationMs?: number) => {
      const id = generateId();
      const msg: Message = {
        id,
        role: "user",
        type: "voice",
        content: "",
        audioUri,
        timestamp: Date.now(),
        status: "sending",
        duration: durationMs,
      };
      addMessage(msg);
      try {
        const base64 = await encodeAudioToBase64(audioUri);
        const sent = wsVoice(base64);
        updateMessageStatus(id, sent ? "sent" : "error");
      } catch (err) {
        console.error("Failed to encode audio:", err);
        updateMessageStatus(id, "error");
      }
    },
    [wsVoice, addMessage, updateMessageStatus]
  );
  const clearMessages = useCallback(() => {
    setMessages([]);
  }, []);
  // --- Session management ---
  const requestSessions = useCallback(() => {
    sendCommand("sessions");
  }, [sendCommand]);
  const switchSession = useCallback(
    (sessionId: string) => {
      sendCommand("switch", { sessionId });
    },
    [sendCommand]
  );
  const renameSession = useCallback(
    (sessionId: string, name: string) => {
      sendCommand("rename", { sessionId, name });
    },
    [sendCommand]
  );
  // --- Screenshot / navigation ---
  const requestScreenshot = useCallback(() => {
    sendCommand("screenshot");
  }, [sendCommand]);
  const sendNavKey = useCallback(
    (key: string) => {
      sendCommand("nav", { key });
    },
    [sendCommand]
  );
  return (
    <ChatContext.Provider
      value={{
        messages,
        sendTextMessage,
        sendVoiceMessage,
        clearMessages,
        sessions,
        requestSessions,
        switchSession,
        renameSession,
        latestScreenshot,
        requestScreenshot,
        sendNavKey,
      }}
    >
      {children}
    </ChatContext.Provider>
  );
}
export function useChat() {
  const ctx = useContext(ChatContext);
  if (!ctx) throw new Error("useChat must be used within ChatProvider");
  return ctx;
}