fix: 修复调整布局时文件管理器卡在加载状态的问题

This commit is contained in:
Baobhan Sith
2025-04-18 10:03:31 +08:00
parent be94cd8745
commit aaf0efbe40
@@ -73,6 +73,12 @@ export function createSftpActionsManager(
const loadDirectory = (path: string) => { const loadDirectory = (path: string) => {
if (!isSftpReady.value) { if (!isSftpReady.value) {
// 使用通知 store 显示错误 // 使用通知 store 显示错误
// *** 新增:如果已经在加载,则阻止新的加载请求 ***
if (isLoading.value) {
console.warn(`[SFTP ${instanceSessionId}] 尝试加载目录 ${path} 但已在加载中。`);
return;
}
uiNotificationsStore.showError(t('fileManager.errors.sftpNotReady'), { timeout: 5000 }); // 使用 uiNotificationsStore uiNotificationsStore.showError(t('fileManager.errors.sftpNotReady'), { timeout: 5000 }); // 使用 uiNotificationsStore
isLoading.value = false; isLoading.value = false;
fileList.value = []; fileList.value = [];