feat(UI): Introduce new UI components for file attachments and related views (#191)

Add file management API and UI components
Implement directory listing, search and CRUD operations in desktop backend
Expose new Files API on frontend to list, search, and modify files
This commit is contained in:
Bohdan Triapitsyn
2026-01-22 12:21:19 +02:00
committed by GitHub
parent 1f23b63c0b
commit d97181bcd2
22 changed files with 1611 additions and 1223 deletions
+43
View File
@@ -192,6 +192,49 @@ export const createDesktopFilesAPI = (): FilesAPI => ({
}
},
async delete(path: string): Promise<{ success: boolean }> {
try {
const normalizedPath = normalizePath(path);
const result = await safeInvoke<{ success: boolean }>('delete_path', {
path: normalizedPath,
}, {
timeout: 10000,
onCancel: () => {
console.warn('[FilesAPI] Delete operation timed out');
}
});
return {
success: Boolean(result?.success),
};
} catch (error) {
const message = error instanceof Error ? error.message : String(error);
throw new Error(message || 'Failed to delete path');
}
},
async rename(oldPath: string, newPath: string): Promise<{ success: boolean; path: string }> {
try {
const result = await safeInvoke<{ success: boolean; path: string }>('rename_path', {
oldPath: normalizePath(oldPath),
newPath: normalizePath(newPath),
}, {
timeout: 10000,
onCancel: () => {
console.warn('[FilesAPI] Rename operation timed out');
}
});
return {
success: Boolean(result?.success),
path: result?.path ? normalizePath(result.path) : normalizePath(newPath),
};
} catch (error) {
const message = error instanceof Error ? error.message : String(error);
throw new Error(message || 'Failed to rename path');
}
},
async execCommands(commands: string[], cwd: string): Promise<{
success: boolean;
results: Array<{