-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcode-engine.tsx
490 lines (437 loc) · 14.4 KB
/
code-engine.tsx
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
485
486
487
488
489
490
'use client';
import { useContext, useEffect, useRef, useState, useMemo } from 'react';
import { motion, AnimatePresence } from 'framer-motion';
import { Loader } from 'lucide-react';
import { TreeItem, TreeItemIndex } from 'react-complex-tree';
import { ProjectContext } from './project-context';
import CodeTab from './tabs/code-tab';
import PreviewTab from './tabs/preview-tab';
import ConsoleTab from './tabs/console-tab';
import ResponsiveToolbar from './responsive-toolbar';
import SaveChangesBar from './save-changes-bar';
import { logger } from '@/app/log/logger';
export function CodeEngine({
chatId,
isProjectReady = false,
projectId,
}: {
chatId: string;
isProjectReady?: boolean;
projectId?: string;
}) {
const { curProject, projectLoading, pollChatProject } =
useContext(ProjectContext);
const [localProject, setLocalProject] = useState(null);
const [isLoading, setIsLoading] = useState(true);
const [filePath, setFilePath] = useState<string | null>(null);
const [saving, setSaving] = useState(false);
const [preCode, setPrecode] = useState('// Loading...');
const [newCode, setCode] = useState('// Loading...');
const [activeTab, setActiveTab] = useState<'preview' | 'code' | 'console'>(
'code'
);
const [isFileStructureLoading, setIsFileStructureLoading] = useState(false);
const [fileStructureData, setFileStructureData] = useState<
Record<TreeItemIndex, TreeItem<any>>
>({});
const editorRef = useRef(null);
const projectPathRef = useRef(null);
const [progress, setProgress] = useState(0); // 从0%开始
const [estimateTime, setEstimateTime] = useState(6 * 60); // 保留估计时间
const [timerActive, setTimerActive] = useState(false);
const initialTime = 6 * 60; // 初始总时间(6分钟)
const [projectCompleted, setProjectCompleted] = useState(false);
// 添加一个状态来跟踪完成动画
const [isCompleting, setIsCompleting] = useState(false);
// 添加一个ref来持久跟踪项目状态,避免重新渲染时丢失
const isProjectLoadedRef = useRef(false);
// 在组件挂载时从localStorage检查项目是否已完成
useEffect(() => {
try {
const savedCompletion = localStorage.getItem(
`project-completed-${chatId}`
);
if (savedCompletion === 'true') {
setProjectCompleted(true);
isProjectLoadedRef.current = true;
setProgress(100);
}
} catch (e) {
// 忽略localStorage错误
}
}, [chatId]);
// Poll for project if needed using chatId
useEffect(() => {
// 如果项目已经完成,跳过轮询
if (projectCompleted || isProjectLoadedRef.current) {
return;
}
if (!curProject && chatId && !projectLoading) {
const loadProjectFromChat = async () => {
try {
setIsLoading(true);
const project = await pollChatProject(chatId);
if (project) {
setLocalProject(project);
// 如果成功加载项目,将状态设置为已完成
if (project.projectPath) {
setProjectCompleted(true);
isProjectLoadedRef.current = true;
}
}
} catch (error) {
logger.error('Failed to load project from chat:', error);
} finally {
setIsLoading(false);
}
};
loadProjectFromChat();
} else {
setIsLoading(projectLoading);
}
}, [chatId, curProject, projectLoading, pollChatProject, projectCompleted]);
// Use either curProject from context or locally polled project
const activeProject = curProject || localProject;
// Update projectPathRef when project changes
useEffect(() => {
if (activeProject?.projectPath) {
projectPathRef.current = activeProject.projectPath;
}
}, [activeProject]);
async function fetchFiles() {
const projectPath = activeProject?.projectPath || projectPathRef.current;
if (!projectPath) {
return;
}
try {
setIsFileStructureLoading(true);
const response = await fetch(`/api/project?path=${projectPath}`);
if (!response.ok) {
throw new Error(`Failed to fetch file structure: ${response.status}`);
}
const data = await response.json();
if (data && data.res) {
setFileStructureData(data.res);
} else {
logger.warn('Empty or invalid file structure data received');
}
} catch (error) {
logger.error('Error fetching file structure:', error);
} finally {
setIsFileStructureLoading(false);
}
}
// Effect for loading file structure when project is ready
useEffect(() => {
const shouldFetchFiles =
isProjectReady &&
(activeProject?.projectPath || projectPathRef.current) &&
Object.keys(fileStructureData).length === 0 &&
!isFileStructureLoading;
if (shouldFetchFiles) {
fetchFiles();
}
}, [
isProjectReady,
activeProject,
isFileStructureLoading,
fileStructureData,
]);
// Effect for selecting default file once structure is loaded
useEffect(() => {
if (
!isFileStructureLoading &&
Object.keys(fileStructureData).length > 0 &&
!filePath
) {
selectDefaultFile();
}
}, [isFileStructureLoading, fileStructureData, filePath]);
// Retry mechanism for fetching files if needed
useEffect(() => {
let retryTimeout;
if (
isProjectReady &&
activeProject?.projectPath &&
Object.keys(fileStructureData).length === 0 &&
!isFileStructureLoading
) {
retryTimeout = setTimeout(() => {
logger.info('Retrying file structure fetch...');
fetchFiles();
}, 3000);
}
return () => {
if (retryTimeout) clearTimeout(retryTimeout);
};
}, [
isProjectReady,
activeProject,
fileStructureData,
isFileStructureLoading,
]);
function selectDefaultFile() {
const defaultFiles = [
'src/App.tsx',
'src/App.js',
'src/index.tsx',
'src/index.js',
'app/page.tsx',
'pages/index.tsx',
'index.html',
'README.md',
];
for (const defaultFile of defaultFiles) {
if (fileStructureData[`root/${defaultFile}`]) {
setFilePath(defaultFile);
return;
}
}
const firstFile = Object.entries(fileStructureData).find(
([key, item]) =>
key.startsWith('root/') && !item.isFolder && key !== 'root/'
);
if (firstFile) {
setFilePath(firstFile[0].replace('root/', ''));
}
}
const handleReset = () => {
setCode(preCode);
editorRef.current?.setValue(preCode);
setSaving(false);
};
const updateCode = async (value) => {
const projectPath = activeProject?.projectPath || projectPathRef.current;
if (!projectPath || !filePath) return;
try {
const response = await fetch('/api/file', {
method: 'POST',
credentials: 'include',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
filePath: `${projectPath}/${filePath}`,
newContent: JSON.stringify(value),
}),
});
if (!response.ok) {
throw new Error(`Failed to update file: ${response.status}`);
}
await response.json();
} catch (error) {
logger.error('Error updating file:', error);
}
};
const handleSave = () => {
setSaving(false);
setPrecode(newCode);
updateCode(newCode);
};
const updateSavingStatus = (value) => {
setCode(value);
setSaving(true);
};
const renderTabContent = () => {
switch (activeTab) {
case 'code':
return (
<CodeTab
editorRef={editorRef}
fileStructureData={fileStructureData}
newCode={newCode}
isFileStructureLoading={isFileStructureLoading}
updateSavingStatus={updateSavingStatus}
filePath={filePath}
setFilePath={setFilePath}
/>
);
case 'preview':
return <PreviewTab />;
case 'console':
return <ConsoleTab />;
default:
return null;
}
};
useEffect(() => {
async function getCode() {
const projectPath = activeProject?.projectPath || projectPathRef.current;
if (!projectPath || !filePath) return;
const file_node = fileStructureData[`root/${filePath}`];
if (!file_node) return;
const isFolder = file_node.isFolder;
if (isFolder) return;
try {
const res = await fetch(
`/api/file?path=${encodeURIComponent(`${projectPath}/${filePath}`)}`
);
if (!res.ok) {
throw new Error(`Failed to fetch file content: ${res.status}`);
}
const data = await res.json();
setCode(data.content);
setPrecode(data.content);
} catch (error) {
logger.error('Error loading file content:', error);
}
}
getCode();
}, [filePath, activeProject, fileStructureData]);
// Determine if we're truly ready to render
const showLoader = useMemo(() => {
// 如果项目已经被标记为完成,不再显示加载器
if (projectCompleted || isProjectLoadedRef.current) {
return false;
}
return (
!isProjectReady ||
isLoading ||
(!activeProject?.projectPath && !projectPathRef.current && !localProject)
);
}, [
isProjectReady,
isLoading,
activeProject,
projectCompleted,
localProject,
]);
useEffect(() => {
if (!showLoader && timerActive) {
setIsCompleting(true);
setProgress(99);
const completionTimer = setTimeout(() => {
setProgress(100);
setTimeout(() => {
setTimerActive(false);
setIsCompleting(false);
setProjectCompleted(true);
// 同时更新ref以持久记住完成状态
isProjectLoadedRef.current = true;
// 可选:在完成时将状态保存到localStorage
try {
localStorage.setItem(`project-completed-${chatId}`, 'true');
} catch (e) {
// 忽略localStorage错误
}
}, 800);
}, 500);
return () => clearTimeout(completionTimer);
} else if (
showLoader &&
!timerActive &&
!projectCompleted &&
!isProjectLoadedRef.current
) {
// 只有在项目未被标记为完成时才重置
setTimerActive(true);
setEstimateTime(initialTime);
setProgress(0);
setIsCompleting(false);
}
}, [showLoader, timerActive, projectCompleted, chatId]);
useEffect(() => {
let interval;
if (timerActive) {
interval = setInterval(() => {
setEstimateTime((prevTime) => {
if (prevTime <= 1) {
return initialTime;
}
const elapsedTime = initialTime - prevTime + 1;
const newProgress = Math.min(
Math.floor((elapsedTime / initialTime) * 100),
99
);
setProgress(newProgress);
return prevTime - 1;
});
}, 1000);
}
return () => {
if (interval) clearInterval(interval);
};
}, [timerActive]);
const formatTime = (seconds) => {
const minutes = Math.floor(seconds / 60);
const remainingSeconds = seconds % 60;
return `${minutes}:${remainingSeconds.toString().padStart(2, '0')}`;
};
return (
<div className="rounded-lg border shadow-sm overflow-scroll h-full">
<ResponsiveToolbar
isLoading={showLoader}
activeTab={activeTab}
setActiveTab={setActiveTab}
/>
<div className="relative h-[calc(100vh-48px-4rem)]">
<AnimatePresence>
{(showLoader || isCompleting) && (
<motion.div
key="loader"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
className="absolute inset-0 bg-background/60 backdrop-blur-sm flex flex-col items-center justify-center gap-4 z-30"
>
{progress === 100 ? (
<motion.div
initial={{ scale: 0 }}
animate={{ scale: 1, rotate: 0 }}
transition={{ type: 'spring', stiffness: 200, damping: 10 }}
className="w-16 h-16 bg-green-100 dark:bg-green-900/30 rounded-full flex items-center justify-center"
>
<svg
xmlns="http://www.w3.org/2000/svg"
className="h-10 w-10 text-green-500"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
</motion.div>
) : (
<Loader className="w-8 h-8 text-primary animate-spin" />
)}
<div className="w-64 flex flex-col items-center">
<p className="text-sm text-muted-foreground mb-2">
{progress === 100
? 'Project ready!'
: projectLoading
? 'Loading project...'
: `Initializing project (${progress}%)`}
</p>
<div className="w-full bg-gray-200 dark:bg-gray-700 rounded-full h-2.5 mb-1">
<motion.div
className={`h-2.5 rounded-full ${
progress === 100 ? 'bg-green-500' : 'bg-primary'
}`}
initial={{ width: 0 }}
animate={{ width: `${progress}%` }}
transition={{
ease: progress === 100 ? 'easeOut' : 'easeInOut',
duration: progress === 100 ? 0.5 : 0.3,
}}
/>
</div>
</div>
{/* 添加不同阶段的消息 */}
<motion.p
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
transition={{ delay: 0.2 }}
className="text-sm text-center max-w-xs text-muted-foreground"
></motion.p>
</motion.div>
)}
</AnimatePresence>
<div className="flex h-full">{renderTabContent()}</div>
{saving && <SaveChangesBar onSave={handleSave} onReset={handleReset} />}
</div>
</div>
);
}
export default CodeEngine;