Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
766579c
Add folder tree path helpers for sidebar navigation
PreciousOritsedere Jul 27, 2026
b649f77
Add helper function to fetch child folders for sidebar tree
PreciousOritsedere Jul 28, 2026
83f193d
Add folder tree component
PreciousOritsedere Jul 28, 2026
c8fb92a
Show folder tree in sidebar
PreciousOritsedere Jul 28, 2026
de945a0
Add foldertree to the sidebar component
PreciousOritsedere Jul 28, 2026
fba59ef
ran npm i
PreciousOritsedere Aug 3, 2026
373150a
Merge branch 'main' into 42-sidebar-folder-tree
PreciousOritsedere Aug 5, 2026
edf314b
Add shared in-memory container listing cache
PreciousOritsedere Aug 6, 2026
1abb346
Use shared container cache in useBrowseStorage
PreciousOritsedere Aug 6, 2026
094a6ee
Share container listings between sidebar tree and main browse
PreciousOritsedere Aug 6, 2026
925c9c8
Treat empty containers as empty listings in the folder tree
PreciousOritsedere Aug 6, 2026
f6276b5
Add file action types, and useFileOperations hook
PreciousOritsedere Aug 10, 2026
26211ea
Add FileManagerProvider skeleton
PreciousOritsedere Aug 10, 2026
74b8895
Fix typo in fileManagerContext.ts
PreciousOritsedere Aug 10, 2026
d3574b1
extend browse context (add delayed refresh)
PreciousOritsedere Aug 10, 2026
c45e547
add useFileManagerNavigation hook
PreciousOritsedere Aug 11, 2026
e79b121
Add useContainerBrowse hook for container listing and refresh
PreciousOritsedere Aug 11, 2026
cd65821
Wire navigation, browse, and actions into FileManagerProvider
PreciousOritsedere Aug 11, 2026
66f67aa
chore: remove unused useCallback import
PreciousOritsedere Aug 11, 2026
74d5f67
update export file
PreciousOritsedere Aug 11, 2026
dd4613a
Wire FileManager to provider with internal dialogs and selection
PreciousOritsedere Aug 12, 2026
2dbe4ab
Fix ESLint errors and warnings across the app
PreciousOritsedere Aug 12, 2026
5e25c7f
Notify listeners when cache is invalidated
PreciousOritsedere Aug 12, 2026
3d4d1a4
Invalidate in useContainerBrowse before refresh
PreciousOritsedere Aug 12, 2026
05189d2
Wire move success
PreciousOritsedere Aug 12, 2026
f2cdd9c
Sync FolderTree with shared container cache via useSyncExternalStore
PreciousOritsedere Aug 12, 2026
9be0780
Refetch expanded folder tree branches after cache invalidation
PreciousOritsedere Aug 12, 2026
291854f
Clear cache on logout
PreciousOritsedere Aug 12, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion app/components/FileList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ const VIEW_STORAGE_KEY = "solid-file-manager-view";

export default function FileList({
files,
currentPath,
onFileSelect,
onFileDoubleClick,
onFileRename,
Expand Down
Loading