-
Notifications
You must be signed in to change notification settings - Fork 3
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
Category listing #11
Comments
I would like to review the whole categorization and filtering of modules. In the example below, I filtered issues on being in the "previous iteration" (an iteration is a period of time you define that you work on a project, like a sprint or a coworking day), I grouped them by repository (where the issue belongs to) and sorted them according to their "priority" (which is just a numerical label between 1 and 4). I think this flexibility of filtering, grouping and sorting is too complicated for us, but it is nice as an example. These could perhaps be defined in the config.json file e.g.: "collections": {
"masterclass": {
"filter": "masterclass",
"sort": "order",
"group": "category"
}
} These collections could then be listed in a clear spot on the main page. |
@raar1 @c-martinez @Cmurilochem what do you think? |
I am not sure if the collection filtering would solve the initial problem: I add a new module, but mistype the category name. As a user I only see the new module is not showing at all, and have no idea where the problem is. I am not against if it is a feature that would be useful in other circumstances. I would just ask what happens if I mistype the category name? Where does my module ends up? If it doesn't show up at all (because it doesn't match the filter), I think the user would still find it frustrating. |
yes @c-martinez sorry, I understand the original issue that you mentioned and I agree it should definitely be solved. I just wanted to mention that we might want to rethink and replace the whole category grouping system or at least extend it with the ability to let the user filter, group and sort modules themselves. But I actually think that it belongs in a different issue. |
At the moment, the metadata of the modules includes the
category
keyword, which is used to define in which category the module will appear. But if the category does not exist, it will silently fail (for example if your category isGetting started
instead ofGetting Started
).As a user, it would be nice if "unknown categories" were added automatically to the list of existing categories (maybe thrown at the end).
The text was updated successfully, but these errors were encountered: