uptick / react-keyed-file-browser

Folder based file browser given a flat keyed list of objects, powered by React.
MIT License
298 stars 144 forks source link

Breadcrumbs for easy navigation #151

Open venky0195 opened 3 years ago

venky0195 commented 3 years ago

Hi, Is it possible to implement breadcrumbing just like the attachment below? just like how google drive gives breadcrumbs on the top of the component. final-result

tmarcinkowski-logitech commented 3 years ago

You can implement it on your side, but the main difficulty is that the FileBrowser supports multiple open folders that may be at completely different paths. What breadcrumbs will you show then?

I did it though, on my client app. It's a matter of hooking into onFolderOpen and onFolderClose methods and storing your current path. What's more, I added the capability to have only one folder open at the same time but that part needed forking the library (see #182).