Fix jump to a specific message.

This commit is contained in:
John Preston 2020-02-21 18:02:13 +04:00
parent 7f77db8c7f
commit 28032e5e0d
3 changed files with 38 additions and 21 deletions

View File

@ -597,10 +597,9 @@ int Histories::sendRequest(
} }
void Histories::checkPostponed(not_null<History*> history, int id) { void Histories::checkPostponed(not_null<History*> history, int id) {
const auto state = lookup(history); if (const auto state = lookup(history)) {
Assert(state != nullptr); finishSentRequest(history, state, id);
}
finishSentRequest(history, state, id);
} }
void Histories::cancelRequest(int id) { void Histories::cancelRequest(int id) {

View File

@ -1916,9 +1916,13 @@ void HistoryWidget::showHistory(
} }
void HistoryWidget::clearDelayedShowAt() { void HistoryWidget::clearDelayedShowAt() {
_delayedShowAtMsgId = -1;
clearDelayedShowAtRequest();
}
void HistoryWidget::clearDelayedShowAtRequest() {
Expects(_history != nullptr); Expects(_history != nullptr);
_delayedShowAtMsgId = -1;
if (_delayedShowAtRequest) { if (_delayedShowAtRequest) {
_history->owner().histories().cancelRequest(_delayedShowAtRequest); _history->owner().histories().cancelRequest(_delayedShowAtRequest);
_delayedShowAtRequest = 0; _delayedShowAtRequest = 0;
@ -1929,7 +1933,7 @@ void HistoryWidget::clearAllLoadRequests() {
Expects(_history != nullptr); Expects(_history != nullptr);
auto &histories = _history->owner().histories(); auto &histories = _history->owner().histories();
clearDelayedShowAt(); clearDelayedShowAtRequest();
if (_firstLoadRequest) { if (_firstLoadRequest) {
histories.cancelRequest(_firstLoadRequest); histories.cancelRequest(_firstLoadRequest);
_firstLoadRequest = 0; _firstLoadRequest = 0;
@ -2472,19 +2476,19 @@ void HistoryWidget::messagesReceived(PeerData *peer, const MTPmessages_Messages
_migrated->clear(History::ClearType::Unload); _migrated->clear(History::ClearType::Unload);
} }
_delayedShowAtRequest = 0; clearAllLoadRequests();
_firstLoadRequest = -1; // hack - don't updateListSize yet
_history->getReadyFor(_delayedShowAtMsgId); _history->getReadyFor(_delayedShowAtMsgId);
if (_history->isEmpty()) { if (_history->isEmpty()) {
clearAllLoadRequests();
_firstLoadRequest = -1; // hack - don't updateListSize yet
addMessagesToFront(peer, *histList); addMessagesToFront(peer, *histList);
_firstLoadRequest = 0; }
if (_history->loadedAtTop() _firstLoadRequest = 0;
&& _history->isEmpty()
&& count > 0) { if (_history->loadedAtTop()
firstLoadMessages(); && _history->isEmpty()
return; && count > 0) {
} firstLoadMessages();
return;
} }
while (_replyReturn) { while (_replyReturn) {
if (_replyReturn->history() == _history if (_replyReturn->history() == _history
@ -2498,6 +2502,7 @@ void HistoryWidget::messagesReceived(PeerData *peer, const MTPmessages_Messages
} }
} }
_delayedShowAtRequest = 0;
setMsgId(_delayedShowAtMsgId); setMsgId(_delayedShowAtMsgId);
historyLoaded(); historyLoaded();
} }
@ -2521,6 +2526,7 @@ bool HistoryWidget::doWeReadMentions() const {
&& _list && _list
&& _historyInited && _historyInited
&& !_firstLoadRequest && !_firstLoadRequest
&& !_delayedShowAtRequest
&& !_a_show.animating() && !_a_show.animating()
&& App::wnd()->doWeMarkAsRead(); && App::wnd()->doWeMarkAsRead();
} }
@ -2707,7 +2713,7 @@ void HistoryWidget::delayedShowAt(MsgId showAtMsgId) {
return; return;
} }
clearDelayedShowAt(); clearAllLoadRequests();
_delayedShowAtMsgId = showAtMsgId; _delayedShowAtMsgId = showAtMsgId;
auto from = _history; auto from = _history;
@ -2799,7 +2805,11 @@ void HistoryWidget::visibleAreaUpdated() {
} }
void HistoryWidget::preloadHistoryIfNeeded() { void HistoryWidget::preloadHistoryIfNeeded() {
if (_firstLoadRequest || _scroll->isHidden() || !_peer) { if (_firstLoadRequest
|| _delayedShowAtRequest
|| _scroll->isHidden()
|| !_peer
|| !_historyInited) {
return; return;
} }
@ -2818,7 +2828,11 @@ void HistoryWidget::preloadHistoryIfNeeded() {
} }
void HistoryWidget::preloadHistoryByScroll() { void HistoryWidget::preloadHistoryByScroll() {
if (_firstLoadRequest || _scroll->isHidden() || !_peer) { if (_firstLoadRequest
|| _delayedShowAtRequest
|| _scroll->isHidden()
|| !_peer
|| !_historyInited) {
return; return;
} }
@ -2834,7 +2848,10 @@ void HistoryWidget::preloadHistoryByScroll() {
} }
void HistoryWidget::checkReplyReturns() { void HistoryWidget::checkReplyReturns() {
if (_firstLoadRequest || _scroll->isHidden() || !_peer) { if (_firstLoadRequest
|| _scroll->isHidden()
|| !_peer
|| !_historyInited) {
return; return;
} }
auto scrollTop = _scroll->scrollTop(); auto scrollTop = _scroll->scrollTop();

View File

@ -213,8 +213,9 @@ public:
void applyDraft( void applyDraft(
FieldHistoryAction fieldHistoryAction = FieldHistoryAction::Clear); FieldHistoryAction fieldHistoryAction = FieldHistoryAction::Clear);
void showHistory(const PeerId &peer, MsgId showAtMsgId, bool reload = false); void showHistory(const PeerId &peer, MsgId showAtMsgId, bool reload = false);
void clearDelayedShowAt();
void clearAllLoadRequests(); void clearAllLoadRequests();
void clearDelayedShowAtRequest();
void clearDelayedShowAt();
void saveFieldToHistoryLocalDraft(); void saveFieldToHistoryLocalDraft();
void applyCloudDraft(History *history); void applyCloudDraft(History *history);