You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current API specs are just about listing the full list of existing tags.
But the current deployed backend implementation on https://conduit.productionready.io/api only retrieves the most popular ones (explaining why we currently have mature content displayed after a massive attack).
It means that people trying out the deployed frontend implementations will only the most popular tags as it uses the official API. But people trying out backend implementations would have different behavior.
Even with lower traffic than the official web app, the LayrJS implementation already displays a long list of tags.
We need to consider moving to a filtered and ordered list of tags (to get the most popular ones) for the v2.
Describe alternatives you've considered
Have you considered any alternative solutions or workarounds?
The text was updated successfully, but these errors were encountered:
I totally agree that the tags should be sorted by popularity (in descending order) and limited to a certain number. It should be included in the API specs.
Another reasonable option would be to sort by last create or better, last applied to an article (current ordering appears undefined: #839 ) as that would lead to good experience for interactive exploration (you create article with tag, then go to index, and easily find your tag to click it and see your article sorted by it).
Sorting by most popular would however be ideal for autocomplete: #784 so maybe the best is to have a ?sort= URL parameter.
Though I guess when we implement: #649 users can just test their tags by clicking their posts on the latest post list. So maybe just keep most popular tags then.
🚀 feature request
Relevant scope
What is the scope of this request?
Description
The current API specs are just about listing the full list of existing tags.
But the current deployed backend implementation on https://conduit.productionready.io/api only retrieves the most popular ones (explaining why we currently have mature content displayed after a massive attack).
It means that people trying out the deployed frontend implementations will only the most popular tags as it uses the official API. But people trying out backend implementations would have different behavior.
We can see the full list in action on the LayrJS fullstack implementation: https://react-layr-realworld-example-app.layrjs.com/all
Describe the solution you'd like
Even with lower traffic than the official web app, the LayrJS implementation already displays a long list of tags.
We need to consider moving to a filtered and ordered list of tags (to get the most popular ones) for the v2.
Describe alternatives you've considered
Have you considered any alternative solutions or workarounds?The text was updated successfully, but these errors were encountered: