Fix file upload limits and UI performance issues

- Remove artificial 18MB file size restrictions across all layers
- Increase limits to industry standard: 5GB for file operations, 1GB for JSON
- Eliminate duplicate resize handlers causing UI instability
- Fix Terminal connection blank screen by removing 300ms delay
- Optimize clipboard state flow for copy/paste functionality
- Complete i18n implementation removing hardcoded strings
- Apply Linus principle: eliminate complexity, fix data structure issues

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
ZacharyZcR
2025-09-21 02:12:33 +08:00
parent 84d55080e4
commit 1e6ab7b3a0
13 changed files with 166 additions and 87 deletions

View File

@@ -92,6 +92,7 @@ interface FileManagerGridProps {
onFileDiff?: (file1: FileItem, file2: FileItem) => void;
onSystemDragStart?: (files: FileItem[]) => void;
onSystemDragEnd?: (e: DragEvent) => void;
hasClipboard?: boolean;
// Linus式创建意图props
createIntent?: CreateIntent | null;
onConfirmCreate?: (name: string) => void;
@@ -194,6 +195,7 @@ export function FileManagerGrid({
onFileDiff,
onSystemDragStart,
onSystemDragEnd,
hasClipboard,
createIntent,
onConfirmCreate,
onCancelCreate,
@@ -894,7 +896,7 @@ export function FileManagerGrid({
break;
case "v":
case "V":
if ((event.ctrlKey || event.metaKey) && onPaste) {
if ((event.ctrlKey || event.metaKey) && onPaste && hasClipboard) {
event.preventDefault();
onPaste();
}
@@ -1016,20 +1018,20 @@ export function FileManagerGrid({
}
}}
className="flex-1 px-2 py-1 bg-dark-hover border border-dark-border rounded text-sm focus:outline-none focus:ring-1 focus:ring-primary"
placeholder="输入路径..."
placeholder={t("fileManager.enterPath")}
autoFocus
/>
<button
onClick={confirmEditingPath}
className="px-2 py-1 bg-primary text-primary-foreground rounded text-xs hover:bg-primary/80"
>
{t("fileManager.confirm")}
</button>
<button
onClick={cancelEditingPath}
className="px-2 py-1 bg-secondary text-secondary-foreground rounded text-xs hover:bg-secondary/80"
>
{t("fileManager.cancel")}
</button>
</div>
) : (
@@ -1057,7 +1059,7 @@ export function FileManagerGrid({
<button
onClick={startEditingPath}
className="ml-2 p-1 rounded hover:bg-dark-hover opacity-60 hover:opacity-100"
title="编辑路径"
title={t("fileManager.editPath")}
>
<Edit className="w-3 h-3" />
</button>
@@ -1473,7 +1475,7 @@ function CreateIntentGridItem({
onKeyDown={handleKeyDown}
onBlur={() => onConfirm?.(inputName.trim())}
className="w-full max-w-[120px] rounded-md border border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800 px-2 py-1 text-xs text-center text-foreground placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[2px] outline-none"
placeholder={intent.type === 'directory' ? 'Folder name' : 'File name'}
placeholder={intent.type === 'directory' ? t('fileManager.folderName') : t('fileManager.fileName')}
/>
</div>
</div>

View File

@@ -130,7 +130,7 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
const { isDragging, dragHandlers } = useDragAndDrop({
onFilesDropped: handleFilesDropped,
onError: (error) => toast.error(error),
maxFileSize: 100, // 100MB
maxFileSize: 5120, // 5GB - support large files like SSH tools should
});
// 拖拽到桌面功能
@@ -792,13 +792,13 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
if (hasRenamed) {
toast.success(
`${operationText} ${successCount} 个项目,部分文件已自动重命名避免冲突`,
t("fileManager.operationCompletedSuccessfully", { operation: operationText, count: successCount }),
);
} else {
toast.success(`${operationText} ${successCount} 个项目`);
toast.success(t("fileManager.operationCompleted", { operation: operationText, count: successCount }));
}
} else {
toast.success(`${operationText} ${successCount} 个项目`);
toast.success(t("fileManager.operationCompleted", { operation: operationText, count: successCount }));
}
}
@@ -811,13 +811,13 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
setClipboard(null);
}
} catch (error: any) {
toast.error(`粘贴失败: ${error.message || "Unknown error"}`);
toast.error(`${t("fileManager.pasteFailed")}: ${error.message || t("fileManager.unknownError")}`);
}
}
async function handleUndo() {
if (undoHistory.length === 0) {
toast.info("没有可撤销的操作");
toast.info(t("fileManager.noUndoableActions"));
return;
}
@@ -860,14 +860,14 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
// 移除最后一个撤销记录
setUndoHistory((prev) => prev.slice(0, -1));
toast.success(
`已撤销复制操作:删除了 ${successCount} 个复制的文件`,
t("fileManager.undoCopySuccess", { count: successCount }),
);
} else {
toast.error("撤销失败:无法删除任何复制的文件");
toast.error(t("fileManager.undoCopyFailedDelete"));
return;
}
} else {
toast.error("撤销失败:找不到复制的文件信息");
toast.error(t("fileManager.undoCopyFailedNoInfo"));
return;
}
break;
@@ -902,34 +902,34 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
// 移除最后一个撤销记录
setUndoHistory((prev) => prev.slice(0, -1));
toast.success(
`已撤销移动操作:移回了 ${successCount} 个文件到原位置`,
t("fileManager.undoMoveSuccess", { count: successCount }),
);
} else {
toast.error("撤销失败:无法移回任何文件");
toast.error(t("fileManager.undoMoveFailedMove"));
return;
}
} else {
toast.error("撤销失败:找不到移动的文件信息");
toast.error(t("fileManager.undoMoveFailedNoInfo"));
return;
}
break;
case "delete":
// 删除操作无法真正撤销(文件已从服务器删除)
toast.info("删除操作无法撤销:文件已从服务器永久删除");
toast.info(t("fileManager.undoDeleteNotSupported"));
// 仍然移除历史记录,因为用户已经知道了这个限制
setUndoHistory((prev) => prev.slice(0, -1));
return;
default:
toast.error("不支持撤销此类操作");
toast.error(t("fileManager.undoTypeNotSupported"));
return;
}
// 刷新文件列表
handleRefreshDirectory();
} catch (error: any) {
toast.error(`撤销操作失败: ${error.message || "Unknown error"}`);
toast.error(`${t("fileManager.undoOperationFailed")}: ${error.message || t("fileManager.unknownError")}`);
console.error("Undo failed:", error);
}
}
@@ -1117,7 +1117,7 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
}
} catch (error: any) {
console.error(`Failed to move file ${file.name}:`, error);
toast.error(`移动 ${file.name} 失败: ${error.message}`);
toast.error(t("fileManager.moveFileFailed", { name: file.name }) + ": " + error.message);
}
}
@@ -1156,14 +1156,14 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
}
} catch (error: any) {
console.error("Drag move operation failed:", error);
toast.error(`移动操作失败: ${error.message}`);
toast.error(t("fileManager.moveOperationFailed") + ": " + error.message);
}
}
// 拖拽处理:文件拖到文件 = diff对比操作
function handleFileDiff(file1: FileItem, file2: FileItem) {
if (file1.type !== "file" || file2.type !== "file") {
toast.error("只能对比两个文件");
toast.error(t("fileManager.canOnlyCompareFiles"));
return;
}
@@ -1202,7 +1202,7 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
zIndex: Date.now(),
});
toast.success(`正在对比文件: ${file1.name}${file2.name}`);
toast.success(t("fileManager.comparingFiles", { file1: file1.name, file2: file2.name }));
}
// 拖拽到桌面处理函数
@@ -1234,7 +1234,7 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
}
} catch (error: any) {
console.error("拖拽到桌面失败:", error);
toast.error(`拖拽失败: ${error.message || "未知错误"}`);
toast.error(t("fileManager.dragFailed") + ": " + (error.message || t("fileManager.unknownError")));
}
}
@@ -1344,10 +1344,10 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
await addPinnedFile(currentHost.id, file.path, file.name);
setPinnedFiles((prev) => new Set([...prev, file.path]));
setSidebarRefreshTrigger((prev) => prev + 1); // 触发侧边栏刷新
toast.success(`文件"${file.name}"已固定`);
toast.success(t("fileManager.filePinnedSuccessfully", { name: file.name }));
} catch (error) {
console.error("Failed to pin file:", error);
toast.error("固定文件失败");
toast.error(t("fileManager.pinFileFailed"));
}
}
@@ -1363,10 +1363,10 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
return newSet;
});
setSidebarRefreshTrigger((prev) => prev + 1); // 触发侧边栏刷新
toast.success(`文件"${file.name}"已取消固定`);
toast.success(t("fileManager.fileUnpinnedSuccessfully", { name: file.name }));
} catch (error) {
console.error("Failed to unpin file:", error);
toast.error("取消固定失败");
toast.error(t("fileManager.unpinFileFailed"));
}
}
@@ -1378,10 +1378,10 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
const folderName = path.split("/").pop() || path;
await addFolderShortcut(currentHost.id, path, folderName);
setSidebarRefreshTrigger((prev) => prev + 1); // 触发侧边栏刷新
toast.success(`文件夹快捷方式"${folderName}"已添加`);
toast.success(t("fileManager.shortcutAddedSuccessfully", { name: folderName }));
} catch (error) {
console.error("Failed to add shortcut:", error);
toast.error("添加快捷方式失败");
toast.error(t("fileManager.addShortcutFailed"));
}
}
@@ -1613,6 +1613,7 @@ function FileManagerContent({ initialHost, onClose }: FileManagerModernProps) {
onCut={handleCutFiles}
onPaste={handlePasteFiles}
onUndo={handleUndo}
hasClipboard={!!clipboard}
onFileDrop={handleFileDrop}
onFileDiff={handleFileDiff}
onSystemDragStart={handleFileDragStart}

View File

@@ -139,11 +139,11 @@ export function DiffViewer({
document.body.removeChild(link);
URL.revokeObjectURL(url);
toast.success(`文件下载成功: ${file.name}`);
toast.success(t("fileManager.downloadFileSuccess", { name: file.name }));
}
} catch (error: any) {
console.error("Failed to download file:", error);
toast.error(`下载失败: ${error.message || "未知错误"}`);
toast.error(t("fileManager.downloadFileFailed") + ": " + (error.message || t("fileManager.unknownError")));
}
};

View File

@@ -221,7 +221,7 @@ export function DraggableWindow({
e.stopPropagation();
onMinimize();
}}
title="最小化"
title={t("common.minimize")}
>
<Minus className="w-4 h-4" />
</button>
@@ -250,7 +250,7 @@ export function DraggableWindow({
e.stopPropagation();
onClose();
}}
title="关闭"
title={t("common.close")}
>
<X className="w-4 h-4" />
</button>

View File

@@ -294,9 +294,9 @@ export function FileViewer({
const fileTypeInfo = getFileType(file.name);
// 文件大小限制 (1MB for warning, 10MB for hard limit)
const WARNING_SIZE = 1024 * 1024; // 1MB
const MAX_SIZE = 10 * 1024 * 1024; // 10MB
// 文件大小限制 - 移除硬限制,支持大文件处理
const WARNING_SIZE = 50 * 1024 * 1024; // 50MB 警告
const MAX_SIZE = Number.MAX_SAFE_INTEGER; // 移除硬限制
// 检查是否应该显示为文本
const shouldShowAsText =
@@ -580,7 +580,7 @@ export function FileViewer({
<div className="flex-shrink-0 bg-muted/30 border-b border-border p-3">
<div className="flex items-center gap-2 mb-2">
<Input
placeholder="Find..."
placeholder={t("fileManager.find")}
value={searchText}
onChange={(e) => {
setSearchText(e.target.value);
@@ -629,7 +629,7 @@ export function FileViewer({
{showReplacePanel && (
<div className="flex items-center gap-2 mb-2">
<Input
placeholder="Replace with..."
placeholder={t("fileManager.replaceWith")}
value={replaceText}
onChange={(e) => setReplaceText(e.target.value)}
className="w-48 h-8"
@@ -805,7 +805,7 @@ export function FileViewer({
value={editedContent}
onChange={(e) => handleContentChange(e.target.value)}
className="w-full h-full p-4 border-none resize-none outline-none font-mono text-sm overflow-auto bg-background text-foreground"
placeholder="Start typing..."
placeholder={t("fileManager.startTyping")}
spellCheck={false}
/>
)}

View File

@@ -223,7 +223,7 @@ export function FileWindow({
autoSaveTimerRef.current = null;
}
toast.success("File saved successfully");
toast.success(t("fileManager.fileSavedSuccessfully"));
} catch (error: any) {
console.error("Failed to save file:", error);
@@ -236,7 +236,7 @@ export function FileWindow({
`SSH connection failed. Please check your connection to ${sshHost.name} (${sshHost.ip}:${sshHost.port})`,
);
} else {
toast.error(`Failed to save file: ${error.message || "Unknown error"}`);
toast.error(`${t("fileManager.failedToSaveFile")}: ${error.message || t("fileManager.unknownError")}`);
}
} finally {
setIsLoading(false);
@@ -257,10 +257,10 @@ export function FileWindow({
try {
console.log("Auto-saving file...");
await handleSave(newContent);
toast.success("File auto-saved");
toast.success(t("fileManager.fileAutoSaved"));
} catch (error) {
console.error("Auto-save failed:", error);
toast.error("Auto-save failed");
toast.error(t("fileManager.autoSaveFailed"));
}
}, 60000); // 1分钟 = 60000毫秒
};
@@ -303,7 +303,7 @@ export function FileWindow({
document.body.removeChild(link);
URL.revokeObjectURL(url);
toast.success("File downloaded successfully");
toast.success(t("fileManager.fileDownloadedSuccessfully"));
}
} catch (error: any) {
console.error("Failed to download file:", error);

View File

@@ -16,7 +16,7 @@ interface UseDragAndDropProps {
export function useDragAndDrop({
onFilesDropped,
onError,
maxFileSize = 100, // 100MB default
maxFileSize = 5120, // 5GB default - much more reasonable
allowedTypes = [], // empty means all types allowed
}: UseDragAndDropProps) {
const [state, setState] = useState<DragAndDropState>({