1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-23 06:25:26 +00:00

Show number of replies/reblogs/favourites in status footer of curses ui

When parsing "replies_count" from status data, we allow the field to be
absent as it got added in version 2.5.0 (in constrast with other ones,
added in 0.1.0) as there might be servers with that version around.
This commit is contained in:
Denis Laxalde 2019-01-07 10:13:29 +01:00 committed by Ivan Habunek
parent 4bc963a236
commit 5a867f2380
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
2 changed files with 9 additions and 0 deletions

View File

@ -221,6 +221,12 @@ class StatusDetailWindow:
if status['reblogged']:
yield "↷ Boosted", Color.CYAN
yield (
"{replies_count} replies, "
"{reblogs_count} reblogs, "
"{favourites_count} favourites"
).format(**status), Color.CYAN
def draw(self, status):
self.window.erase()
self.window.box()

View File

@ -16,11 +16,14 @@ def parse_status(status):
'created_at': created_at,
'content': content,
'favourited': status.get('favourited'),
'favourites_count': _status['favourites_count'],
'id': status['id'],
'in_reply_to_id': _status.get('in_reply_to_id'),
'media_attachments': _status['media_attachments'],
'url': _status['url'],
'reblogged': status.get('reblogged'),
'reblogs_count': _status['reblogs_count'],
'replies_count': _status.get('replies_count', 0),
'spoiler_text': spoiler_text,
'sensitive': _status['sensitive'],
'show_sensitive': False,