mirror of
https://github.com/paul-nameless/tg
synced 2024-11-22 03:43:19 +00:00
prettify
This commit is contained in:
parent
86113c0e32
commit
c076fa621c
1 changed files with 15 additions and 13 deletions
28
tg/views.py
28
tg/views.py
|
@ -387,19 +387,21 @@ class MsgView:
|
|||
@staticmethod
|
||||
def _format_reply_markup(msg_proxy: MsgProxy) -> str:
|
||||
msg = ""
|
||||
if reply_markup := msg_proxy.reply_markup:
|
||||
for row in reply_markup.get("rows", []):
|
||||
msg += "\n"
|
||||
for item in row:
|
||||
text = item.get("text")
|
||||
if not text:
|
||||
continue
|
||||
_type = item.get("type", {})
|
||||
if _type.get("@type") == "inlineKeyboardButtonTypeUrl":
|
||||
if url := _type.get("url"):
|
||||
text = f"{text} ({url})"
|
||||
msg += f"| {text} "
|
||||
msg += "|"
|
||||
reply_markup = msg_proxy.reply_markup
|
||||
if not reply_markup:
|
||||
return msg
|
||||
for row in reply_markup.get("rows", []):
|
||||
msg += "\n"
|
||||
for item in row:
|
||||
text = item.get("text")
|
||||
if not text:
|
||||
continue
|
||||
_type = item.get("type", {})
|
||||
if _type.get("@type") == "inlineKeyboardButtonTypeUrl":
|
||||
if url := _type.get("url"):
|
||||
text = f"{text} ({url})"
|
||||
msg += f"| {text} "
|
||||
msg += "|"
|
||||
return msg
|
||||
|
||||
def _collect_msgs_to_draw(
|
||||
|
|
Loading…
Reference in a new issue