2019-08-31 11:28:35 +02:00
|
|
|
import json
|
|
|
|
import traceback
|
|
|
|
import urwid
|
2019-08-31 14:50:31 +02:00
|
|
|
import webbrowser
|
2019-08-31 11:28:35 +02:00
|
|
|
|
|
|
|
from toot import __version__
|
|
|
|
|
|
|
|
from .utils import highlight_keys
|
2019-08-31 14:50:31 +02:00
|
|
|
from .widgets import Button, EditBox, SelectableText
|
2019-08-31 11:28:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
class StatusSource(urwid.ListBox):
|
|
|
|
"""Shows status data, as returned by the server, as formatted JSON."""
|
|
|
|
def __init__(self, status):
|
|
|
|
source = json.dumps(status.data, indent=4)
|
|
|
|
lines = source.splitlines()
|
|
|
|
walker = urwid.SimpleFocusListWalker([
|
|
|
|
urwid.Text(line) for line in lines
|
|
|
|
])
|
|
|
|
super().__init__(walker)
|
|
|
|
|
|
|
|
|
2021-10-10 01:29:46 +02:00
|
|
|
class StatusZoom(urwid.ListBox):
|
|
|
|
"""Opens status in scrollable popup window"""
|
|
|
|
def __init__(self, status_details):
|
|
|
|
ll = list(filter(lambda x: getattr(x, "rows", None), status_details.widget_list))
|
|
|
|
walker = urwid.SimpleFocusListWalker(ll)
|
|
|
|
super().__init__(walker)
|
|
|
|
|
|
|
|
|
2020-01-26 11:13:45 +01:00
|
|
|
class StatusLinks(urwid.ListBox):
|
|
|
|
"""Shows status links."""
|
|
|
|
|
|
|
|
def __init__(self, links):
|
|
|
|
|
|
|
|
def widget(url, title):
|
|
|
|
return Button(title or url, on_press=lambda btn: webbrowser.open(url))
|
|
|
|
|
|
|
|
walker = urwid.SimpleFocusListWalker(
|
|
|
|
[widget(url, title) for url, title in links]
|
|
|
|
)
|
|
|
|
super().__init__(walker)
|
|
|
|
|
|
|
|
|
2019-08-31 11:28:35 +02:00
|
|
|
class ExceptionStackTrace(urwid.ListBox):
|
|
|
|
"""Shows an exception stack trace."""
|
|
|
|
def __init__(self, ex):
|
|
|
|
lines = traceback.format_exception(etype=type(ex), value=ex, tb=ex.__traceback__)
|
|
|
|
walker = urwid.SimpleFocusListWalker([
|
|
|
|
urwid.Text(line) for line in lines
|
|
|
|
])
|
|
|
|
super().__init__(walker)
|
|
|
|
|
|
|
|
|
2019-09-04 16:16:16 +02:00
|
|
|
class StatusDeleteConfirmation(urwid.ListBox):
|
|
|
|
signals = ["delete", "close"]
|
|
|
|
|
|
|
|
def __init__(self, status):
|
|
|
|
yes = SelectableText("Yes, send it to heck")
|
|
|
|
no = SelectableText("No, I'll spare it for now")
|
|
|
|
|
|
|
|
urwid.connect_signal(yes, "click", lambda *args: self._emit("delete"))
|
|
|
|
urwid.connect_signal(no, "click", lambda *args: self._emit("close"))
|
|
|
|
|
|
|
|
walker = urwid.SimpleFocusListWalker([
|
|
|
|
urwid.AttrWrap(yes, "", "blue_selected"),
|
|
|
|
urwid.AttrWrap(no, "", "blue_selected"),
|
|
|
|
])
|
|
|
|
super().__init__(walker)
|
|
|
|
|
|
|
|
|
2019-08-31 11:28:35 +02:00
|
|
|
class GotoMenu(urwid.ListBox):
|
|
|
|
signals = [
|
|
|
|
"home_timeline",
|
|
|
|
"public_timeline",
|
|
|
|
"hashtag_timeline",
|
|
|
|
]
|
|
|
|
|
2020-01-26 15:58:40 +01:00
|
|
|
def __init__(self, user_timelines):
|
2019-08-31 11:28:35 +02:00
|
|
|
self.hash_edit = EditBox(caption="Hashtag: ")
|
|
|
|
|
2020-01-26 15:58:40 +01:00
|
|
|
actions = list(self.generate_actions(user_timelines))
|
2019-08-31 11:28:35 +02:00
|
|
|
walker = urwid.SimpleFocusListWalker(actions)
|
|
|
|
super().__init__(walker)
|
|
|
|
|
|
|
|
def get_hashtag(self):
|
|
|
|
return self.hash_edit.edit_text.strip()
|
|
|
|
|
2020-01-26 15:58:40 +01:00
|
|
|
def generate_actions(self, user_timelines):
|
2019-08-31 11:28:35 +02:00
|
|
|
def _home(button):
|
|
|
|
self._emit("home_timeline")
|
|
|
|
|
|
|
|
def _local_public(button):
|
|
|
|
self._emit("public_timeline", True)
|
|
|
|
|
|
|
|
def _global_public(button):
|
|
|
|
self._emit("public_timeline", False)
|
|
|
|
|
|
|
|
def _hashtag(local):
|
|
|
|
hashtag = self.get_hashtag()
|
|
|
|
if hashtag:
|
|
|
|
self._emit("hashtag_timeline", hashtag, local)
|
|
|
|
else:
|
|
|
|
self.set_focus(4)
|
|
|
|
|
2020-01-26 15:58:40 +01:00
|
|
|
def mk_on_press_user_hashtag(tag, local):
|
|
|
|
def on_press(btn):
|
|
|
|
self._emit("hashtag_timeline", tag, local)
|
|
|
|
return on_press
|
|
|
|
|
2019-08-31 11:28:35 +02:00
|
|
|
yield Button("Home timeline", on_press=_home)
|
2020-01-26 15:58:40 +01:00
|
|
|
|
|
|
|
for tag, cfg in user_timelines.items():
|
|
|
|
is_local = cfg["local"]
|
|
|
|
yield Button("#{}".format(tag) + (" (local)" if is_local else ""),
|
|
|
|
on_press=mk_on_press_user_hashtag(tag, is_local))
|
|
|
|
|
2019-08-31 11:28:35 +02:00
|
|
|
yield Button("Local public timeline", on_press=_local_public)
|
|
|
|
yield Button("Global public timeline", on_press=_global_public)
|
|
|
|
yield urwid.Divider()
|
|
|
|
yield self.hash_edit
|
|
|
|
yield Button("Local hashtag timeline", on_press=lambda x: _hashtag(True))
|
|
|
|
yield Button("Public hashtag timeline", on_press=lambda x: _hashtag(False))
|
|
|
|
|
|
|
|
|
|
|
|
class Help(urwid.Padding):
|
|
|
|
def __init__(self):
|
|
|
|
actions = list(self.generate_contents())
|
|
|
|
walker = urwid.SimpleListWalker(actions)
|
|
|
|
listbox = urwid.ListBox(walker)
|
|
|
|
super().__init__(listbox, left=1, right=1)
|
|
|
|
|
|
|
|
def generate_contents(self):
|
|
|
|
def h(text):
|
|
|
|
return highlight_keys(text, "cyan")
|
|
|
|
|
2019-08-31 14:50:31 +02:00
|
|
|
def link(text, url):
|
|
|
|
attr_map = {"link": "link_focused"}
|
|
|
|
text = SelectableText([text, ("link", url)])
|
|
|
|
urwid.connect_signal(text, "click", lambda t: webbrowser.open(url))
|
|
|
|
return urwid.AttrMap(text, "", attr_map)
|
|
|
|
|
2019-08-31 11:28:35 +02:00
|
|
|
yield urwid.Text(("yellow_bold", "toot {}".format(__version__)))
|
|
|
|
yield urwid.Divider()
|
|
|
|
yield urwid.Text(("bold", "General usage"))
|
|
|
|
yield urwid.Divider()
|
|
|
|
yield urwid.Text(h(" [Arrow keys] or [H/J/K/L] to move around and scroll content"))
|
|
|
|
yield urwid.Text(h(" [PageUp] and [PageDown] to scroll content"))
|
|
|
|
yield urwid.Text(h(" [Enter] or [Space] to activate buttons and menu options"))
|
|
|
|
yield urwid.Text(h(" [Esc] or [Q] to go back, close overlays, such as menus and this help text"))
|
|
|
|
yield urwid.Divider()
|
|
|
|
yield urwid.Text(("bold", "General keys"))
|
|
|
|
yield urwid.Divider()
|
|
|
|
yield urwid.Text(h(" [Q] - quit toot"))
|
|
|
|
yield urwid.Text(h(" [G] - go to - switch timelines"))
|
2020-01-26 21:52:58 +01:00
|
|
|
yield urwid.Text(h(" [P] - save/unsave (pin) current timeline"))
|
2022-11-22 04:00:04 +01:00
|
|
|
yield urwid.Text(h(" [,] - refresh current timeline"))
|
2019-08-31 11:28:35 +02:00
|
|
|
yield urwid.Text(h(" [H] - show this help"))
|
|
|
|
yield urwid.Divider()
|
|
|
|
yield urwid.Text(("bold", "Status keys"))
|
|
|
|
yield urwid.Divider()
|
|
|
|
yield urwid.Text("These commands are applied to the currently focused status.")
|
|
|
|
yield urwid.Divider()
|
|
|
|
yield urwid.Text(h(" [B] - Boost/unboost status"))
|
|
|
|
yield urwid.Text(h(" [C] - Compose new status"))
|
|
|
|
yield urwid.Text(h(" [F] - Favourite/unfavourite status"))
|
2022-12-11 22:51:32 +01:00
|
|
|
yield urwid.Text(h(" [N] - Translate status if possible (toggle)"))
|
2019-08-31 11:28:35 +02:00
|
|
|
yield urwid.Text(h(" [R] - Reply to current status"))
|
|
|
|
yield urwid.Text(h(" [S] - Show text marked as sensitive"))
|
|
|
|
yield urwid.Text(h(" [T] - Show status thread (replies)"))
|
2020-01-26 11:13:45 +01:00
|
|
|
yield urwid.Text(h(" [L] - Show the status links"))
|
2019-08-31 11:28:35 +02:00
|
|
|
yield urwid.Text(h(" [U] - Show the status data in JSON as received from the server"))
|
|
|
|
yield urwid.Text(h(" [V] - Open status in default browser"))
|
2021-10-10 01:29:46 +02:00
|
|
|
yield urwid.Text(h(" [Z] - Open status in scrollable popup window"))
|
2019-08-31 14:50:31 +02:00
|
|
|
yield urwid.Divider()
|
|
|
|
yield urwid.Text(("bold", "Links"))
|
|
|
|
yield urwid.Divider()
|
|
|
|
yield link("Documentation: ", "https://toot.readthedocs.io/")
|
|
|
|
yield link("Project home: ", "https://github.com/ihabunek/toot/")
|