-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Files summary would help more at the top of the files list #33261
Comments
I confirm that it is very painful to get the number of files inside a folder through Nextcloud interface. |
@Baptistou's solution could also be helpful, as you can access the information even before opening the folder. However, implementing that solution requires more effort, as that information is not readily available when listing the directory. A directory entry in the list looks like this:
Since I have not found the code that is used for filling the template, I'm not sure the information is available there and could be easily added as data properties on the row entry. Also, adding that information to the details panel could still be implemented alongside one of the solutions mentioned in the opening comment. It would be an additional improvement. However, it would be great if the simple change of having the information that is already there simply in a more accessible place, ie. the head of the table, not the foot. |
Ping @PVince81 |
I'm not sure if #28063 had a new design where the summary would be located elsewhere, might be something to consider in general @jancborchardt @nimishavijay ? |
@PVince81 could we still implement an intermediary solution, if vue is not yet ready for the folder views. Or who could help me helping you in the transition to vue? |
Is there any news regarding this? |
@nextcloud/designers, thoughts? |
In my point of view, seeing the folder & file counts in the details view opening on the right side is very essential as the large comment from @martin-rueegg . In the daily work, this is a productivity booster and reduces compute resources a lot (e.g. creating previews for every folder which is opened). Adding the counts to the detail view should be pretty simple. What would be the planned milestone for this issue? |
@hdeppert there is not much attention from the devs here, unfortunately. Given the triviality of a possible solution (just move it to the head), it's mind boggling. Of course, putting it into the details tab might be great. It would then also be accessible from the parent folder, even without opening the folder in question. However, this would probably require more work. The solution does not need to be perfect. But just moving it to the top would do. I'd be happy to do a PR, if anyone would point me in the right direction. But I guess my initial comment made it clear that I already had a look at the code and would be willing to do some work. @PVince81, @joshtrichards would you be able to ping the person that could help? Would that still be @jancborchardt and /or @nimishavijay ? |
Simplicity is not always the reason, the fact that most people might not want that is also a possibility 🤷 In any case, there are looots of much more important issues in my opinion :) |
Current situation
Currently, the files summary (number of directories and/or files, the directory size are shown at the end of the file list, like so:
Now, when viewing a folder in the files app where there are more files in the list, than can be displayed on the screen, this line is not visible until you scroll till the end of the list:
Why this is an issue
IMO, it is already non-user-friendly if a users just wants to know the number of items and she or he has to scroll to the bottom of the list.
But it becomes even more cumbersome, if one has loads of files and these files are loaded incrementally. And it's even worse, if its a list of pictures, where thumbnails are shown and the thumbnails have not been created yet. So you scroll down, get a glimpse of the information you are looking for (since the table footer is already there) but then it disappears again as the list is expanded, new thumbnails are loaded, slowing down the server, scrolling down again, ... You get the picture.
And all this, while the information you have been looking is there all along since the first page load. Just hidden from your eyes....
Possible solutions
summary
to the table head. That would be quick and easy and would, in my point of view, create the most consistent user experience, as the information is always at the top, at the same place, no matter if 0, 1, a few or many entries in the given directory.Files affected (to be completed)
<tr class="summary">
<tr class="summary">
is added to<tfoot>
Possibly related/affected issues:
Foot note as requested by NC's issue template
How to use GitHub
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: