Filter out directories from file picker, show only files

- Filter git files ending with / (directories)
- Filter search results ending with / (directories)
- Only show actual files in file picker
- Directories cannot be attached as files
This commit is contained in:
Shantur Rathore
2025-10-24 01:33:40 +01:00
parent 947f19885e
commit b13080e5dc

View File

@@ -48,12 +48,14 @@ const FilePicker: Component<FilePickerProps> = (props) => {
console.log(`[FilePicker] Git files response received in ${elapsed}ms:`, gitResponse)
if (gitResponse?.data && gitResponse.data.length > 0) {
const gitFiles: FileItem[] = gitResponse.data.map((file: any) => ({
path: file.path,
added: file.added,
removed: file.removed,
isGitFile: true,
}))
const gitFiles: FileItem[] = gitResponse.data
.filter((file: any) => !file.path.endsWith("/"))
.map((file: any) => ({
path: file.path,
added: file.added,
removed: file.removed,
isGitFile: true,
}))
console.log(`[FilePicker] Cached ${gitFiles.length} git files`)
setCachedGitFiles(gitFiles)
} else {
@@ -91,6 +93,7 @@ const FilePicker: Component<FilePickerProps> = (props) => {
console.log(`[FilePicker] Search response received in ${elapsed}ms:`, searchResponse)
searchFiles = (searchResponse?.data || [])
.filter((path: string) => !path.endsWith("/"))
.filter((path: string) => !gitFiles.some((gf) => gf.path === path))
.map((path: string) => ({
path,
@@ -106,6 +109,7 @@ const FilePicker: Component<FilePickerProps> = (props) => {
console.log(`[FilePicker] All files response received in ${elapsed}ms:`, searchResponse)
searchFiles = (searchResponse?.data || [])
.filter((path: string) => !path.endsWith("/"))
.filter((path: string) => !gitFiles.some((gf) => gf.path === path))
.map((path: string) => ({
path,