-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathProjectManager.ts
More file actions
484 lines (416 loc) · 14.2 KB
/
ProjectManager.ts
File metadata and controls
484 lines (416 loc) · 14.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
/**
* ProjectManager — closure-based orchestrator for App Builder project lifecycle.
*
* Composes session objects (V1/V2) for streaming and message handling,
* and specialized modules for state, preview, and deployments.
*/
import type {
DeployProjectResult,
ProjectSessionInfo,
ProjectWithMessages,
SessionDisplayInfo,
WorkerVersion,
} from '@/lib/app-builder/types';
import type { Images } from '@/lib/images-schema';
import type { TRPCClient } from '@trpc/client';
import type { RootRouter } from '@/routers/root-router';
import type { CloudMessage } from '@/components/cloud-agent/types';
import type { StoredMessage } from '@/components/cloud-agent-next/types';
import type { UserMessage, TextPart } from '@/types/opencode.gen';
import { createLogger } from './project-manager/logging';
import { createProjectStore, createInitialState } from './project-manager/store';
import type { ProjectState, ProjectStore, AppBuilderSession } from './project-manager/types';
import { startPreviewPolling, type PreviewPollingState } from './project-manager/preview-polling';
import { deploy as deployProject } from './project-manager/deployments';
import { createV1Session } from './project-manager/sessions/v1/v1-session';
import { createV2Session } from './project-manager/sessions/v2/v2-session';
type AppTRPCClient = TRPCClient<RootRouter>;
export type { ProjectState };
export type ProjectManagerConfig = {
project: ProjectWithMessages;
trpcClient: AppTRPCClient;
organizationId: string | null;
};
export type DeployResult = DeployProjectResult;
export type ProjectManager = {
readonly projectId: string;
destroyed: boolean;
subscribe: (listener: () => void) => () => void;
getState: () => ProjectState;
sendMessage: (message: string, images?: Images, model?: string) => void;
interrupt: () => void;
setCurrentIframeUrl: (url: string | null) => void;
setGitRepoFullName: (repoFullName: string) => void;
deploy: () => Promise<DeployResult>;
destroy: () => void;
/** Enter "pending new session" mode — clears the chat area for a new message */
requestNewSession: () => void;
/** Cancel pending new session mode, returning to the current session view */
cancelNewSession: () => void;
};
export function createProjectManager(config: ProjectManagerConfig): ProjectManager {
const { project, trpcClient, organizationId } = config;
const projectId = project.id;
const logger = createLogger(projectId);
let destroyed = false;
let cloudAgentSessionId = project.session_id ?? null;
let previewPollingState: PreviewPollingState | null = null;
let pendingInitialStreamingStart = false;
let pendingReconnect = false;
let hasStartedInitialStreaming = false;
let sessionUnsubscribes: Array<() => void> = [];
const initialState = createInitialState(
project.deployment_id ?? null,
project.model_id ?? null,
project.git_repo_full_name ?? null
);
const store: ProjectStore = createProjectStore(initialState);
// --- Session building ---
function toDisplayInfo(info: ProjectSessionInfo): SessionDisplayInfo {
return {
id: info.id,
cloud_agent_session_id: info.cloud_agent_session_id,
ended_at: info.ended_at,
title: info.title,
};
}
function createStaticSession(info: ProjectSessionInfo): AppBuilderSession {
// Pass streaming config so ended sessions can load messages via WebSocket replay
const streamingConfig = {
info: toDisplayInfo(info),
initialMessages: [] as never[],
projectId,
organizationId,
trpcClient,
};
if (info.worker_version === 'v2') {
return createV2Session(streamingConfig);
}
return createV1Session({ ...streamingConfig, sessionPrepared: true });
}
function getActiveSession(): AppBuilderSession | undefined {
const sessions = store.getState().sessions;
return sessions[sessions.length - 1];
}
function subscribeToSession(session: AppBuilderSession): void {
const unsubscribe = session.subscribe(() => {
const active = getActiveSession();
const isStreaming = active?.getState().isStreaming ?? false;
store.setState({ isStreaming });
});
sessionUnsubscribes.push(unsubscribe);
}
/**
* Builds sessions from backend project data.
* Ended sessions are static (no streaming). The active session (last or
* the one without ended_at) gets streaming capabilities.
*/
function buildSessions(proj: ProjectWithMessages): AppBuilderSession[] {
const sessionInfos = proj.sessions;
if (sessionInfos.length === 0) return [];
const activeInfo =
sessionInfos.find(s => s.ended_at === null) ?? sessionInfos[sessionInfos.length - 1];
const sessions: AppBuilderSession[] = [];
for (const info of sessionInfos) {
const isActive = info.id === activeInfo?.id;
if (!isActive) {
sessions.push(createStaticSession(info));
} else if (info.worker_version === 'v2') {
sessions.push(
createV2Session({
info: toDisplayInfo(info),
initialMessages: [],
projectId,
organizationId,
trpcClient,
onStreamComplete: () => startPreviewPollingIfNeeded(),
onSessionChanged: handleSessionChanged,
})
);
} else {
sessions.push(
createV1Session({
info: toDisplayInfo(info),
initialMessages: proj.messages,
projectId,
organizationId,
trpcClient,
sessionPrepared: info.prepared,
onStreamComplete: () => startPreviewPollingIfNeeded(),
onSessionChanged: handleSessionChanged,
})
);
}
}
return sessions;
}
// --- Session change detection (upgrade or GitHub migration) ---
function handleSessionChanged(
newSessionId: string,
workerVersion: WorkerVersion,
userMessage: { text: string; images?: Images }
): void {
logger.log('Session changed', { newSessionId, workerVersion });
const currentActive = getActiveSession();
currentActive?.destroy();
const newInfo: SessionDisplayInfo = {
id: newSessionId,
cloud_agent_session_id: newSessionId,
ended_at: null,
title: null,
};
const newSession =
workerVersion === 'v2'
? createV2Session({
info: newInfo,
initialMessages: [makeOptimisticV2UserMessage(newSessionId, userMessage.text)],
projectId,
organizationId,
trpcClient,
onStreamComplete: () => startPreviewPollingIfNeeded(),
onSessionChanged: handleSessionChanged,
})
: createV1Session({
info: newInfo,
initialMessages: [makeOptimisticV1UserMessage(userMessage.text, userMessage.images)],
projectId,
organizationId,
trpcClient,
sessionPrepared: true,
onStreamComplete: () => startPreviewPollingIfNeeded(),
onSessionChanged: handleSessionChanged,
});
subscribeToSession(newSession);
const currentSessions = store.getState().sessions;
store.setState({
sessions: [...currentSessions, newSession],
isStreaming: true,
});
cloudAgentSessionId = newSessionId;
newSession.connectToExistingSession(newSessionId);
}
function makeOptimisticV1UserMessage(text: string, images?: Images): CloudMessage {
return {
ts: Date.now(),
type: 'user',
text,
partial: false,
images,
};
}
function makeOptimisticV2UserMessage(sessionId: string, text: string): StoredMessage {
const messageId = `optimistic-${Date.now()}`;
const now = Date.now();
const info: UserMessage = {
id: messageId,
sessionID: sessionId,
role: 'user',
time: { created: now },
agent: '',
model: { providerID: '', modelID: '' },
};
const textPart: TextPart = {
id: `${messageId}-text`,
sessionID: sessionId,
messageID: messageId,
type: 'text',
text,
};
return { info, parts: [textPart] };
}
// --- Preview polling ---
function startPreviewPollingIfNeeded(): void {
if (previewPollingState?.isPolling || destroyed) return;
logger.log('Starting preview polling');
previewPollingState = startPreviewPolling({
projectId,
organizationId,
trpcClient,
store,
isDestroyed: () => destroyed,
});
}
// --- Initialize sessions ---
const sessions = buildSessions(project);
store.setState({ sessions });
for (const session of sessions) {
subscribeToSession(session);
}
// Determine if the active session needs initial streaming from the backend session info.
// `initiated` lives on ProjectSessionInfo (routing data), not on SessionDisplayInfo.
const activeProjectSessionInfo =
project.sessions.find(s => s.ended_at === null) ??
project.sessions[project.sessions.length - 1];
if (activeProjectSessionInfo?.initiated === false) {
pendingInitialStreamingStart = true;
} else if (cloudAgentSessionId) {
pendingReconnect = true;
} else {
startPreviewPollingIfNeeded();
}
// --- Public API ---
function subscribe(listener: () => void): () => void {
const unsubscribe = store.subscribe(listener);
// Deferred start: wait for React's first subscription before streaming
if (pendingInitialStreamingStart && !hasStartedInitialStreaming) {
hasStartedInitialStreaming = true;
queueMicrotask(() => {
if (!destroyed) {
setTimeout(() => startPreviewPollingIfNeeded(), 100);
getActiveSession()?.startInitialStreaming();
}
});
} else if (pendingReconnect && cloudAgentSessionId) {
pendingReconnect = false;
const sessionIdForReconnect = cloudAgentSessionId;
queueMicrotask(() => {
if (!destroyed) {
startPreviewPollingIfNeeded();
getActiveSession()?.connectToExistingSession(sessionIdForReconnect);
}
});
}
return unsubscribe;
}
function getState(): ProjectState {
return store.getState();
}
function sendMessage(message: string, images?: Images, model?: string): void {
if (store.getState().pendingNewSession) {
sendMessageAsNewSession(message, images, model);
return;
}
const activeSession = getActiveSession();
if (!activeSession) {
logger.logWarn('Cannot send message: no active session');
return;
}
if (model) {
store.setState({ model });
}
const effectiveModel = model ?? store.getState().model;
void activeSession.sendMessage(message, images, effectiveModel);
}
/**
* Sends the first message of a user-initiated new session.
* Calls sendMessage tRPC mutation with forceNewSession:true, then delegates
* to handleSessionChanged to create the new session object and begin streaming.
*/
function sendMessageAsNewSession(message: string, images?: Images, model?: string): void {
if (destroyed) {
logger.logWarn('Cannot start new session: ProjectManager is destroyed');
return;
}
if (model) {
store.setState({ model });
}
const effectiveModel = model ?? store.getState().model;
store.setState({ pendingNewSession: false, isStreaming: true });
const mutationPromise = organizationId
? trpcClient.organizations.appBuilder.sendMessage.mutate({
projectId,
organizationId,
message,
images,
model: effectiveModel,
forceNewSession: true,
})
: trpcClient.appBuilder.sendMessage.mutate({
projectId,
message,
images,
model: effectiveModel,
forceNewSession: true,
});
void mutationPromise
.then(result => {
if (destroyed) return;
handleSessionChanged(result.cloudAgentSessionId, result.workerVersion, {
text: message,
images,
});
})
.catch((err: Error) => {
if (destroyed) return;
logger.logError('Failed to start new session', err);
store.setState({ isStreaming: false });
});
}
function interrupt(): void {
const activeSession = getActiveSession();
if (!activeSession) return;
void activeSession.interrupt();
store.setState({ isStreaming: false, isInterrupting: true });
const handleComplete = () => {
if (!destroyed) {
store.setState({ isInterrupting: false });
}
};
if (organizationId) {
void trpcClient.organizations.appBuilder.interruptSession
.mutate({ projectId, organizationId })
.catch((err: Error) => logger.logError('Failed to interrupt session', err))
.finally(handleComplete);
} else {
void trpcClient.appBuilder.interruptSession
.mutate({ projectId })
.catch((err: Error) => logger.logError('Failed to interrupt session', err))
.finally(handleComplete);
}
}
function setCurrentIframeUrl(url: string | null): void {
store.setState({ currentIframeUrl: url });
}
function setGitRepoFullName(repoFullName: string): void {
store.setState({ gitRepoFullName: repoFullName });
}
async function deploy(): Promise<DeployResult> {
if (destroyed) {
throw new Error('Cannot deploy: ProjectManager is destroyed');
}
logger.log('Deploying project');
return deployProject({ projectId, organizationId, trpcClient, store });
}
function requestNewSession(): void {
if (destroyed) return;
store.setState({ pendingNewSession: true });
}
function cancelNewSession(): void {
if (destroyed) return;
store.setState({ pendingNewSession: false });
}
function destroy(): void {
if (destroyed) return;
destroyed = true;
for (const unsub of sessionUnsubscribes) {
unsub();
}
sessionUnsubscribes = [];
for (const session of store.getState().sessions) {
session.destroy();
}
if (previewPollingState) {
previewPollingState.stop();
previewPollingState = null;
}
}
return {
projectId,
get destroyed() {
return destroyed;
},
set destroyed(value: boolean) {
destroyed = value;
},
subscribe,
getState,
sendMessage,
interrupt,
setCurrentIframeUrl,
setGitRepoFullName,
deploy,
destroy,
requestNewSession,
cancelNewSession,
};
}