-
-
Notifications
You must be signed in to change notification settings - Fork 205
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
Manager: Rework list sorting #2035
base: main
Are you sure you want to change the base?
Conversation
One could argue if the most important group should be at the top or at the bottom, but I guess top is best as you might need to scroll to it otherwise. Also adding these groups is not really a reason to remove the options and always sort by name in ascending order within the groups. Should not hurt, though, I don't think the sort options are a commonly used feature and anybody will miss them (might be completely wrong 😆). One thing that bugs me, though, but I'm not sure what to do with that, is that an item moves now when getting (un)paired or (dis)connected. 🤔 |
I can make ascending/descending an option again.
Sure, I can expand and readd the options. A magic default sort, always alphabetical and always by added.
I can make it a timed sort, let's say an initial sort and then every couple minutes? It would still move at some point but not immediately anymore. Or have a list of devices (iters) that should be delayed for X amount of time. Would that help? |
Our list got very confusing with newly found device rows being inserted in the list based on name or datetime added. When you have lot's of devices it becomes a pain to find them so we need a better way. We primarily now sort whether a device is paired. The logic behind this is that these are the devices the user most likely is interested in. Next we sort all connected devices below and the remaining ones at the bottom.
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Added back in the existing sort options. Will poke at the delayed sort idea I have next. |
Quality Gate passedIssues Measures |
Our list got very confusing with newly found device rows being inserted in the list based on name or datetime added. When you have lot's of devices it becomes a pain to find them so we need a better way.
We primarily now sort whether a device is paired. The logic behind this is that these are the devices the user most likely is interested in. Next we sort all connected devices below and the remaining ones at the bottom.