Skip to content
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

[FEATURE] Alphabetic sorting of tags in resources filter #129

Closed
VeckoTheGecko opened this issue May 8, 2023 · 2 comments · Fixed by #191
Closed

[FEATURE] Alphabetic sorting of tags in resources filter #129

VeckoTheGecko opened this issue May 8, 2023 · 2 comments · Fixed by #191
Labels
coding Change that requires coding enhancement New feature or request for the website good first issue Good for new developers help wanted Extra attention is needed 🟠medium priority A medium priority feature

Comments

@VeckoTheGecko
Copy link
Collaborator

VeckoTheGecko commented May 8, 2023

Describe your suggested improvement
Alphabetic sorting of tags in resources filter (for easier grouping). Tags with emojis should be at the top of the list.

Describe the benefit
Better navigation and finding of tags.

Would you be capable/willing to implement the improvement?
No, I have other priorities. Happy for someone to give this a stab.

Additional comments
Currently the tags list is determined in the following code:

// Creating a list of unique tags
let tags: string[] = [];
let resource;
for (resource of yml_data) {
tags.push(...resource.tags)
}
tags = [...new Set(tags)]

Which has no sorting whatsover. Simply implementing a sort function here (adhering to the requirements) would make this work.

Suggested in #75 (comment) (thanks @JarrodBaniqued!)

@VeckoTheGecko VeckoTheGecko added enhancement New feature or request for the website good first issue Good for new developers help wanted Extra attention is needed coding Change that requires coding 🟠medium priority A medium priority feature labels May 8, 2023
@Micahg05
Copy link
Contributor

Micahg05 commented May 9, 2023

I can do this one. And I'm guessing within the emojis it should also be sorted alphabetically @VeckoTheGecko?

@VeckoTheGecko
Copy link
Collaborator Author

Yep, thats correct 😁

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
coding Change that requires coding enhancement New feature or request for the website good first issue Good for new developers help wanted Extra attention is needed 🟠medium priority A medium priority feature
Projects
None yet
2 participants