From 54f757e7708af92fb2862c1070ea9804655a9c8d Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 20 Apr 2020 14:18:09 +0400 Subject: [PATCH] Allow sending dice from dice media tooltip. --- Telegram/Resources/langs/lang.strings | 1 + Telegram/SourceFiles/api/api_sending.h | 2 +- .../history/view/media/history_view_dice.cpp | 27 +++++++++++++++++-- Telegram/lib_ui | 2 +- 4 files changed, 28 insertions(+), 4 deletions(-) diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index cbf5cb6ee..81b5f1cd9 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -1330,6 +1330,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "lng_dialogs_show_archive_in_search" = "With results from archive"; "lng_about_random" = "Send a {emoji} emoji to any chat to get a random number from Telegram."; +"lng_about_random_send" = "Send"; "lng_open_this_link" = "Open this link?"; "lng_open_link" = "Open"; diff --git a/Telegram/SourceFiles/api/api_sending.h b/Telegram/SourceFiles/api/api_sending.h index c6232eeba..86bde8c93 100644 --- a/Telegram/SourceFiles/api/api_sending.h +++ b/Telegram/SourceFiles/api/api_sending.h @@ -23,6 +23,6 @@ void SendExistingPhoto( Api::MessageToSend &&message, not_null photo); -[[nodiscard]] bool SendDice(Api::MessageToSend &message); +bool SendDice(Api::MessageToSend &message); } // namespace Api diff --git a/Telegram/SourceFiles/history/view/media/history_view_dice.cpp b/Telegram/SourceFiles/history/view/media/history_view_dice.cpp index b3fd34bfb..1d1a24a22 100644 --- a/Telegram/SourceFiles/history/view/media/history_view_dice.cpp +++ b/Telegram/SourceFiles/history/view/media/history_view_dice.cpp @@ -9,11 +9,14 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include "data/data_session.h" #include "chat_helpers/stickers_dice_pack.h" +#include "api/api_sending.h" +#include "api/api_common.h" #include "history/history.h" #include "history/history_item.h" #include "history/history_item_components.h" #include "history/view/history_view_element.h" #include "ui/toast/toast.h" +#include "ui/text/text_utilities.h" #include "lang/lang_keys.h" #include "main/main_session.h" @@ -28,12 +31,32 @@ namespace { return session.diceStickersPacks().lookup(emoji, value); } -[[nodiscard]] ClickHandlerPtr MakeDiceHandler(const QString &emoji) { +[[nodiscard]] ClickHandlerPtr MakeDiceHandler( + not_null history, + const QString &emoji) { return std::make_shared([=] { auto config = Ui::Toast::Config(); config.multiline = true; config.minWidth = st::msgMinWidth; + config.maxWidth = st::toastMaxWidth + st::msgMinWidth; config.text = { tr::lng_about_random(tr::now, lt_emoji, emoji) }; + config.durationMs = Ui::Toast::kDefaultDuration * 2; + auto link = Ui::Text::Link( + tr::lng_about_random_send(tr::now).toUpper()); + link.entities.push_back( + EntityInText(EntityType::Bold, 0, link.text.size())); + config.text.append(' ').append(std::move(link)); + config.filter = crl::guard(&history->session(), [=]( + const ClickHandlerPtr &handler, + Qt::MouseButton button) { + if (button == Qt::LeftButton) { + auto message = Api::MessageToSend(history); + message.action.clearDraft = false; + message.textWithTags.text = emoji; + Api::SendDice(message); + } + return false; + }); Ui::Toast::Show(config); }); } @@ -45,7 +68,7 @@ Dice::Dice(not_null parent, not_null dice) , _dice(dice) , _link(_parent->data()->Has() ? nullptr - : MakeDiceHandler(dice->emoji())) { + : MakeDiceHandler(_parent->history(), dice->emoji())) { if (const auto document = Lookup(parent, dice->emoji(), 0)) { _start.emplace(parent, document); _start->setDiceIndex(_dice->emoji(), 0); diff --git a/Telegram/lib_ui b/Telegram/lib_ui index 2cb10e1d1..6d2613268 160000 --- a/Telegram/lib_ui +++ b/Telegram/lib_ui @@ -1 +1 @@ -Subproject commit 2cb10e1d13b49653f67474c13a3281a84ec82c03 +Subproject commit 6d261326857f48906c272601a9f265d22269bb87