tdesktop/Telegram/SourceFiles/history/view/history_view_replies_sectio...

2050 lines
53 KiB
C++

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#include "history/view/history_view_replies_section.h"
#include "history/view/controls/history_view_compose_controls.h"
#include "history/view/history_view_top_bar_widget.h"
#include "history/view/history_view_list_widget.h"
#include "history/view/history_view_schedule_box.h"
#include "history/view/history_view_pinned_bar.h"
#include "history/view/history_view_sticker_toast.h"
#include "history/view/history_view_cursor_state.h"
#include "history/history.h"
#include "history/history_drag_area.h"
#include "history/history_item_components.h"
#include "history/history_item.h"
#include "menu/menu_send.h" // SendMenu::Type.
#include "ui/chat/attach/attach_prepare.h"
#include "ui/chat/attach/attach_send_files_way.h"
#include "ui/chat/pinned_bar.h"
#include "ui/chat/chat_style.h"
#include "ui/widgets/scroll_area.h"
#include "ui/widgets/shadow.h"
#include "ui/wrap/slide_wrap.h"
#include "ui/layers/generic_box.h"
#include "ui/item_text_options.h"
#include "ui/toast/toast.h"
#include "ui/text/format_values.h"
#include "ui/text/text_utilities.h"
#include "ui/effects/message_sending_animation_controller.h"
#include "ui/special_buttons.h"
#include "ui/ui_utility.h"
#include "ui/toasts/common_toasts.h"
#include "base/timer_rpl.h"
#include "api/api_common.h"
#include "api/api_editing.h"
#include "api/api_sending.h"
#include "apiwrap.h"
#include "ui/boxes/confirm_box.h"
#include "chat_helpers/tabbed_selector.h"
#include "boxes/delete_messages_box.h"
#include "boxes/edit_caption_box.h"
#include "boxes/send_files_box.h"
#include "boxes/premium_limits_box.h"
#include "window/window_adaptive.h"
#include "window/window_session_controller.h"
#include "window/window_peer_menu.h"
#include "base/event_filter.h"
#include "base/call_delayed.h"
#include "base/qt/qt_key_modifiers.h"
#include "core/file_utilities.h"
#include "main/main_session.h"
#include "data/data_session.h"
#include "data/data_user.h"
#include "data/data_chat.h"
#include "data/data_channel.h"
#include "data/data_forum.h"
#include "data/data_forum_topic.h"
#include "data/data_replies_list.h"
#include "data/data_peer_values.h"
#include "data/data_changes.h"
#include "data/data_send_action.h"
#include "storage/storage_media_prepare.h"
#include "storage/storage_account.h"
#include "inline_bots/inline_bot_result.h"
#include "lang/lang_keys.h"
#include "facades.h"
#include "styles/style_chat.h"
#include "styles/style_window.h"
#include "styles/style_info.h"
#include "styles/style_boxes.h"
#include "styles/style_layers.h"
#include <QtCore/QMimeData>
namespace HistoryView {
namespace {
constexpr auto kRefreshSlowmodeLabelTimeout = crl::time(200);
bool CanSendFiles(not_null<const QMimeData*> data) {
if (data->hasImage()) {
return true;
} else if (const auto urls = base::GetMimeUrls(data); !urls.empty()) {
if (ranges::all_of(urls, &QUrl::isLocalFile)) {
return true;
}
}
return false;
}
rpl::producer<Ui::MessageBarContent> RootViewContent(
not_null<History*> history,
MsgId rootId,
Fn<void()> repaint) {
return MessageBarContentByItemId(
&history->session(),
FullMsgId(history->peer->id, rootId),
std::move(repaint)
) | rpl::map([=](Ui::MessageBarContent &&content) {
const auto item = history->owner().message(history->peer, rootId);
if (!item) {
content.text = Ui::Text::Link(tr::lng_deleted_message(tr::now));
}
const auto sender = (item && item->discussionPostOriginalSender())
? item->discussionPostOriginalSender()
: history->peer.get();
content.title = sender->name().isEmpty()
? "Message"
: sender->name();
return std::move(content);
});
}
} // namespace
RepliesMemento::RepliesMemento(
not_null<HistoryItem*> commentsItem,
MsgId commentId)
: RepliesMemento(commentsItem->history(), commentsItem->id, commentId) {
if (commentId) {
_list.setAroundPosition({
.fullId = FullMsgId(
commentsItem->history()->peer->id,
commentId),
.date = TimeId(0),
});
}
}
void RepliesMemento::setReadInformation(
MsgId inboxReadTillId,
int unreadCount,
MsgId outboxReadTillId) {
if (!_replies) {
if (const auto forum = _history->peer->forum()) {
if (const auto topic = forum->topicFor(_rootId)) {
_replies = topic->replies();
}
}
if (!_replies) {
_replies = std::make_shared<Data::RepliesList>(
_history,
_rootId);
}
}
_replies->setInboxReadTill(inboxReadTillId, unreadCount);
_replies->setOutboxReadTill(outboxReadTillId);
if (!_list.aroundPosition().fullId
&& _replies->computeInboxReadTillFull() == MsgId(1)) {
_list.setAroundPosition(Data::MinMessagePosition);
_list.setScrollTopState(ListMemento::ScrollTopState{
Data::MinMessagePosition
});
}
}
object_ptr<Window::SectionWidget> RepliesMemento::createWidget(
QWidget *parent,
not_null<Window::SessionController*> controller,
Window::Column column,
const QRect &geometry) {
if (column == Window::Column::Third) {
return nullptr;
}
auto result = object_ptr<RepliesWidget>(
parent,
controller,
_history,
_rootId);
result->setInternalState(geometry, this);
return result;
}
void RepliesMemento::setupTopicViewer() {
_history->owner().itemIdChanged(
) | rpl::start_with_next([=](const Data::Session::IdChange &change) {
if (_rootId == change.oldId) {
_rootId = change.newId.msg;
_replies = nullptr;
}
}, _lifetime);
}
RepliesWidget::RepliesWidget(
QWidget *parent,
not_null<Window::SessionController*> controller,
not_null<History*> history,
MsgId rootId)
: Window::SectionWidget(parent, controller, history->peer)
, _history(history)
, _rootId(rootId)
, _root(lookupRoot())
, _topic(lookupTopic())
, _areComments(computeAreComments())
, _sendAction(history->owner().sendActionManager().repliesPainter(
history,
rootId))
, _topBar(this, controller)
, _topBarShadow(this)
, _composeControls(std::make_unique<ComposeControls>(
this,
controller,
[=](not_null<DocumentData*> emoji) { listShowPremiumToast(emoji); },
ComposeControls::Mode::Normal,
SendMenu::Type::SilentOnly))
, _scroll(std::make_unique<Ui::ScrollArea>(
this,
controller->chatStyle()->value(lifetime(), st::historyScroll),
false))
, _cornerButtons(
_scroll.get(),
controller->chatStyle(),
static_cast<HistoryView::CornerButtonsDelegate*>(this)) {
controller->chatStyle()->paletteChanged(
) | rpl::start_with_next([=] {
_scroll->updateBars();
}, _scroll->lifetime());
Window::ChatThemeValueFromPeer(
controller,
history->peer
) | rpl::start_with_next([=](std::shared_ptr<Ui::ChatTheme> &&theme) {
_theme = std::move(theme);
controller->setChatStyleTheme(_theme);
}, lifetime());
setupRoot();
setupRootView();
session().api().requestFullPeer(_history->peer);
refreshTopBarActiveChat();
_topBar->move(0, 0);
_topBar->resizeToWidth(width());
_topBar->show();
if (_rootView) {
_rootView->move(0, _topBar->height());
}
_topBar->deleteSelectionRequest(
) | rpl::start_with_next([=] {
confirmDeleteSelected();
}, _topBar->lifetime());
_topBar->forwardSelectionRequest(
) | rpl::start_with_next([=] {
confirmForwardSelected();
}, _topBar->lifetime());
_topBar->clearSelectionRequest(
) | rpl::start_with_next([=] {
clearSelected();
}, _topBar->lifetime());
if (_rootView) {
_rootView->raise();
}
_topBarShadow->raise();
controller->adaptive().value(
) | rpl::start_with_next([=] {
updateAdaptiveLayout();
}, lifetime());
_inner = _scroll->setOwnedWidget(object_ptr<ListWidget>(
this,
controller,
static_cast<ListDelegate*>(this)));
_scroll->move(0, _topBar->height());
_scroll->show();
_scroll->scrolls(
) | rpl::start_with_next([=] {
onScroll();
}, lifetime());
_inner->editMessageRequested(
) | rpl::filter([=] {
return !_joinGroup;
}) | rpl::start_with_next([=](auto fullId) {
if (const auto item = session().data().message(fullId)) {
const auto media = item->media();
if (media && !media->webpage()) {
if (media->allowsEditCaption()) {
controller->show(Box<EditCaptionBox>(controller, item));
}
} else {
_composeControls->editMessage(fullId);
}
}
}, _inner->lifetime());
_inner->replyToMessageRequested(
) | rpl::filter([=] {
return !_joinGroup;
}) | rpl::start_with_next([=](auto fullId) {
replyToMessage(fullId);
}, _inner->lifetime());
_inner->showMessageRequested(
) | rpl::start_with_next([=](auto fullId) {
if (const auto item = session().data().message(fullId)) {
showAtPosition(item->position());
}
}, _inner->lifetime());
_composeControls->sendActionUpdates(
) | rpl::start_with_next([=](ComposeControls::SendActionUpdate &&data) {
if (!data.cancel) {
session().sendProgressManager().update(
_history,
_rootId,
data.type,
data.progress);
} else {
session().sendProgressManager().cancel(
_history,
_rootId,
data.type);
}
}, lifetime());
_history->session().changes().messageUpdates(
Data::MessageUpdate::Flag::Destroyed
) | rpl::start_with_next([=](const Data::MessageUpdate &update) {
if (update.item == _root) {
_root = nullptr;
updatePinnedVisibility();
if (!_topic) {
controller->showBackFromStack();
}
}
}, lifetime());
if (!_topic) {
_history->session().changes().historyUpdates(
_history,
Data::HistoryUpdate::Flag::OutboxRead
) | rpl::start_with_next([=] {
_inner->update();
}, lifetime());
}
setupComposeControls();
setupTopicViewer();
orderWidgets();
}
RepliesWidget::~RepliesWidget() {
if (_topic && _topic->forum()->creating(_rootId)) {
_topic->forum()->discardCreatingId(_rootId);
_topic = nullptr;
}
base::take(_sendAction);
_history->owner().sendActionManager().repliesPainterRemoved(
_history,
_rootId);
controller()->sendingAnimation().clear();
}
void RepliesWidget::orderWidgets() {
if (_topBar) {
_topBar->raise();
}
if (_rootView) {
_rootView->raise();
}
_topBarShadow->raise();
_composeControls->raisePanels();
}
void RepliesWidget::setupRoot() {
if (!_root) {
const auto done = crl::guard(this, [=] {
_root = lookupRoot();
if (_root) {
_areComments = computeAreComments();
_inner->update();
}
updatePinnedVisibility();
});
_history->session().api().requestMessageData(
_history->peer,
_rootId,
done);
}
}
void RepliesWidget::setupRootView() {
if (_topic) {
return;
}
_rootView = std::make_unique<Ui::PinnedBar>(this, [=] {
return controller()->isGifPausedAtLeastFor(
Window::GifPauseReason::Any);
});
_rootView->setContent(rpl::combine(
RootViewContent(
_history,
_rootId,
[bar = _rootView.get()] { bar->customEmojiRepaint(); }),
_rootVisible.value()
) | rpl::map([=](Ui::MessageBarContent &&content, bool shown) {
return shown ? std::move(content) : Ui::MessageBarContent();
}));
controller()->adaptive().oneColumnValue(
) | rpl::start_with_next([=](bool one) {
_rootView->setShadowGeometryPostprocess([=](QRect geometry) {
if (!one) {
geometry.setLeft(geometry.left() + st::lineWidth);
}
return geometry;
});
}, _rootView->lifetime());
_rootView->barClicks(
) | rpl::start_with_next([=] {
showAtStart();
}, lifetime());
_rootViewHeight = 0;
_rootView->heightValue(
) | rpl::start_with_next([=](int height) {
if (const auto delta = height - _rootViewHeight) {
_rootViewHeight = height;
setGeometryWithTopMoved(geometry(), delta);
}
}, _rootView->lifetime());
}
void RepliesWidget::setupTopicViewer() {
_history->owner().itemIdChanged(
) | rpl::start_with_next([=](const Data::Session::IdChange &change) {
if (_rootId == change.oldId) {
_rootId = change.newId.msg;
_root = lookupRoot();
if (_topic && _topic->rootId() == change.oldId) {
setTopic(_topic->forum()->topicFor(change.newId.msg));
} else {
refreshReplies();
}
_inner->update();
}
}, lifetime());
if (_topic) {
subscribeToTopic();
}
}
void RepliesWidget::subscribeToTopic() {
Expects(_topic != nullptr);
using TopicUpdateFlag = Data::TopicUpdate::Flag;
session().changes().topicUpdates(
_topic,
(TopicUpdateFlag::UnreadMentions
| TopicUpdateFlag::UnreadReactions)
) | rpl::start_with_next([=](const Data::TopicUpdate &update) {
_cornerButtons.updateUnreadThingsVisibility();
}, _topicLifetime);
_topic->destroyed(
) | rpl::start_with_next([=] {
controller()->showBackFromStack(Window::SectionShow(
anim::type::normal,
anim::activation::background));
}, _topicLifetime);
_cornerButtons.updateUnreadThingsVisibility();
}
void RepliesWidget::setTopic(Data::ForumTopic *topic) {
if (_topic == topic) {
return;
}
_topicLifetime.destroy();
_topic = topic;
refreshReplies();
refreshTopBarActiveChat();
if (_topic) {
subscribeToTopic();
if (_rootView) {
_rootView = nullptr;
_rootViewHeight = 0;
updateControlsGeometry();
}
}
}
HistoryItem *RepliesWidget::lookupRoot() const {
return _history->owner().message(_history->peer, _rootId);
}
Data::ForumTopic *RepliesWidget::lookupTopic() {
if (const auto forum = _history->peer->forum()) {
if (const auto result = forum->topicFor(_rootId)) {
return result;
} else {
forum->requestTopic(_rootId, crl::guard(this, [=] {
if (const auto forum = _history->peer->forum()) {
setTopic(forum->topicFor(_rootId));
}
}));
}
}
return nullptr;
}
bool RepliesWidget::computeAreComments() const {
return _root && _root->isDiscussionPost();
}
void RepliesWidget::setupComposeControls() {
auto slowmodeSecondsLeft = session().changes().peerFlagsValue(
_history->peer,
Data::PeerUpdate::Flag::Slowmode
) | rpl::map([=] {
return _history->peer->slowmodeSecondsLeft();
}) | rpl::map([=](int delay) -> rpl::producer<int> {
auto start = rpl::single(delay);
if (!delay) {
return start;
}
return std::move(
start
) | rpl::then(base::timer_each(
kRefreshSlowmodeLabelTimeout
) | rpl::map([=] {
return _history->peer->slowmodeSecondsLeft();
}) | rpl::take_while([=](int delay) {
return delay > 0;
})) | rpl::then(rpl::single(0));
}) | rpl::flatten_latest();
const auto channel = _history->peer->asChannel();
Assert(channel != nullptr);
auto hasSendingMessage = session().changes().historyFlagsValue(
_history,
Data::HistoryUpdate::Flag::ClientSideMessages
) | rpl::map([=] {
return _history->latestSendingMessage() != nullptr;
}) | rpl::distinct_until_changed();
using namespace rpl::mappers;
auto sendDisabledBySlowmode = (!channel || channel->amCreator())
? (rpl::single(false) | rpl::type_erased())
: rpl::combine(
channel->slowmodeAppliedValue(),
std::move(hasSendingMessage),
_1 && _2);
auto writeRestriction = rpl::combine(
session().changes().peerFlagsValue(
_history->peer,
Data::PeerUpdate::Flag::Rights),
Data::CanWriteValue(_history->peer)
) | rpl::map([=] {
const auto restriction = Data::RestrictionError(
_history->peer,
ChatRestriction::SendMessages);
return restriction
? restriction
: _history->peer->canWrite()
? std::optional<QString>()
: tr::lng_group_not_accessible(tr::now);
});
_composeControls->setHistory({
.history = _history.get(),
.showSlowmodeError = [=] { return showSlowmodeError(); },
.slowmodeSecondsLeft = std::move(slowmodeSecondsLeft),
.sendDisabledBySlowmode = std::move(sendDisabledBySlowmode),
.writeRestriction = std::move(writeRestriction),
});
_composeControls->height(
) | rpl::filter([=] {
return !_joinGroup;
}) | rpl::start_with_next([=] {
const auto wasMax = (_scroll->scrollTopMax() == _scroll->scrollTop());
updateControlsGeometry();
if (wasMax) {
listScrollTo(_scroll->scrollTopMax());
}
}, lifetime());
_composeControls->cancelRequests(
) | rpl::start_with_next([=] {
listCancelRequest();
}, lifetime());
_composeControls->sendRequests(
) | rpl::start_with_next([=](Api::SendOptions options) {
send(options);
}, lifetime());
_composeControls->sendVoiceRequests(
) | rpl::start_with_next([=](ComposeControls::VoiceToSend &&data) {
sendVoice(std::move(data));
}, lifetime());
_composeControls->sendCommandRequests(
) | rpl::start_with_next([=](const QString &command) {
if (showSlowmodeError()) {
return;
}
listSendBotCommand(command, FullMsgId());
}, lifetime());
const auto saveEditMsgRequestId = lifetime().make_state<mtpRequestId>(0);
_composeControls->editRequests(
) | rpl::start_with_next([=](auto data) {
if (const auto item = session().data().message(data.fullId)) {
edit(item, data.options, saveEditMsgRequestId);
}
}, lifetime());
_composeControls->attachRequests(
) | rpl::filter([=] {
return !_choosingAttach;
}) | rpl::start_with_next([=] {
_choosingAttach = true;
base::call_delayed(
st::historyAttach.ripple.hideDuration,
this,
[=] { _choosingAttach = false; chooseAttach(); });
}, lifetime());
_composeControls->fileChosen(
) | rpl::start_with_next([=](ChatHelpers::FileChosen data) {
controller()->hideLayer(anim::type::normal);
controller()->sendingAnimation().appendSending(
data.messageSendingFrom);
const auto localId = data.messageSendingFrom.localId;
sendExistingDocument(data.document, data.options, localId);
}, lifetime());
_composeControls->photoChosen(
) | rpl::start_with_next([=](ChatHelpers::PhotoChosen chosen) {
sendExistingPhoto(chosen.photo, chosen.options);
}, lifetime());
_composeControls->inlineResultChosen(
) | rpl::start_with_next([=](ChatHelpers::InlineChosen chosen) {
controller()->sendingAnimation().appendSending(
chosen.messageSendingFrom);
const auto localId = chosen.messageSendingFrom.localId;
sendInlineResult(chosen.result, chosen.bot, chosen.options, localId);
}, lifetime());
_composeControls->scrollRequests(
) | rpl::start_with_next([=](Data::MessagePosition pos) {
showAtPosition(pos);
}, lifetime());
_composeControls->scrollKeyEvents(
) | rpl::start_with_next([=](not_null<QKeyEvent*> e) {
_scroll->keyPressEvent(e);
}, lifetime());
_composeControls->editLastMessageRequests(
) | rpl::start_with_next([=](not_null<QKeyEvent*> e) {
if (!_inner->lastMessageEditRequestNotify()) {
_scroll->keyPressEvent(e);
}
}, lifetime());
_composeControls->replyNextRequests(
) | rpl::start_with_next([=](ComposeControls::ReplyNextRequest &&data) {
using Direction = ComposeControls::ReplyNextRequest::Direction;
_inner->replyNextMessage(
data.replyId,
data.direction == Direction::Next);
}, lifetime());
_composeControls->setMimeDataHook([=](
not_null<const QMimeData*> data,
Ui::InputField::MimeAction action) {
if (action == Ui::InputField::MimeAction::Check) {
return CanSendFiles(data);
} else if (action == Ui::InputField::MimeAction::Insert) {
return confirmSendingFiles(data, std::nullopt, data->text());
}
Unexpected("action in MimeData hook.");
});
_composeControls->lockShowStarts(
) | rpl::start_with_next([=] {
_cornerButtons.updateJumpDownVisibility();
_cornerButtons.updateUnreadThingsVisibility();
}, lifetime());
_composeControls->viewportEvents(
) | rpl::start_with_next([=](not_null<QEvent*> e) {
_scroll->viewportEvent(e);
}, lifetime());
_composeControls->finishAnimating();
if (const auto channel = _history->peer->asChannel()) {
channel->updateFull();
if (!channel->isBroadcast()) {
rpl::combine(
Data::CanWriteValue(channel),
channel->flagsValue()
) | rpl::start_with_next([=] {
refreshJoinGroupButton();
}, lifetime());
} else {
refreshJoinGroupButton();
}
}
}
void RepliesWidget::chooseAttach() {
if (const auto error = Data::RestrictionError(
_history->peer,
ChatRestriction::SendMedia)) {
Ui::ShowMultilineToast({
.parentOverride = Window::Show(controller()).toastParent(),
.text = { *error },
});
return;
} else if (showSlowmodeError()) {
return;
}
const auto filter = FileDialog::AllOrImagesFilter();
FileDialog::GetOpenPaths(this, tr::lng_choose_files(tr::now), filter, crl::guard(this, [=](
FileDialog::OpenResult &&result) {
if (result.paths.isEmpty() && result.remoteContent.isEmpty()) {
return;
}
if (!result.remoteContent.isEmpty()) {
auto read = Images::Read({
.content = result.remoteContent,
});
if (!read.image.isNull() && !read.animated) {
confirmSendingFiles(
std::move(read.image),
std::move(result.remoteContent));
} else {
uploadFile(result.remoteContent, SendMediaType::File);
}
} else {
const auto premium = controller()->session().user()->isPremium();
auto list = Storage::PrepareMediaList(
result.paths,
st::sendMediaPreviewSize,
premium);
confirmSendingFiles(std::move(list));
}
}), nullptr);
}
bool RepliesWidget::confirmSendingFiles(
not_null<const QMimeData*> data,
std::optional<bool> overrideSendImagesAsPhotos,
const QString &insertTextOnCancel) {
const auto hasImage = data->hasImage();
const auto premium = controller()->session().user()->isPremium();
if (const auto urls = base::GetMimeUrls(data); !urls.empty()) {
auto list = Storage::PrepareMediaList(
urls,
st::sendMediaPreviewSize,
premium);
if (list.error != Ui::PreparedList::Error::NonLocalUrl) {
if (list.error == Ui::PreparedList::Error::None
|| !hasImage) {
const auto emptyTextOnCancel = QString();
list.overrideSendImagesAsPhotos = overrideSendImagesAsPhotos;
confirmSendingFiles(std::move(list), emptyTextOnCancel);
return true;
}
}
}
if (hasImage) {
auto image = qvariant_cast<QImage>(data->imageData());
if (!image.isNull()) {
confirmSendingFiles(
std::move(image),
QByteArray(),
overrideSendImagesAsPhotos,
insertTextOnCancel);
return true;
}
}
return false;
}
bool RepliesWidget::confirmSendingFiles(
Ui::PreparedList &&list,
const QString &insertTextOnCancel) {
if (showSendingFilesError(list)) {
return false;
}
auto box = Box<SendFilesBox>(
controller(),
std::move(list),
_composeControls->getTextWithAppliedMarkdown(),
_history->peer,
Api::SendType::Normal,
SendMenu::Type::SilentOnly); // #TODO replies schedule
box->setConfirmedCallback(crl::guard(this, [=](
Ui::PreparedList &&list,
Ui::SendFilesWay way,
TextWithTags &&caption,
Api::SendOptions options,
bool ctrlShiftEnter) {
sendingFilesConfirmed(
std::move(list),
way,
std::move(caption),
options,
ctrlShiftEnter);
}));
box->setCancelledCallback(_composeControls->restoreTextCallback(
insertTextOnCancel));
//ActivateWindow(controller());
const auto shown = controller()->show(std::move(box));
shown->setCloseByOutsideClick(false);
return true;
}
void RepliesWidget::sendingFilesConfirmed(
Ui::PreparedList &&list,
Ui::SendFilesWay way,
TextWithTags &&caption,
Api::SendOptions options,
bool ctrlShiftEnter) {
Expects(list.filesToProcess.empty());
if (showSendingFilesError(list)) {
return;
}
auto groups = DivideByGroups(
std::move(list),
way,
_history->peer->slowmodeApplied());
const auto type = way.sendImagesAsPhotos()
? SendMediaType::Photo
: SendMediaType::File;
auto action = prepareSendAction(options);
action.clearDraft = false;
if ((groups.size() != 1 || !groups.front().sentWithCaption())
&& !caption.text.isEmpty()) {
auto message = Api::MessageToSend(action);
message.textWithTags = base::take(caption);
session().api().sendMessage(std::move(message));
}
for (auto &group : groups) {
const auto album = (group.type != Ui::AlbumType::None)
? std::make_shared<SendingAlbum>()
: nullptr;
session().api().sendFiles(
std::move(group.list),
type,
base::take(caption),
album,
action);
}
if (_composeControls->replyingToMessage().msg == action.replyTo) {
_composeControls->cancelReplyMessage();
refreshTopBarActiveChat();
}
finishSending();
}
bool RepliesWidget::confirmSendingFiles(
QImage &&image,
QByteArray &&content,
std::optional<bool> overrideSendImagesAsPhotos,
const QString &insertTextOnCancel) {
if (image.isNull()) {
return false;
}
auto list = Storage::PrepareMediaFromImage(
std::move(image),
std::move(content),
st::sendMediaPreviewSize);
list.overrideSendImagesAsPhotos = overrideSendImagesAsPhotos;
return confirmSendingFiles(std::move(list), insertTextOnCancel);
}
bool RepliesWidget::showSlowmodeError() {
const auto text = [&] {
if (const auto left = _history->peer->slowmodeSecondsLeft()) {
return tr::lng_slowmode_enabled(
tr::now,
lt_left,
Ui::FormatDurationWordsSlowmode(left));
} else if (_history->peer->slowmodeApplied()) {
if (const auto item = _history->latestSendingMessage()) {
showAtPosition(item->position());
return tr::lng_slowmode_no_many(tr::now);
}
}
return QString();
}();
if (text.isEmpty()) {
return false;
}
Ui::ShowMultilineToast({
.parentOverride = Window::Show(controller()).toastParent(),
.text = { text },
});
return true;
}
std::optional<QString> RepliesWidget::writeRestriction() const {
return Data::RestrictionError(
_history->peer,
ChatRestriction::SendMessages);
}
void RepliesWidget::pushReplyReturn(not_null<HistoryItem*> item) {
if (item->history() == _history && item->inThread(_rootId)) {
_cornerButtons.pushReplyReturn(item);
}
}
void RepliesWidget::checkReplyReturns() {
const auto currentTop = _scroll->scrollTop();
while (const auto replyReturn = _cornerButtons.replyReturn()) {
const auto position = replyReturn->position();
const auto scrollTop = _inner->scrollTopForPosition(position);
const auto below = scrollTop
? (currentTop >= std::min(*scrollTop, _scroll->scrollTopMax()))
: _inner->isBelowPosition(position);
if (below) {
_cornerButtons.calculateNextReplyReturn();
} else {
break;
}
}
}
void RepliesWidget::uploadFile(
const QByteArray &fileContent,
SendMediaType type) {
// #TODO replies schedule
session().api().sendFile(fileContent, type, prepareSendAction({}));
}
bool RepliesWidget::showSendingFilesError(
const Ui::PreparedList &list) const {
const auto text = [&] {
const auto peer = _history->peer;
const auto error = Data::RestrictionError(
peer,
ChatRestriction::SendMedia);
if (error) {
return *error;
}
if (peer->slowmodeApplied() && !list.canBeSentInSlowmode()) {
return tr::lng_slowmode_no_many(tr::now);
} else if (const auto left = _history->peer->slowmodeSecondsLeft()) {
return tr::lng_slowmode_enabled(
tr::now,
lt_left,
Ui::FormatDurationWordsSlowmode(left));
}
using Error = Ui::PreparedList::Error;
switch (list.error) {
case Error::None: return QString();
case Error::EmptyFile:
case Error::Directory:
case Error::NonLocalUrl: return tr::lng_send_image_empty(
tr::now,
lt_name,
list.errorData);
case Error::TooLargeFile: return u"(toolarge)"_q;
}
return tr::lng_forward_send_files_cant(tr::now);
}();
if (text.isEmpty()) {
return false;
} else if (text == u"(toolarge)"_q) {
const auto fileSize = list.files.back().size;
controller()->show(Box(FileSizeLimitBox, &session(), fileSize));
return true;
}
Ui::ShowMultilineToast({
.parentOverride = Window::Show(controller()).toastParent(),
.text = { text },
});
return true;
}
Api::SendAction RepliesWidget::prepareSendAction(
Api::SendOptions options) const {
auto result = Api::SendAction(_history, options);
result.replyTo = replyToId();
result.options.sendAs = _composeControls->sendAsPeer();
return result;
}
void RepliesWidget::send() {
if (_composeControls->getTextWithAppliedMarkdown().text.isEmpty()) {
return;
}
send({});
// #TODO replies schedule
//const auto callback = [=](Api::SendOptions options) { send(options); };
//Ui::show(
// PrepareScheduleBox(this, sendMenuType(), callback),
// Ui::LayerOption::KeepOther);
}
void RepliesWidget::sendVoice(ComposeControls::VoiceToSend &&data) {
auto action = prepareSendAction(data.options);
session().api().sendVoiceMessage(
data.bytes,
data.waveform,
data.duration,
std::move(action));
_composeControls->cancelReplyMessage();
_composeControls->clearListenState();
finishSending();
}
void RepliesWidget::send(Api::SendOptions options) {
if (!options.scheduled && showSlowmodeError()) {
return;
}
if (!options.scheduled) {
_cornerButtons.clearReplyReturns();
}
const auto webPageId = _composeControls->webPageId();
auto message = ApiWrap::MessageToSend(prepareSendAction(options));
message.textWithTags = _composeControls->getTextWithAppliedMarkdown();
message.webPageId = webPageId;
//const auto error = GetErrorTextForSending(
// _peer,
// _toForward,
// message.textWithTags);
//if (!error.isEmpty()) {
// Ui::ShowMultilineToast({
// .parentOverride = Window::Show(controller()).toastParent(),
// .text = { error },
// });
// return;
//}
session().api().sendMessage(std::move(message));
_composeControls->clear();
session().sendProgressManager().update(
_history,
_rootId,
Api::SendProgressType::Typing,
-1);
//_saveDraftText = true;
//_saveDraftStart = crl::now();
//onDraftSave();
finishSending();
}
void RepliesWidget::edit(
not_null<HistoryItem*> item,
Api::SendOptions options,
mtpRequestId *const saveEditMsgRequestId) {
if (*saveEditMsgRequestId) {
return;
}
const auto textWithTags = _composeControls->getTextWithAppliedMarkdown();
const auto prepareFlags = Ui::ItemTextOptions(
_history,
session().user()).flags;
auto sending = TextWithEntities();
auto left = TextWithEntities {
textWithTags.text,
TextUtilities::ConvertTextTagsToEntities(textWithTags.tags) };
TextUtilities::PrepareForSending(left, prepareFlags);
if (!TextUtilities::CutPart(sending, left, MaxMessageSize)) {
if (item) {
controller()->show(Box<DeleteMessagesBox>(item, false));
} else {
doSetInnerFocus();
}
return;
} else if (!left.text.isEmpty()) {
const auto remove = left.text.size();
controller()->show(Ui::MakeInformBox(
tr::lng_edit_limit_reached(tr::now, lt_count, remove)));
return;
}
lifetime().add([=] {
if (!*saveEditMsgRequestId) {
return;
}
session().api().request(base::take(*saveEditMsgRequestId)).cancel();
});
const auto done = [=](mtpRequestId requestId) {
if (requestId == *saveEditMsgRequestId) {
*saveEditMsgRequestId = 0;
_composeControls->cancelEditMessage();
}
};
const auto fail = [=](const QString &error, mtpRequestId requestId) {
if (requestId == *saveEditMsgRequestId) {
*saveEditMsgRequestId = 0;
}
if (ranges::contains(Api::kDefaultEditMessagesErrors, error)) {
controller()->show(Ui::MakeInformBox(tr::lng_edit_error()));
} else if (error == u"MESSAGE_NOT_MODIFIED"_q) {
_composeControls->cancelEditMessage();
} else if (error == u"MESSAGE_EMPTY"_q) {
doSetInnerFocus();
} else {
controller()->show(Ui::MakeInformBox(tr::lng_edit_error()));
}
update();
return true;
};
*saveEditMsgRequestId = Api::EditTextMessage(
item,
sending,
options,
crl::guard(this, done),
crl::guard(this, fail));
_composeControls->hidePanelsAnimated();
doSetInnerFocus();
}
void RepliesWidget::refreshJoinGroupButton() {
const auto set = [&](std::unique_ptr<Ui::FlatButton> button) {
if (!button && !_joinGroup) {
return;
}
const auto atMax = (_scroll->scrollTopMax() == _scroll->scrollTop());
_joinGroup = std::move(button);
if (!animatingShow()) {
if (button) {
button->show();
_composeControls->hide();
} else {
_composeControls->show();
}
}
updateControlsGeometry();
if (atMax) {
listScrollTo(_scroll->scrollTopMax());
}
};
const auto channel = _history->peer->asChannel();
if (channel->amIn()
|| !channel->joinToWrite()
|| (channel->amCreator() && channel->canWrite())) {
set(nullptr);
} else {
if (!_joinGroup) {
set(std::make_unique<Ui::FlatButton>(
this,
QString(),
st::historyComposeButton));
_joinGroup->setClickedCallback([=] {
session().api().joinChannel(channel);
});
}
_joinGroup->setText((channel->isBroadcast()
? tr::lng_profile_join_channel(tr::now)
: (channel->requestToJoin() && !channel->amCreator())
? tr::lng_profile_apply_to_join_group(tr::now)
: tr::lng_profile_join_group(tr::now)).toUpper());
}
}
void RepliesWidget::sendExistingDocument(
not_null<DocumentData*> document) {
sendExistingDocument(document, {}, std::nullopt);
// #TODO replies schedule
//const auto callback = [=](Api::SendOptions options) {
// sendExistingDocument(document, options);
//};
//Ui::show(
// PrepareScheduleBox(this, sendMenuType(), callback),
// Ui::LayerOption::KeepOther);
}
bool RepliesWidget::sendExistingDocument(
not_null<DocumentData*> document,
Api::SendOptions options,
std::optional<MsgId> localId) {
const auto error = Data::RestrictionError(
_history->peer,
ChatRestriction::SendStickers);
if (error) {
controller()->show(
Ui::MakeInformBox(*error),
Ui::LayerOption::KeepOther);
return false;
} else if (showSlowmodeError()
|| ShowSendPremiumError(controller(), document)) {
return false;
}
Api::SendExistingDocument(
Api::MessageToSend(prepareSendAction(options)),
document,
localId);
_composeControls->cancelReplyMessage();
finishSending();
return true;
}
void RepliesWidget::sendExistingPhoto(not_null<PhotoData*> photo) {
sendExistingPhoto(photo, {});
// #TODO replies schedule
//const auto callback = [=](Api::SendOptions options) {
// sendExistingPhoto(photo, options);
//};
//Ui::show(
// PrepareScheduleBox(this, sendMenuType(), callback),
// Ui::LayerOption::KeepOther);
}
bool RepliesWidget::sendExistingPhoto(
not_null<PhotoData*> photo,
Api::SendOptions options) {
const auto error = Data::RestrictionError(
_history->peer,
ChatRestriction::SendMedia);
if (error) {
controller()->show(
Ui::MakeInformBox(*error),
Ui::LayerOption::KeepOther);
return false;
} else if (showSlowmodeError()) {
return false;
}
Api::SendExistingPhoto(
Api::MessageToSend(prepareSendAction(options)),
photo);
_composeControls->cancelReplyMessage();
finishSending();
return true;
}
void RepliesWidget::sendInlineResult(
not_null<InlineBots::Result*> result,
not_null<UserData*> bot) {
const auto errorText = result->getErrorOnSend(_history);
if (!errorText.isEmpty()) {
controller()->show(Ui::MakeInformBox(errorText));
return;
}
sendInlineResult(result, bot, {}, std::nullopt);
//const auto callback = [=](Api::SendOptions options) {
// sendInlineResult(result, bot, options);
//};
//Ui::show(
// PrepareScheduleBox(this, sendMenuType(), callback),
// Ui::LayerOption::KeepOther);
}
void RepliesWidget::sendInlineResult(
not_null<InlineBots::Result*> result,
not_null<UserData*> bot,
Api::SendOptions options,
std::optional<MsgId> localMessageId) {
auto action = prepareSendAction(options);
action.generateLocal = true;
session().api().sendInlineResult(bot, result, action, localMessageId);
_composeControls->clear();
//_saveDraftText = true;
//_saveDraftStart = crl::now();
//onDraftSave();
auto &bots = cRefRecentInlineBots();
const auto index = bots.indexOf(bot);
if (index) {
if (index > 0) {
bots.removeAt(index);
} else if (bots.size() >= RecentInlineBotsLimit) {
bots.resize(RecentInlineBotsLimit - 1);
}
bots.push_front(bot);
bot->session().local().writeRecentHashtagsAndBots();
}
finishSending();
}
SendMenu::Type RepliesWidget::sendMenuType() const {
// #TODO replies schedule
return _history->peer->isSelf()
? SendMenu::Type::Reminder
: HistoryView::CanScheduleUntilOnline(_history->peer)
? SendMenu::Type::ScheduledToUser
: SendMenu::Type::Scheduled;
}
void RepliesWidget::refreshTopBarActiveChat() {
using namespace Dialogs;
const auto state = EntryState{
.key = (_topic ? Key{ _topic } : Key{ _history }),
.section = EntryState::Section::Replies,
.rootId = _rootId,
.currentReplyToId = _composeControls->replyingToMessage().msg,
};
_topBar->setActiveChat(state, _sendAction.get());
_composeControls->setCurrentDialogsEntryState(state);
}
MsgId RepliesWidget::replyToId() const {
const auto custom = _composeControls->replyingToMessage().msg;
return custom ? custom : _rootId;
}
void RepliesWidget::refreshUnreadCountBadge(std::optional<int> count) {
if (count.has_value()) {
_cornerButtons.updateJumpDownVisibility(count);
}
}
void RepliesWidget::cornerButtonsShowAtPosition(
Data::MessagePosition position) {
showAtPosition(position);
}
Data::Thread *RepliesWidget::cornerButtonsThread() {
return _topic ? static_cast<Data::Thread*>(_topic) : _history;
}
FullMsgId RepliesWidget::cornerButtonsCurrentId() {
return _lastShownAt;
}
bool RepliesWidget::cornerButtonsIgnoreVisibility() {
return animatingShow();
}
std::optional<bool> RepliesWidget::cornerButtonsDownShown() {
if (_composeControls->isLockPresent()) {
return false;
}
const auto top = _scroll->scrollTop() + st::historyToDownShownAfter;
if (top < _scroll->scrollTopMax() || _cornerButtons.replyReturn()) {
return true;
} else if (_inner->loadedAtBottomKnown()) {
return !_inner->loadedAtBottom();
}
return std::nullopt;
}
bool RepliesWidget::cornerButtonsUnreadMayBeShown() {
return _inner->loadedAtBottomKnown()
&& !_composeControls->isLockPresent();
}
bool RepliesWidget::cornerButtonsHas(CornerButtonType type) {
return _topic || (type == CornerButtonType::Down);
}
void RepliesWidget::showAtStart() {
showAtPosition(Data::MinMessagePosition);
}
void RepliesWidget::showAtEnd() {
showAtPosition(Data::MaxMessagePosition);
}
void RepliesWidget::finishSending() {
_composeControls->hidePanelsAnimated();
//if (_previewData && _previewData->pendingTill) previewCancel();
doSetInnerFocus();
showAtEnd();
refreshTopBarActiveChat();
}
void RepliesWidget::showAtPosition(
Data::MessagePosition position,
FullMsgId originItemId) {
_lastShownAt = position.fullId;
_inner->showAtPosition(
position,
anim::type::normal,
_cornerButtons.doneJumpFrom(position.fullId, originItemId));
}
void RepliesWidget::updateAdaptiveLayout() {
_topBarShadow->moveToLeft(
controller()->adaptive().isOneColumn() ? 0 : st::lineWidth,
_topBar->height());
}
not_null<History*> RepliesWidget::history() const {
return _history;
}
Dialogs::RowDescriptor RepliesWidget::activeChat() const {
if (_topic) {
return {
_topic,
FullMsgId(_history->peer->id, ShowAtUnreadMsgId),
};
}
return {
_history,
FullMsgId(_history->peer->id, ShowAtUnreadMsgId)
};
}
bool RepliesWidget::preventsClose(Fn<void()> &&continueCallback) const {
if (_composeControls->preventsClose(base::duplicate(continueCallback))) {
return true;
} else if (!_newTopicDiscarded
&& _topic
&& _topic->forum()->creating(_rootId)) {
const auto weak = Ui::MakeWeak(this);
auto sure = [=](Fn<void()> &&close) {
if (const auto strong = weak.data()) {
strong->_newTopicDiscarded = true;
}
close();
if (continueCallback) {
continueCallback();
}
};
controller()->show(Ui::MakeConfirmBox({
.text = rpl::single(u"Sure discard?"_q), // #TODO lang-forum
.confirmed = std::move(sure),
.confirmText = tr::lng_record_lock_discard(),
.confirmStyle = &st::attentionBoxButton,
}));
return true;
}
return false;
}
QPixmap RepliesWidget::grabForShowAnimation(const Window::SectionSlideParams &params) {
_topBar->updateControlsVisibility();
if (params.withTopBarShadow) _topBarShadow->hide();
if (_joinGroup) {
_composeControls->hide();
} else {
_composeControls->showForGrab();
}
auto result = Ui::GrabWidget(this);
if (params.withTopBarShadow) {
_topBarShadow->show();
}
if (_rootView) {
_rootView->hide();
}
return result;
}
void RepliesWidget::doSetInnerFocus() {
if (!_inner->getSelectedText().rich.text.isEmpty()
|| !_inner->getSelectedItems().empty()
|| !_composeControls->focus()) {
_inner->setFocus();
}
}
bool RepliesWidget::showInternal(
not_null<Window::SectionMemento*> memento,
const Window::SectionShow &params) {
if (auto logMemento = dynamic_cast<RepliesMemento*>(memento.get())) {
if (logMemento->getHistory() == history()
&& logMemento->getRootId() == _rootId) {
restoreState(logMemento);
return true;
}
}
return false;
}
void RepliesWidget::setInternalState(
const QRect &geometry,
not_null<RepliesMemento*> memento) {
setGeometry(geometry);
Ui::SendPendingMoveResizeEvents(this);
restoreState(memento);
}
bool RepliesWidget::pushTabbedSelectorToThirdSection(
not_null<PeerData*> peer,
const Window::SectionShow &params) {
return _composeControls->pushTabbedSelectorToThirdSection(peer, params);
}
bool RepliesWidget::returnTabbedSelector() {
return _composeControls->returnTabbedSelector();
}
std::shared_ptr<Window::SectionMemento> RepliesWidget::createMemento() {
auto result = std::make_shared<RepliesMemento>(history(), _rootId);
saveState(result.get());
return result;
}
bool RepliesWidget::showMessage(
PeerId peerId,
const Window::SectionShow &params,
MsgId messageId) {
if (peerId != _history->peer->id) {
return false;
}
const auto id = FullMsgId(_history->peer->id, messageId);
const auto message = _history->owner().message(id);
if (!message) {
return false;
}
auto originFound = false;
const auto originMessage = [&]() -> HistoryItem* {
using OriginMessage = Window::SectionShow::OriginMessage;
if (const auto origin = std::get_if<OriginMessage>(&params.origin)) {
if (const auto returnTo = session().data().message(origin->id)) {
if (returnTo->history() != _history) {
return nullptr;
} else if (returnTo->inThread(_rootId)) {
return returnTo;
}
}
}
return nullptr;
}();
if (!originMessage) {
return false;
}
const auto originItemId = (_cornerButtons.replyReturn() != originMessage)
? originMessage->fullId()
: FullMsgId();
showAtPosition(message->position(), originItemId);
return true;
}
Window::SectionActionResult RepliesWidget::sendBotCommand(
Bot::SendCommandRequest request) {
if (request.peer != _history->peer) {
return Window::SectionActionResult::Ignore;
}
listSendBotCommand(request.command, request.context);
return Window::SectionActionResult::Handle;
}
void RepliesWidget::replyToMessage(FullMsgId itemId) {
_composeControls->replyToMessage(itemId);
refreshTopBarActiveChat();
}
void RepliesWidget::saveState(not_null<RepliesMemento*> memento) {
memento->setReplies(_replies);
memento->setReplyReturns(_cornerButtons.replyReturns());
_inner->saveState(memento->list());
}
void RepliesWidget::refreshReplies() {
auto old = base::take(_replies);
setReplies(_topic
? _topic->replies()
: std::make_shared<Data::RepliesList>(_history, _rootId));
if (old) {
_inner->refreshViewer();
}
}
void RepliesWidget::setReplies(std::shared_ptr<Data::RepliesList> replies) {
_replies = std::move(replies);
_repliesLifetime.destroy();
_replies->unreadCountValue(
) | rpl::start_with_next([=](std::optional<int> count) {
refreshUnreadCountBadge(count);
}, lifetime());
refreshUnreadCountBadge(_replies->unreadCountKnown()
? _replies->unreadCountCurrent()
: std::optional<int>());
if (_topic) {
return;
}
rpl::combine(
rpl::single(0) | rpl::then(_replies->fullCount()),
_areComments.value()
) | rpl::map([=](int count, bool areComments) {
return count
? (areComments
? tr::lng_comments_header
: tr::lng_replies_header)(
lt_count_decimal,
rpl::single(count) | tr::to_count())
: (areComments
? tr::lng_comments_header_none
: tr::lng_replies_header_none)();
}) | rpl::flatten_latest(
) | rpl::start_with_next([=](const QString &text) {
_topBar->setCustomTitle(text);
}, _repliesLifetime);
}
void RepliesWidget::restoreState(not_null<RepliesMemento*> memento) {
if (auto replies = memento->getReplies()) {
setReplies(std::move(replies));
} else if (!_replies) {
refreshReplies();
}
_cornerButtons.setReplyReturns(memento->replyReturns());
_inner->restoreState(memento->list());
if (const auto highlight = memento->getHighlightId()) {
_inner->showAtPosition(Data::MessagePosition{
.fullId = FullMsgId(_history->peer->id, highlight),
.date = TimeId(0),
}, anim::type::instant);
}
}
void RepliesWidget::resizeEvent(QResizeEvent *e) {
if (!width() || !height()) {
return;
}
_composeControls->resizeToWidth(width());
recountChatWidth();
updateControlsGeometry();
}
void RepliesWidget::recountChatWidth() {
auto layout = (width() < st::adaptiveChatWideWidth)
? Window::Adaptive::ChatLayout::Normal
: Window::Adaptive::ChatLayout::Wide;
controller()->adaptive().setChatLayout(layout);
}
void RepliesWidget::updateControlsGeometry() {
const auto contentWidth = width();
const auto newScrollTop = _scroll->isHidden()
? std::nullopt
: base::make_optional(_scroll->scrollTop() + topDelta());
_topBar->resizeToWidth(contentWidth);
_topBarShadow->resize(contentWidth, st::lineWidth);
if (_rootView) {
_rootView->resizeToWidth(contentWidth);
}
const auto bottom = height();
const auto controlsHeight = _joinGroup
? _joinGroup->height()
: _composeControls->heightCurrent();
const auto scrollY = _topBar->height() + _rootViewHeight;
const auto scrollHeight = bottom - scrollY - controlsHeight;
const auto scrollSize = QSize(contentWidth, scrollHeight);
if (_scroll->size() != scrollSize) {
_skipScrollEvent = true;
_scroll->resize(scrollSize);
_inner->resizeToWidth(scrollSize.width(), _scroll->height());
_skipScrollEvent = false;
}
_scroll->move(0, scrollY);
if (!_scroll->isHidden()) {
if (newScrollTop) {
_scroll->scrollToY(*newScrollTop);
}
updateInnerVisibleArea();
}
if (_joinGroup) {
_joinGroup->setGeometry(
0,
bottom - _joinGroup->height(),
contentWidth,
_joinGroup->height());
}
_composeControls->move(0, bottom - controlsHeight);
_composeControls->setAutocompleteBoundingRect(_scroll->geometry());
_cornerButtons.updatePositions();
}
void RepliesWidget::paintEvent(QPaintEvent *e) {
if (animatingShow()) {
SectionWidget::paintEvent(e);
return;
} else if (Ui::skipPaintEvent(this, e)) {
return;
}
const auto aboveHeight = _topBar->height();
const auto bg = e->rect().intersected(
QRect(0, aboveHeight, width(), height() - aboveHeight));
SectionWidget::PaintBackground(controller(), _theme.get(), this, bg);
}
void RepliesWidget::onScroll() {
if (_skipScrollEvent) {
return;
}
updateInnerVisibleArea();
}
void RepliesWidget::updateInnerVisibleArea() {
if (!_inner->animatedScrolling()) {
checkReplyReturns();
}
const auto scrollTop = _scroll->scrollTop();
_inner->setVisibleTopBottom(scrollTop, scrollTop + _scroll->height());
updatePinnedVisibility();
_cornerButtons.updateJumpDownVisibility();
_cornerButtons.updateUnreadThingsVisibility();
}
void RepliesWidget::updatePinnedVisibility() {
if (!_loaded) {
return;
} else if (!_root || _root->isEmpty()) {
setPinnedVisibility(!_root);
return;
}
const auto item = [&] {
if (const auto group = _history->owner().groups().find(_root)) {
return group->items.front().get();
}
return _root;
}();
const auto view = _inner->viewByPosition(item->position());
const auto visible = !view
|| (view->y() + view->height() <= _scroll->scrollTop());
setPinnedVisibility(visible);
}
void RepliesWidget::setPinnedVisibility(bool shown) {
if (animatingShow() || _topic) {
return;
} else if (!_rootViewInited) {
const auto height = shown ? st::historyReplyHeight : 0;
if (const auto delta = height - _rootViewHeight) {
_rootViewHeight = height;
if (_scroll->scrollTop() == _scroll->scrollTopMax()) {
setGeometryWithTopMoved(geometry(), delta);
} else {
updateControlsGeometry();
}
}
if (shown) {
_rootView->show();
} else {
_rootView->hide();
}
_rootVisible = shown;
_rootView->finishAnimating();
_rootViewInited = true;
} else {
_rootVisible = shown;
}
}
void RepliesWidget::showAnimatedHook(
const Window::SectionSlideParams &params) {
_topBar->setAnimatingMode(true);
if (params.withTopBarShadow) {
_topBarShadow->show();
}
_composeControls->showStarted();
}
void RepliesWidget::showFinishedHook() {
_topBar->setAnimatingMode(false);
if (_joinGroup) {
_composeControls->hide();
} else {
_composeControls->showFinished();
}
if (_rootView) {
_rootView->show();
}
// We should setup the drag area only after
// the section animation is finished,
// because after that the method showChildren() is called.
setupDragArea();
updatePinnedVisibility();
}
bool RepliesWidget::floatPlayerHandleWheelEvent(QEvent *e) {
return _scroll->viewportEvent(e);
}
QRect RepliesWidget::floatPlayerAvailableRect() {
return mapToGlobal(_scroll->geometry());
}
Context RepliesWidget::listContext() {
return Context::Replies;
}
bool RepliesWidget::listScrollTo(int top) {
top = std::clamp(top, 0, _scroll->scrollTopMax());
if (_scroll->scrollTop() == top) {
updateInnerVisibleArea();
return false;
}
_scroll->scrollToY(top);
return true;
}
void RepliesWidget::listCancelRequest() {
if (_inner && !_inner->getSelectedItems().empty()) {
clearSelected();
return;
} else if (_composeControls->handleCancelRequest()) {
refreshTopBarActiveChat();
return;
}
controller()->showBackFromStack();
}
void RepliesWidget::listDeleteRequest() {
confirmDeleteSelected();
}
rpl::producer<Data::MessagesSlice> RepliesWidget::listSource(
Data::MessagePosition aroundId,
int limitBefore,
int limitAfter) {
return _replies->source(
aroundId,
limitBefore,
limitAfter
) | rpl::before_next([=] { // after_next makes a copy of value.
if (!_loaded) {
_loaded = true;
crl::on_main(this, [=] {
updatePinnedVisibility();
});
}
});
}
bool RepliesWidget::listAllowsMultiSelect() {
return true;
}
bool RepliesWidget::listIsItemGoodForSelection(
not_null<HistoryItem*> item) {
return item->isRegular();
}
bool RepliesWidget::listIsLessInOrder(
not_null<HistoryItem*> first,
not_null<HistoryItem*> second) {
return first->position() < second->position();
}
void RepliesWidget::listSelectionChanged(SelectedItems &&items) {
HistoryView::TopBarWidget::SelectedState state;
state.count = items.size();
for (const auto &item : items) {
if (item.canDelete) {
++state.canDeleteCount;
}
if (item.canForward) {
++state.canForwardCount;
}
}
_topBar->showSelected(state);
}
void RepliesWidget::listMarkReadTill(not_null<HistoryItem*> item) {
if (true/*doWeReadServerHistory()*/) { // #TODO forum active
_replies->readTill(item);
}
}
void RepliesWidget::listMarkContentsRead(
const base::flat_set<not_null<HistoryItem*>> &items) {
if (true/*doWeReadMentions()*/) { // #TODO forum active
session().api().markContentsRead(items);
}
}
MessagesBarData RepliesWidget::listMessagesBar(
const std::vector<not_null<Element*>> &elements) {
if (elements.empty()) {
return {};
}
const auto till = _replies->computeInboxReadTillFull();
const auto hidden = (till < 2);
for (auto i = 0, count = int(elements.size()); i != count; ++i) {
const auto item = elements[i]->data();
if (item->isRegular() && item->id > till) {
if (item->out() || !item->replyToId()) {
_replies->readTill(item);
} else {
return {
.bar = {
.element = elements[i],
.hidden = hidden,
.focus = true,
},
.text = tr::lng_unread_bar_some(),
};
}
}
}
return {};
}
void RepliesWidget::listContentRefreshed() {
}
ClickHandlerPtr RepliesWidget::listDateLink(not_null<Element*> view) {
return nullptr;
}
bool RepliesWidget::listElementHideReply(not_null<const Element*> view) {
return (view->data()->replyToId() == _rootId);
}
bool RepliesWidget::listElementShownUnread(not_null<const Element*> view) {
if (!_root) {
return false;
}
const auto item = view->data();
const auto till = item->out()
? _replies->computeOutboxReadTillFull()
: _replies->computeInboxReadTillFull();
return (item->id > till);
}
bool RepliesWidget::listIsGoodForAroundPosition(
not_null<const Element*> view) {
return view->data()->isRegular();
}
void RepliesWidget::listSendBotCommand(
const QString &command,
const FullMsgId &context) {
const auto text = Bot::WrapCommandInChat(
_history->peer,
command,
context);
auto message = ApiWrap::MessageToSend(
prepareSendAction({}));
message.textWithTags = { text };
session().api().sendMessage(std::move(message));
finishSending();
}
void RepliesWidget::listHandleViaClick(not_null<UserData*> bot) {
_composeControls->setText({ '@' + bot->username + ' ' });
}
not_null<Ui::ChatTheme*> RepliesWidget::listChatTheme() {
return _theme.get();
}
CopyRestrictionType RepliesWidget::listCopyRestrictionType(
HistoryItem *item) {
return CopyRestrictionTypeFor(_history->peer, item);
}
CopyRestrictionType RepliesWidget::listSelectRestrictionType() {
return SelectRestrictionTypeFor(_history->peer);
}
auto RepliesWidget::listAllowedReactionsValue()
-> rpl::producer<Data::AllowedReactions> {
return Data::PeerAllowedReactionsValue(_history->peer);
}
void RepliesWidget::listShowPremiumToast(not_null<DocumentData*> document) {
if (!_stickerToast) {
_stickerToast = std::make_unique<HistoryView::StickerToast>(
controller(),
this,
[=] { _stickerToast = nullptr; });
}
_stickerToast->showFor(document);
}
void RepliesWidget::listOpenPhoto(
not_null<PhotoData*> photo,
FullMsgId context) {
controller()->openPhoto(photo, context, _rootId);
}
void RepliesWidget::listOpenDocument(
not_null<DocumentData*> document,
FullMsgId context,
bool showInMediaView) {
controller()->openDocument(document, context, _rootId, showInMediaView);
}
void RepliesWidget::confirmDeleteSelected() {
ConfirmDeleteSelectedItems(_inner);
}
void RepliesWidget::confirmForwardSelected() {
ConfirmForwardSelectedItems(_inner);
}
void RepliesWidget::clearSelected() {
_inner->cancelSelection();
}
void RepliesWidget::setupDragArea() {
const auto areas = DragArea::SetupDragAreaToContainer(
this,
[=](auto d) { return _history && !_composeControls->isRecording(); },
nullptr,
[=] { updateControlsGeometry(); });
const auto droppedCallback = [=](bool overrideSendImagesAsPhotos) {
return [=](const QMimeData *data) {
confirmSendingFiles(data, overrideSendImagesAsPhotos);
Window::ActivateWindow(controller());
};
};
areas.document->setDroppedCallback(droppedCallback(false));
areas.photo->setDroppedCallback(droppedCallback(true));
}
} // namespace HistoryView