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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
|
import React, { useEffect, useMemo, useRef, useState, useCallback } from 'react';
import { useReactFlow } from 'reactflow';
import {
Folder, FileText, Archive, ChevronLeft, ChevronRight, Trash2, MessageSquare,
MoreVertical, Download, Upload, Plus, RefreshCw, Edit3, Loader2, LogOut, User, Settings, Key, X, Eye, EyeOff
} from 'lucide-react';
import useFlowStore, { type FSItem, type BlueprintDocument, type FileMeta } from '../store/flowStore';
import { useAuthStore } from '../store/authStore';
interface LeftSidebarProps {
isOpen: boolean;
onToggle: () => void;
}
const LeftSidebar: React.FC<LeftSidebarProps> = ({ isOpen, onToggle }) => {
const [activeTab, setActiveTab] = useState<'project' | 'files' | 'archive'>('project');
const {
archivedNodes,
removeFromArchive,
theme,
files,
uploadingFileIds,
projectTree,
currentBlueprintPath,
saveStatus,
refreshProjectTree,
loadArchivedNodes,
refreshFiles,
uploadFile,
deleteFile,
readBlueprintFile,
loadBlueprint,
saveBlueprintFile,
saveCurrentBlueprint,
createProjectFolder,
renameProjectItem,
deleteProjectItem,
setCurrentBlueprintPath,
clearBlueprint
} = useFlowStore();
const { user, logout } = useAuthStore();
const { setViewport, getViewport } = useReactFlow();
const isDark = theme === 'dark';
const fileInputRef = useRef<HTMLInputElement | null>(null);
const fileUploadRef = useRef<HTMLInputElement | null>(null);
const [contextMenu, setContextMenu] = useState<{ x: number; y: number; item?: FSItem } | null>(null);
const [currentFolder, setCurrentFolder] = useState<string>('.');
const [dragItem, setDragItem] = useState<FSItem | null>(null);
const [showSaveStatus, setShowSaveStatus] = useState(false);
const [expanded, setExpanded] = useState<Set<string>>(() => new Set(['.']));
const [fileProvider, _setFileProvider] = useState<'local' | 'openai' | 'google'>('local');
const [openaiPurpose, _setOpenaiPurpose] = useState<string>('user_data');
// Suppress unused warnings - these may be used in future
void _setFileProvider;
void _setOpenaiPurpose;
const [fileSearch, setFileSearch] = useState('');
// User Settings Modal State
const [showUserSettings, setShowUserSettings] = useState(false);
const [openaiApiKey, setOpenaiApiKey] = useState('');
const [geminiApiKey, setGeminiApiKey] = useState('');
const [showOpenaiKey, setShowOpenaiKey] = useState(false);
const [showGeminiKey, setShowGeminiKey] = useState(false);
const [savingKeys, setSavingKeys] = useState(false);
const [keysMessage, setKeysMessage] = useState<{ type: 'success' | 'error'; text: string } | null>(null);
const { getAuthHeader } = useAuthStore();
// Load API keys when settings modal opens
useEffect(() => {
if (showUserSettings) {
fetch('/api/auth/api-keys', {
headers: { ...getAuthHeader() },
})
.then(res => res.json())
.then(data => {
setOpenaiApiKey(data.openai_api_key || '');
setGeminiApiKey(data.gemini_api_key || '');
})
.catch(() => {});
}
}, [showUserSettings, getAuthHeader]);
const handleSaveApiKeys = async () => {
setSavingKeys(true);
setKeysMessage(null);
try {
const res = await fetch('/api/auth/api-keys', {
method: 'POST',
headers: { 'Content-Type': 'application/json', ...getAuthHeader() },
body: JSON.stringify({
openai_api_key: openaiApiKey.includes('*') ? undefined : openaiApiKey,
gemini_api_key: geminiApiKey.includes('*') ? undefined : geminiApiKey,
}),
});
if (res.ok) {
setKeysMessage({ type: 'success', text: 'API keys saved successfully!' });
// Reload masked keys
const data = await fetch('/api/auth/api-keys', {
headers: { ...getAuthHeader() },
}).then(r => r.json());
setOpenaiApiKey(data.openai_api_key || '');
setGeminiApiKey(data.gemini_api_key || '');
} else {
setKeysMessage({ type: 'error', text: 'Failed to save API keys' });
}
} catch {
setKeysMessage({ type: 'error', text: 'Network error' });
}
setSavingKeys(false);
};
const handleDragStart = (e: React.DragEvent, archiveId: string) => {
e.dataTransfer.setData('archiveId', archiveId);
e.dataTransfer.effectAllowed = 'copy';
};
const joinPath = (folder: string, name: string) => {
if (!folder || folder === '.' || folder === '/') return name;
return `${folder.replace(/\\/g, '/').replace(/\/+$/, '')}/${name}`;
};
const stripJson = (name: string) => name.endsWith('.json') ? name.slice(0, -5) : name;
const findChildren = useCallback((folder: string, list: FSItem[] = projectTree): FSItem[] => {
const norm = folder.replace(/\\/g, '/').replace(/^\.\/?/, '');
if (folder === '.' || folder === '' || folder === '/') return list;
for (const item of list) {
if (item.type === 'folder') {
if (item.path === norm) return item.children || [];
const found = findChildren(folder, item.children || []);
if (found) return found;
}
}
return [];
}, [projectTree]);
const ensureUniqueName = useCallback((base: string, targetFolder: string, isFolder: boolean) => {
const siblings = findChildren(targetFolder).map(i => i.name);
const ext = isFolder ? '' : '.json';
const rawBase = stripJson(base);
let candidate = rawBase + ext;
let idx = 1;
while (siblings.includes(candidate)) {
idx += 1;
candidate = `${rawBase} (${idx})${ext}`;
}
return candidate;
}, [findChildren]);
// Load project tree on mount and when tab switches to project
useEffect(() => {
if (activeTab === 'project') {
refreshProjectTree().catch(() => {});
}
}, [activeTab, refreshProjectTree]);
// Load archived nodes on mount
useEffect(() => {
loadArchivedNodes().catch(() => {});
}, [loadArchivedNodes]);
// Load files when entering files tab
useEffect(() => {
if (activeTab === 'files') {
refreshFiles().catch(() => {});
}
}, [activeTab, refreshFiles]);
// Context menu handlers
const openContextMenu = (e: React.MouseEvent, item?: FSItem) => {
e.preventDefault();
e.stopPropagation();
setContextMenu({ x: e.clientX, y: e.clientY, item });
};
const closeContextMenu = () => setContextMenu(null);
const promptName = (message: string, defaultValue: string) => {
const val = window.prompt(message, defaultValue);
return val?.trim() || null;
};
const handleCreateFolder = async (base: string) => {
const input = promptName('Folder name', 'new-folder');
if (!input) return;
const name = ensureUniqueName(input, base, true);
await createProjectFolder(joinPath(base, name));
};
const handleNewBlueprint = async (base: string) => {
const input = promptName('Blueprint file name', 'untitled');
if (!input) return;
const name = ensureUniqueName(input, base, false);
const path = joinPath(base, name);
// Create empty blueprint and save immediately
const empty: BlueprintDocument = {
version: 1,
nodes: [],
edges: [],
viewport: getViewport(),
theme,
};
await saveBlueprintFile(path, empty.viewport);
await loadBlueprint(empty);
setCurrentBlueprintPath(path);
};
const handleRename = async (item: FSItem) => {
// For .json files, show name without extension
const isJsonFile = item.type === 'file' && item.name.endsWith('.json');
const displayName = isJsonFile ? item.name.replace(/\.json$/, '') : item.name;
const newName = promptName('Rename to', displayName);
if (!newName || newName === displayName) return;
// Add .json extension back for json files
const finalName = isJsonFile ? `${newName}.json` : newName;
await renameProjectItem(item.path, finalName);
};
const handleDelete = async (item: FSItem) => {
const currentPath = currentBlueprintPath;
const isDeletingOpen =
currentPath === item.path ||
(item.type === 'folder' && currentPath && (currentPath === item.path || currentPath.startsWith(`${item.path}/`)));
const ok = window.confirm(
isDeletingOpen
? `The opened blueprint is in this ${item.type}. Delete and clear canvas?`
: `Delete ${item.name}?`
);
if (!ok) return;
await deleteProjectItem(item.path, item.type === 'folder');
if (isDeletingOpen) {
clearBlueprint();
}
await refreshProjectTree();
};
const handleLoadFile = async (item: FSItem) => {
if (item.type !== 'file') return;
try {
const doc = await readBlueprintFile(item.path);
const vp = loadBlueprint(doc);
setCurrentBlueprintPath(item.path);
if (vp) {
setViewport(vp);
}
} catch (e) {
console.error(e);
alert('Not a valid blueprint JSON.');
}
};
const handleDownload = async (item: FSItem) => {
if (item.type !== 'file') return;
const url = `${import.meta.env.VITE_BACKEND_URL || ''}/api/projects/download?user=test&path=${encodeURIComponent(item.path)}`;
const a = document.createElement('a');
a.href = url;
a.download = item.name;
a.click();
};
const handleUploadClick = () => fileInputRef.current?.click();
const promptForPath = (base: string) => {
const input = window.prompt('Save as (filename without extension)', 'untitled')?.trim();
if (!input) return null;
const name = ensureUniqueName(input, base, false);
return joinPath(base, name);
};
const handleSave = async () => {
let path = currentBlueprintPath;
if (!path) {
const p = promptForPath(currentFolder);
if (!p) return;
path = p;
setCurrentBlueprintPath(path);
}
const viewport = getViewport();
await saveCurrentBlueprint(path, viewport);
};
const handleUploadFiles = async (files: FileList, targetFolder: string) => {
for (const file of Array.from(files)) {
if (!file.name.toLowerCase().endsWith('.json')) continue;
const text = await file.text();
try {
const json = JSON.parse(text);
const viewport = json.viewport;
const uniqueName = ensureUniqueName(file.name, targetFolder, false);
await saveBlueprintFile(joinPath(targetFolder, uniqueName), viewport);
} catch {
// skip invalid json
}
}
await refreshProjectTree();
};
// Files tab handlers
const handleFilesUpload = async (list: FileList) => {
let ok = 0;
let failed: string[] = [];
for (const f of Array.from(list)) {
try {
await uploadFile(f, {
provider: fileProvider,
purpose: fileProvider === 'openai' ? openaiPurpose : undefined,
});
ok += 1;
} catch (e) {
console.error(e);
failed.push(`${f.name}: ${(e as Error).message}`);
}
}
await refreshFiles();
if (failed.length) {
alert(`Some files failed:\n${failed.join('\n')}`);
} else if (ok > 0) {
// Optional: brief feedback
console.info(`Uploaded ${ok} file(s)`);
}
};
const filteredFiles = useMemo(() => {
const q = fileSearch.trim().toLowerCase();
if (!q) return files;
// Only search local files; keep provider files out of filtered results
return files.filter(f => !f.provider && f.name.toLowerCase().includes(q));
}, [files, fileSearch]);
const handleFilesInputChange = async (e: React.ChangeEvent<HTMLInputElement>) => {
const files = e.target.files;
if (files && files.length > 0) {
await handleFilesUpload(files);
e.target.value = '';
}
};
const handleDownloadFile = (file: FileMeta) => {
const url = `${import.meta.env.VITE_BACKEND_URL || ''}/api/files/download?user=test&file_id=${encodeURIComponent(file.id)}`;
const a = document.createElement('a');
a.href = url;
a.download = file.name;
a.click();
};
const formatSize = (bytes: number) => {
if (bytes === 0) return '0 B';
const k = 1024;
const sizes = ['B', 'KB', 'MB', 'GB', 'TB'];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return `${(bytes / Math.pow(k, i)).toFixed(1)} ${sizes[i]}`;
};
// Fade-out for "Saved" indicator
useEffect(() => {
if (saveStatus === 'saved') {
setShowSaveStatus(true);
const t = window.setTimeout(() => setShowSaveStatus(false), 1000);
return () => window.clearTimeout(t);
}
if (saveStatus === 'saving' || saveStatus === 'error') {
setShowSaveStatus(true);
return;
}
setShowSaveStatus(false);
}, [saveStatus]);
const handleFileInputChange = async (e: React.ChangeEvent<HTMLInputElement>) => {
const files = e.target.files;
if (files && files.length > 0) {
await handleUploadFiles(files, currentFolder);
e.target.value = '';
}
};
// Drag move blueprint into folder
const onItemDragStart = (e: React.DragEvent, item: FSItem) => {
setDragItem(item);
e.dataTransfer.effectAllowed = 'move';
};
const onItemDragOver = (e: React.DragEvent, item: FSItem) => {
if (item.type === 'folder') {
e.preventDefault();
e.dataTransfer.dropEffect = 'move';
}
};
const onItemDrop = async (e: React.DragEvent, target: FSItem) => {
e.preventDefault();
if (!dragItem || target.type !== 'folder') return;
const newPath = joinPath(target.path, dragItem.name);
if (newPath === dragItem.path) return;
await renameProjectItem(dragItem.path, undefined, newPath);
setDragItem(null);
};
const toggleFolder = (path: string) => {
setExpanded(prev => {
const next = new Set(prev);
if (next.has(path)) next.delete(path);
else next.add(path);
return next;
});
};
const renderTree = useCallback((items: FSItem[], depth = 0) => {
return items.map(item => {
const isActive = currentBlueprintPath === item.path;
const isExpanded = expanded.has(item.path);
const padding = depth * 12;
const hasChildren = (item.children?.length || 0) > 0;
return (
<div key={item.path}>
<div
className={`flex items-center justify-between px-2 py-1 rounded cursor-pointer ${
isActive
? isDark ? 'bg-blue-900/40 border border-blue-700' : 'bg-blue-50 border-blue-200 border'
: isDark ? 'hover:bg-gray-700' : 'hover:bg-gray-100'
}`}
style={{ paddingLeft: padding + 8 }}
onContextMenu={(e) => openContextMenu(e, item)}
onClick={() => {
if (item.type === 'folder') {
toggleFolder(item.path);
setCurrentFolder(item.path);
} else {
setCurrentFolder(item.path.split('/').slice(0, -1).join('/') || '.');
}
}}
onDoubleClick={() => {
if (item.type === 'file') {
handleLoadFile(item);
setCurrentFolder(item.path.split('/').slice(0, -1).join('/') || '.');
}
}}
draggable
onDragStart={(e) => onItemDragStart(e, item)}
onDragOver={(e) => onItemDragOver(e, item)}
onDrop={(e) => onItemDrop(e, item)}
>
<div className="flex items-center gap-2">
{item.type === 'folder' ? (
<button
className="w-4 text-left"
onClick={(e) => { e.stopPropagation(); toggleFolder(item.path); }}
title={hasChildren ? undefined : 'Empty folder'}
>
{isExpanded ? '▾' : '▸'}
</button>
) : (
<span className="w-4" />
)}
{item.type === 'folder' ? <Folder size={14} /> : <FileText size={14} />}
<span className="truncate">{stripJson(item.name)}</span>
</div>
<button className="p-1 rounded hover:bg-gray-200 dark:hover:bg-gray-700" onClick={(e) => { e.stopPropagation(); openContextMenu(e as any, item); }}>
<MoreVertical size={14} />
</button>
</div>
{item.type === 'folder' && isExpanded && item.children && item.children.length > 0 && (
<div>
{renderTree(item.children, depth + 1)}
</div>
)}
</div>
);
});
}, [isDark, currentBlueprintPath, expanded, handleLoadFile]);
if (!isOpen) {
return (
<div className={`border-r h-screen flex flex-col items-center py-4 w-12 z-10 transition-all duration-300 ${
isDark ? 'border-gray-700 bg-gray-800' : 'border-gray-200 bg-white'
}`}>
<button
onClick={onToggle}
className={`p-2 rounded mb-4 ${isDark ? 'hover:bg-gray-700' : 'hover:bg-gray-100'}`}
title="Expand"
>
<ChevronRight size={20} className={isDark ? 'text-gray-400' : 'text-gray-500'} />
</button>
{/* Icons when collapsed */}
<div className="flex flex-col gap-4">
<Folder size={20} className={activeTab === 'project' ? "text-blue-500" : isDark ? "text-gray-500" : "text-gray-400"} />
<FileText size={20} className={activeTab === 'files' ? "text-blue-500" : isDark ? "text-gray-500" : "text-gray-400"} />
<Archive size={20} className={activeTab === 'archive' ? "text-blue-500" : isDark ? "text-gray-500" : "text-gray-400"} />
</div>
</div>
);
}
return (
<div
className={`w-[14%] min-w-[260px] max-w-[360px] border-r h-screen flex flex-col shadow-xl z-10 transition-all duration-300 ${
isDark ? 'border-gray-700 bg-gray-800' : 'border-gray-200 bg-white'
}`}
onClick={() => setContextMenu(null)}
onContextMenu={(e) => {
// Default empty-area context menu
if (activeTab === 'project') {
openContextMenu(e);
}
}}
>
{/* Header */}
<div className={`p-3 border-b flex justify-between items-center ${
isDark ? 'border-gray-700 bg-gray-900' : 'border-gray-200 bg-gray-50'
}`}>
<div className="flex items-center gap-2">
<h2 className={`font-bold text-sm uppercase ${isDark ? 'text-gray-300' : 'text-gray-700'}`}>Workspace</h2>
{user && (
<span className={`text-xs px-2 py-0.5 rounded-full ${
isDark ? 'bg-gray-700 text-gray-400' : 'bg-gray-200 text-gray-600'
}`}>
<User size={10} className="inline mr-1" />
{user.username}
</span>
)}
</div>
<div className="flex items-center gap-1">
{user && (
<button
onClick={() => setShowUserSettings(true)}
className={`p-1 rounded transition-colors ${
isDark
? 'hover:bg-gray-700 text-gray-400 hover:text-gray-200'
: 'hover:bg-gray-200 text-gray-500 hover:text-gray-700'
}`}
title="User Settings"
>
<Settings size={16} />
</button>
)}
<button
onClick={onToggle}
className={`p-1 rounded ${isDark ? 'hover:bg-gray-700' : 'hover:bg-gray-200'}`}
>
<ChevronLeft size={16} className={isDark ? 'text-gray-400' : 'text-gray-500'} />
</button>
</div>
</div>
{/* User Settings Modal */}
{showUserSettings && (
<div className="fixed inset-0 bg-black/50 flex items-center justify-center z-50" onClick={() => setShowUserSettings(false)}>
<div
className={`w-full max-w-md mx-4 rounded-xl shadow-2xl ${isDark ? 'bg-gray-800' : 'bg-white'}`}
onClick={e => e.stopPropagation()}
>
{/* Header */}
<div className={`flex items-center justify-between p-4 border-b ${isDark ? 'border-gray-700' : 'border-gray-200'}`}>
<h2 className={`text-lg font-semibold ${isDark ? 'text-white' : 'text-gray-900'}`}>User Settings</h2>
<button
onClick={() => setShowUserSettings(false)}
className={`p-1 rounded ${isDark ? 'hover:bg-gray-700' : 'hover:bg-gray-100'}`}
>
<X size={20} className={isDark ? 'text-gray-400' : 'text-gray-500'} />
</button>
</div>
{/* Content */}
<div className="p-4 space-y-4">
{/* User Info */}
<div className={`flex items-center gap-3 p-3 rounded-lg ${isDark ? 'bg-gray-700/50' : 'bg-gray-100'}`}>
<div className={`w-10 h-10 rounded-full flex items-center justify-center ${isDark ? 'bg-blue-600' : 'bg-blue-500'}`}>
<User size={20} className="text-white" />
</div>
<div>
<p className={`font-medium ${isDark ? 'text-white' : 'text-gray-900'}`}>{user?.username}</p>
<p className={`text-sm ${isDark ? 'text-gray-400' : 'text-gray-500'}`}>{user?.email}</p>
</div>
</div>
{/* API Keys Section */}
<div className="space-y-3">
<h3 className={`text-sm font-medium flex items-center gap-2 ${isDark ? 'text-gray-300' : 'text-gray-700'}`}>
<Key size={16} /> API Keys
</h3>
{/* OpenAI API Key */}
<div>
<label className={`block text-xs mb-1 ${isDark ? 'text-gray-400' : 'text-gray-600'}`}>
OpenAI API Key
</label>
<div className="relative">
<input
type={showOpenaiKey ? 'text' : 'password'}
value={openaiApiKey}
onChange={e => setOpenaiApiKey(e.target.value)}
placeholder="sk-..."
className={`w-full px-3 py-2 pr-10 rounded-lg text-sm ${
isDark
? 'bg-gray-700 border-gray-600 text-white placeholder-gray-500'
: 'bg-white border-gray-300 text-gray-900 placeholder-gray-400'
} border focus:outline-none focus:ring-2 focus:ring-blue-500`}
/>
<button
type="button"
onClick={() => setShowOpenaiKey(!showOpenaiKey)}
className={`absolute right-2 top-1/2 -translate-y-1/2 p-1 ${isDark ? 'text-gray-400' : 'text-gray-500'}`}
>
{showOpenaiKey ? <EyeOff size={16} /> : <Eye size={16} />}
</button>
</div>
</div>
{/* Gemini API Key */}
<div>
<label className={`block text-xs mb-1 ${isDark ? 'text-gray-400' : 'text-gray-600'}`}>
Gemini API Key
</label>
<div className="relative">
<input
type={showGeminiKey ? 'text' : 'password'}
value={geminiApiKey}
onChange={e => setGeminiApiKey(e.target.value)}
placeholder="AI..."
className={`w-full px-3 py-2 pr-10 rounded-lg text-sm ${
isDark
? 'bg-gray-700 border-gray-600 text-white placeholder-gray-500'
: 'bg-white border-gray-300 text-gray-900 placeholder-gray-400'
} border focus:outline-none focus:ring-2 focus:ring-blue-500`}
/>
<button
type="button"
onClick={() => setShowGeminiKey(!showGeminiKey)}
className={`absolute right-2 top-1/2 -translate-y-1/2 p-1 ${isDark ? 'text-gray-400' : 'text-gray-500'}`}
>
{showGeminiKey ? <EyeOff size={16} /> : <Eye size={16} />}
</button>
</div>
</div>
{/* Save Button */}
<button
onClick={handleSaveApiKeys}
disabled={savingKeys}
className="w-full py-2 px-4 bg-blue-600 hover:bg-blue-700 disabled:opacity-50 text-white rounded-lg text-sm font-medium transition-colors flex items-center justify-center gap-2"
>
{savingKeys ? <Loader2 size={16} className="animate-spin" /> : null}
{savingKeys ? 'Saving...' : 'Save API Keys'}
</button>
{/* Message */}
{keysMessage && (
<p className={`text-xs ${keysMessage.type === 'success' ? 'text-green-500' : 'text-red-500'}`}>
{keysMessage.text}
</p>
)}
</div>
</div>
{/* Footer */}
<div className={`p-4 border-t ${isDark ? 'border-gray-700' : 'border-gray-200'}`}>
<button
onClick={() => { logout(); setShowUserSettings(false); }}
className={`w-full py-2 px-4 rounded-lg text-sm font-medium transition-colors flex items-center justify-center gap-2 ${
isDark
? 'bg-red-900/30 hover:bg-red-900/50 text-red-400'
: 'bg-red-50 hover:bg-red-100 text-red-600'
}`}
>
<LogOut size={16} /> Log Out
</button>
</div>
</div>
</div>
)}
{/* Tabs */}
<div className={`flex border-b ${isDark ? 'border-gray-700' : 'border-gray-200'}`}>
<button
onClick={() => setActiveTab('project')}
className={`flex-1 p-3 text-xs flex justify-center items-center gap-2 ${
activeTab === 'project'
? 'border-b-2 border-blue-500 text-blue-500 font-medium'
: isDark ? 'text-gray-400 hover:bg-gray-700' : 'text-gray-600 hover:bg-gray-50'
}`}
>
<Folder size={14} /> Project
</button>
<button
onClick={() => setActiveTab('files')}
className={`flex-1 p-3 text-xs flex justify-center items-center gap-2 ${
activeTab === 'files'
? 'border-b-2 border-blue-500 text-blue-500 font-medium'
: isDark ? 'text-gray-400 hover:bg-gray-700' : 'text-gray-600 hover:bg-gray-50'
}`}
>
<FileText size={14} /> Files
</button>
<button
onClick={() => setActiveTab('archive')}
className={`flex-1 p-3 text-xs flex justify-center items-center gap-2 ${
activeTab === 'archive'
? 'border-b-2 border-blue-500 text-blue-500 font-medium'
: isDark ? 'text-gray-400 hover:bg-gray-700' : 'text-gray-600 hover:bg-gray-50'
}`}
>
<Archive size={14} /> Archive
</button>
</div>
{/* Content Area */}
<div className={`flex-1 overflow-y-auto p-4 text-sm ${isDark ? 'text-gray-400' : 'text-gray-500'}`}>
{activeTab === 'project' && (
<div
className="space-y-2"
>
<div
className="flex items-center gap-2 mb-2"
onContextMenu={(e) => { e.preventDefault(); e.stopPropagation(); }}
>
<button
onClick={() => refreshProjectTree()}
className={`p-1 rounded ${isDark ? 'hover:bg-gray-700' : 'hover:bg-gray-200'}`}
title="Refresh"
>
<RefreshCw size={14} />
</button>
<button
onClick={() => handleNewBlueprint(currentFolder)}
className={`p-1 rounded ${isDark ? 'hover:bg-gray-700' : 'hover:bg-gray-200'}`}
title="New Blueprint"
>
<Plus size={14} />
</button>
<button
onClick={() => handleCreateFolder(currentFolder)}
className={`p-1 rounded ${isDark ? 'hover:bg-gray-700' : 'hover:bg-gray-200'}`}
title="New Folder"
>
<Folder size={14} />
</button>
<button
onClick={handleUploadClick}
className={`p-1 rounded ${isDark ? 'hover:bg-gray-700' : 'hover:bg-gray-200'}`}
title="Upload Blueprint"
>
<Upload size={14} />
</button>
<button
onClick={handleSave}
className={`p-1 rounded ${isDark ? 'hover:bg-gray-700' : 'hover:bg-gray-200'}`}
title="Save (Ctrl+S)"
>
<Edit3 size={14} />
</button>
<span
className={`text-xs transition-opacity duration-300 ${
saveStatus === 'saved' ? 'text-green-500' : saveStatus === 'saving' ? 'text-blue-500' : saveStatus === 'error' ? 'text-red-500' : isDark ? 'text-gray-500' : 'text-gray-400'
}`}
style={{ opacity: showSaveStatus && saveStatus !== 'idle' ? 1 : 0 }}
>
{saveStatus === 'saved' ? 'Saved' : saveStatus === 'saving' ? 'Saving...' : saveStatus === 'error' ? 'Save failed' : ''}
</span>
<input
ref={fileInputRef}
type="file"
accept=".json,application/json"
multiple
className="hidden"
onChange={handleFileInputChange}
/>
</div>
{!currentBlueprintPath && (
<div className={`text-xs italic ${isDark ? 'text-gray-500' : 'text-gray-400'}`}>
No file open; Save will create a new file.
</div>
)}
<div
className={`${isDark ? 'border-gray-700' : 'border-gray-200'} border-t border-dashed mx-1`}
onContextMenu={(e) => { e.preventDefault(); e.stopPropagation(); }}
/>
<div
onContextMenu={(e) => {
if (activeTab === 'project') {
openContextMenu(e);
}
}}
onDragOver={(e) => {
if (e.dataTransfer.types.includes('Files')) { e.preventDefault(); }
}}
onDrop={async (e) => {
if (e.dataTransfer.files?.length) {
e.preventDefault();
await handleUploadFiles(e.dataTransfer.files, currentFolder);
}
}}
>
{projectTree.length === 0 ? (
<div className="flex flex-col items-center justify-center h-40 opacity-50">
<Folder size={32} className="mb-2" />
<p className="text-xs text-center">No files. Right-click to add.</p>
</div>
) : (
<div className="space-y-1">
{renderTree(projectTree, 0)}
</div>
)}
</div>
</div>
)}
{activeTab === 'files' && (
<div
className="flex flex-col h-full gap-2"
onDragOver={(e) => { if (e.dataTransfer.types.includes('Files')) e.preventDefault(); }}
onDrop={async (e) => {
if (e.dataTransfer.files?.length) {
e.preventDefault();
await handleFilesUpload(e.dataTransfer.files);
}
}}
>
<div className="flex items-center gap-2">
<button
onClick={() => refreshFiles()}
className={`p-1 rounded ${isDark ? 'hover:bg-gray-700' : 'hover:bg-gray-200'}`}
title="Refresh files"
>
<RefreshCw size={14} />
</button>
<button
onClick={() => fileUploadRef.current?.click()}
className={`p-1 rounded ${isDark ? 'hover:bg-gray-700' : 'hover:bg-gray-200'}`}
title="Upload files (drag & drop supported)"
>
<Upload size={14} />
</button>
<input
ref={fileUploadRef}
type="file"
multiple
className="hidden"
onChange={handleFilesInputChange}
/>
<span className={`text-xs ${isDark ? 'text-gray-500' : 'text-gray-500'}`}>Drag files here or click upload</span>
</div>
<div className="flex items-center gap-2">
<input
value={fileSearch}
onChange={(e) => setFileSearch(e.target.value)}
className={`flex-1 text-sm border rounded px-2 py-1 ${isDark ? 'bg-gray-800 border-gray-700 text-gray-100 placeholder-gray-500' : 'bg-white border-gray-200 text-gray-800 placeholder-gray-400'}`}
placeholder="Search files by name..."
/>
{fileSearch && (
<button
onClick={() => setFileSearch('')}
className={`text-xs px-2 py-1 rounded ${isDark ? 'bg-gray-800 border border-gray-700 text-gray-200' : 'bg-gray-100 border border-gray-200 text-gray-700'}`}
title="Clear search"
>
Clear
</button>
)}
</div>
{files.length === 0 && (uploadingFileIds?.length || 0) === 0 ? (
<div className="flex flex-col items-center justify-center h-full opacity-50 border border-dashed border-gray-300 dark:border-gray-700 rounded">
<FileText size={32} className="mb-2" />
<p className="text-xs text-center">No files uploaded yet.</p>
</div>
) : filteredFiles.length === 0 && (uploadingFileIds?.length || 0) === 0 ? (
<div className="flex flex-col items-center justify-center h-full opacity-50 border border-dashed border-gray-300 dark:border-gray-700 rounded">
<FileText size={32} className="mb-2" />
<p className="text-xs text-center">No files match your search.</p>
</div>
) : (
<div className="flex-1 overflow-y-auto space-y-1">
{filteredFiles.map(f => (
<div
key={f.id}
className={`flex items-center justify-between px-2 py-1 rounded border ${isDark ? 'border-gray-700 hover:bg-gray-800' : 'border-gray-200 hover:bg-gray-100'}`}
>
<div className="flex flex-col">
<span className="text-sm font-medium">{f.name}</span>
<span className={`text-[11px] ${isDark ? 'text-gray-500' : 'text-gray-500'}`}>
{formatSize(f.size)} • {new Date(f.created_at * 1000).toLocaleString()}
</span>
{f.provider && (
<span className={`text-[11px] inline-flex items-center gap-1 mt-0.5 px-2 py-0.5 rounded ${isDark ? 'bg-gray-800 text-gray-300 border border-gray-700' : 'bg-gray-100 text-gray-700 border border-gray-200'}`}>
Provider: {f.provider === 'openai' ? 'OpenAI' : f.provider === 'google' ? 'Gemini' : f.provider}
</span>
)}
</div>
<div className="flex items-center gap-2">
<button
onClick={() => handleDownloadFile(f)}
className={`p-1 rounded ${isDark ? 'hover:bg-gray-700' : 'hover:bg-gray-200'}`}
title="Download"
>
<Download size={14} />
</button>
<button
onClick={async () => { if (confirm('Delete this file?')) { await deleteFile(f.id); } }}
className={`p-1 rounded ${isDark ? 'hover:bg-red-900 text-red-300' : 'hover:bg-red-50 text-red-600'}`}
title="Delete"
>
<Trash2 size={14} />
</button>
</div>
</div>
))}
{uploadingFileIds && uploadingFileIds.length > 0 && (
<div className={`flex items-center justify-between px-2 py-2 rounded border border-dashed ${isDark ? 'border-gray-700 text-gray-400' : 'border-gray-300 text-gray-500'}`}>
<div className="flex items-center gap-2">
<Loader2 className="animate-spin" size={14} />
<span className="text-sm">Uploading {uploadingFileIds.length} file{uploadingFileIds.length > 1 ? 's' : ''}…</span>
</div>
</div>
)}
</div>
)}
</div>
)}
{activeTab === 'archive' && (
<div className="space-y-2">
{archivedNodes.length === 0 ? (
<div className="flex flex-col items-center justify-center h-40 opacity-50">
<Archive size={32} className="mb-2" />
<p className="text-xs text-center">
No archived nodes.<br/>
Right-click a node → "Add to Archive"
</p>
</div>
) : (
<>
<p className={`text-xs mb-2 ${isDark ? 'text-gray-500' : 'text-gray-400'}`}>Drag to canvas to create a copy</p>
{archivedNodes.map((archived) => (
<div
key={archived.id}
draggable
onDragStart={(e) => handleDragStart(e, archived.id)}
className={`p-2 border rounded-md cursor-grab transition-colors group ${
isDark
? 'bg-gray-700 border-gray-600 hover:bg-gray-600 hover:border-gray-500'
: 'bg-gray-50 border-gray-200 hover:bg-gray-100 hover:border-gray-300'
}`}
title={`Label: ${archived.label}\nModel: ${archived.model}\nSystem: ${archived.systemPrompt || '(empty)'}\nUser: ${(archived.userPrompt || '').slice(0,80)}${(archived.userPrompt || '').length>80?'…':''}\nResp: ${(archived.response || '').slice(0,80)}${(archived.response || '').length>80?'…':''}`}
>
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<MessageSquare size={14} className={isDark ? 'text-gray-400' : 'text-gray-500'} />
<span className={`text-sm font-medium truncate max-w-[140px] ${isDark ? 'text-gray-200' : ''}`}>{archived.label}</span>
</div>
<button
onClick={() => removeFromArchive(archived.id)}
className={`opacity-0 group-hover:opacity-100 p-1 rounded transition-all ${
isDark ? 'hover:bg-red-900 text-gray-400 hover:text-red-400' : 'hover:bg-red-100 text-gray-400 hover:text-red-500'
}`}
title="Remove from archive"
>
<Trash2 size={12} />
</button>
</div>
<div className={`text-[10px] mt-1 ${isDark ? 'text-gray-500' : 'text-gray-400'}`}>{archived.model}</div>
</div>
))}
</>
)}
</div>
)}
</div>
{/* Context Menu */}
{contextMenu && (
<div
className={`fixed z-50 rounded-md shadow-lg border py-1 text-sm ${isDark ? 'bg-gray-800 border-gray-700 text-gray-200' : 'bg-white border-gray-200 text-gray-700'}`}
style={{ top: contextMenu.y, left: contextMenu.x }}
onClick={(e) => e.stopPropagation()}
>
{(() => {
const item = contextMenu.item;
const targetFolder = item
? (item.type === 'folder' ? item.path : item.path.split('/').slice(0, -1).join('/') || '.')
: '.'; // empty area => root
const commonNew = (
<>
<button className="block w-full text-left px-3 py-1 hover:bg-gray-100 dark:hover:bg-gray-700" onClick={() => { closeContextMenu(); handleCreateFolder(targetFolder); }}>New Folder</button>
<button className="block w-full text-left px-3 py-1 hover:bg-gray-100 dark:hover:bg-gray-700" onClick={() => { closeContextMenu(); handleNewBlueprint(targetFolder); }}>New Blueprint</button>
<button className="block w-full text-left px-3 py-1 hover:bg-gray-100 dark:hover:bg-gray-700" onClick={() => { closeContextMenu(); handleUploadClick(); }}>Upload</button>
</>
);
if (!item) {
return commonNew;
}
if (item.type === 'file') {
return (
<>
{commonNew}
<button className="block w-full text-left px-3 py-1 hover:bg-gray-100 dark:hover:bg-gray-700" onClick={() => { closeContextMenu(); handleDownload(item); }}>Download</button>
<button className="block w-full text-left px-3 py-1 hover:bg-gray-100 dark:hover:bg-gray-700" onClick={() => { closeContextMenu(); handleRename(item); }}>Rename</button>
<button className="block w-full text-left px-3 py-1 text-red-500 hover:bg-red-50 dark:hover:bg-red-900/40" onClick={() => { closeContextMenu(); handleDelete(item); }}>Delete</button>
</>
);
}
// folder
return (
<>
{commonNew}
<button className="block w-full text-left px-3 py-1 hover:bg-gray-100 dark:hover:bg-gray-700" onClick={() => { closeContextMenu(); handleRename(item); }}>Rename</button>
<button className="block w-full text-left px-3 py-1 text-red-500 hover:bg-red-50 dark:hover:bg-red-900/40" onClick={() => { closeContextMenu(); handleDelete(item); }}>Delete</button>
</>
);
})()}
</div>
)}
</div>
);
};
export default LeftSidebar;
|