From ab1fc6961b416756d5470eb54ac58ed3be7ddd0a Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Wed, 28 Aug 2019 17:29:33 +0200 Subject: [PATCH] Show media in status details --- toot/tui/NOTES.md | 3 +++ toot/tui/constants.py | 1 + toot/tui/timeline.py | 9 +++++++++ 3 files changed, 13 insertions(+) diff --git a/toot/tui/NOTES.md b/toot/tui/NOTES.md index 2868538..dcb0fa9 100644 --- a/toot/tui/NOTES.md +++ b/toot/tui/NOTES.md @@ -3,6 +3,9 @@ Interesting urwid implementations: * https://github.com/TomasTomecek/sen/blob/master/sen/tui/ui.py * https://github.com/rndusr/stig/tree/master/stig/tui +Check out: +* https://github.com/rr-/urwid_readline - better edit box? + TODO/Ideas: * pack left column in timeline view * allow scrolling of toot contents if they don't fit the screen, perhaps using diff --git a/toot/tui/constants.py b/toot/tui/constants.py index 6824667..e2aec90 100644 --- a/toot/tui/constants.py +++ b/toot/tui/constants.py @@ -19,6 +19,7 @@ PALETTE = [ ('link', ',italics', ''), # Colors + ('bold', ',bold', ''), ('blue', 'light blue', ''), ('blue_bold', 'light blue, bold', ''), ('blue_selected', 'white', 'dark blue'), diff --git a/toot/tui/timeline.py b/toot/tui/timeline.py index 184f997..b4bfcfd 100644 --- a/toot/tui/timeline.py +++ b/toot/tui/timeline.py @@ -191,6 +191,15 @@ class StatusDetails(urwid.Pile): for line in format_content(status.data["content"]): yield ("pack", urwid.Text(highlight_hashtags(line))) + media = status.data["media_attachments"] + if media: + for m in media: + yield ("pack", urwid.AttrMap(urwid.Divider("-"), "gray")) + yield ("pack", urwid.Text([("bold", "Media attachment"), " (", m["type"], ")"])) + if m["description"]: + yield ("pack", urwid.Text(m["description"])) + yield ("pack", urwid.Text(("link", m["url"]))) + poll = status.data.get("poll") if poll: yield ("pack", urwid.Divider())