-
-
Notifications
You must be signed in to change notification settings - Fork 803
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
Module feature (Feed Reader): Add a label to display, and perhaps also group by it #1138
Labels
💥 feature
"Good luck, you're gonna need it."
Comments
Agreed, that would be cool. |
igbanam
added a commit
to igbanam/wtf
that referenced
this issue
Jan 13, 2022
With the FeedReader, it's possible to have multiple feeds. With multiple feeds, all stories are jumbled up in the same list. One cannot know the source of a story at first glance. The way this possible is the to use the `t` keyboard shortcut which cycles the showType through title, link, and content. It is better UX to have some tag showing the origin of a story. This change introduces a tag on the story title. This tag is the same as the Feed.Title. This change is backward compatible. If a feed does not come with a title, this change yields itself to the previous implementation. Fixes wtfutil#1138
So I saw this and thought to take a stab at this. Please review the above and let me know if there is any better way I should be writing Go. p.s: This is the first time I looked into Go ever. So I am winging it on half a wing here. Looking to learn from y'all on Go best practices. |
senorprogrammer
pushed a commit
that referenced
this issue
Jan 14, 2022
* Tag Stories in FeedReader With the FeedReader, it's possible to have multiple feeds. With multiple feeds, all stories are jumbled up in the same list. One cannot know the source of a story at first glance. The way this possible is the to use the `t` keyboard shortcut which cycles the showType through title, link, and content. It is better UX to have some tag showing the origin of a story. This change introduces a tag on the story title. This tag is the same as the Feed.Title. This change is backward compatible. If a feed does not come with a title, this change yields itself to the previous implementation. Fixes #1138 * Format with gofmt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What should it do?
The feeds of the feedreader are probably randomized. It would be nice to see which feed is coming from which RSS feed source by seeing a label associated with that source. Example...
Setting:
returns something like this:
This ticket is asking for user to be able to specify a label for each feed source, and append it in front of the feed OR with an option
grouped
group the feeds belonging to each rss feed label and present them together. For grouped mode, ideally color the label with a different color to make it stand out from the rest of titles of feeds under it.Benefit: It would make it simple for user to look at the ares of their interest at any given point in time and jump accordingly. At present looking at the random feed requires scanning all the lines to find the ones belonging to present topic of interest.
The text was updated successfully, but these errors were encountered: