Create unread bar when jumping to a message.

This commit is contained in:
John Preston 2020-02-20 20:22:30 +04:00
parent 49c4d35afa
commit f72cb979c0
2 changed files with 51 additions and 19 deletions

View File

@ -1634,6 +1634,9 @@ void HistoryWidget::showHistory(
if (_peer->id == peerId && !reload) { if (_peer->id == peerId && !reload) {
updateForwarding(); updateForwarding();
if (showAtMsgId == ShowAtUnreadMsgId) {
showAtMsgId = ShowAtTheEndMsgId;
}
const auto canShowNow = _history->isReadyFor(showAtMsgId); const auto canShowNow = _history->isReadyFor(showAtMsgId);
if (!canShowNow) { if (!canShowNow) {
delayedShowAt(showAtMsgId); delayedShowAt(showAtMsgId);
@ -1658,7 +1661,12 @@ void HistoryWidget::showHistory(
if (_historyInited) { if (_historyInited) {
const auto item = getItemFromHistoryOrMigrated( const auto item = getItemFromHistoryOrMigrated(
_showAtMsgId); _showAtMsgId);
animatedScrollToY(countInitialScrollTop(), item); animatedScrollToY(
std::clamp(
countInitialScrollTop(),
0,
_scroll->scrollTopMax()),
item);
} else { } else {
historyLoaded(); historyLoaded();
} }
@ -4963,9 +4971,8 @@ MsgId HistoryWidget::replyToId() const {
} }
int HistoryWidget::countInitialScrollTop() { int HistoryWidget::countInitialScrollTop() {
auto result = ScrollMax;
if (_history->scrollTopItem || (_migrated && _migrated->scrollTopItem)) { if (_history->scrollTopItem || (_migrated && _migrated->scrollTopItem)) {
result = _list->historyScrollTop(); return _list->historyScrollTop();
} else if (_showAtMsgId } else if (_showAtMsgId
&& (IsServerMsgId(_showAtMsgId) && (IsServerMsgId(_showAtMsgId)
|| IsServerMsgId(-_showAtMsgId))) { || IsServerMsgId(-_showAtMsgId))) {
@ -4978,31 +4985,44 @@ int HistoryWidget::countInitialScrollTop() {
const auto view = item->mainView(); const auto view = item->mainView();
Assert(view != nullptr); Assert(view != nullptr);
result = itemTopForHighlight(view);
enqueueMessageHighlight(view); enqueueMessageHighlight(view);
const auto result = itemTopForHighlight(view);
createUnreadBarIfBelowVisibleArea(result);
return result;
} }
} else if (const auto top = unreadBarTop()) { } else if (const auto top = unreadBarTop()) {
result = *top; return *top;
} else { } else {
_history->calculateFirstUnreadMessage();
return countAutomaticScrollTop(); return countAutomaticScrollTop();
} }
return qMin(result, _scroll->scrollTopMax()); }
void HistoryWidget::createUnreadBarIfBelowVisibleArea(int withScrollTop) {
if (_history->unreadBar()) {
return;
}
_history->calculateFirstUnreadMessage();
if (const auto unread = _history->firstUnreadMessage()) {
if (_list->itemTop(unread) > withScrollTop) {
_history->addUnreadBar();
if (hasPendingResizedItems()) {
updateListSize();
}
}
}
} }
int HistoryWidget::countAutomaticScrollTop() { int HistoryWidget::countAutomaticScrollTop() {
Expects(_history != nullptr); Expects(_history != nullptr);
Expects(_list != nullptr); Expects(_list != nullptr);
auto result = ScrollMax;
if (!_historyInited) {
_history->calculateFirstUnreadMessage();
}
if (const auto unread = _history->firstUnreadMessage()) { if (const auto unread = _history->firstUnreadMessage()) {
result = _list->itemTop(unread); const auto firstUnreadTop = _list->itemTop(unread);
const auto possibleUnreadBarTop = _scroll->scrollTopMax() const auto possibleUnreadBarTop = _scroll->scrollTopMax()
+ HistoryView::UnreadBar::height() + HistoryView::UnreadBar::height()
- HistoryView::UnreadBar::marginTop(); - HistoryView::UnreadBar::marginTop();
if (result < possibleUnreadBarTop) { if (firstUnreadTop < possibleUnreadBarTop) {
const auto history = unread->data()->history(); const auto history = unread->data()->history();
history->addUnreadBar(); history->addUnreadBar();
if (hasPendingResizedItems()) { if (hasPendingResizedItems()) {
@ -5010,15 +5030,11 @@ int HistoryWidget::countAutomaticScrollTop() {
} }
if (history->unreadBar() != nullptr) { if (history->unreadBar() != nullptr) {
setMsgId(ShowAtUnreadMsgId); setMsgId(ShowAtUnreadMsgId);
result = countInitialScrollTop(); return countInitialScrollTop();
if (session().supportMode()) {
history->unsetFirstUnreadMessage();
}
return result;
} }
} }
} }
return qMin(result, _scroll->scrollTopMax()); return ScrollMax;
} }
void HistoryWidget::updateHistoryGeometry( void HistoryWidget::updateHistoryGeometry(
@ -5165,8 +5181,23 @@ void HistoryWidget::addMessagesToFront(PeerData *peer, const QVector<MTPMessage>
} }
} }
void HistoryWidget::addMessagesToBack(PeerData *peer, const QVector<MTPMessage> &messages) { void HistoryWidget::addMessagesToBack(
PeerData *peer,
const QVector<MTPMessage> &messages) {
const auto checkForUnreadStart = [&] {
if (_history->unreadBar() || !_history->inChatList()) {
return false;
}
_history->calculateFirstUnreadMessage();
return !_history->firstUnreadMessage();
}();
_list->messagesReceivedDown(peer, messages); _list->messagesReceivedDown(peer, messages);
if (checkForUnreadStart) {
_history->calculateFirstUnreadMessage();
if (const auto unread = _history->firstUnreadMessage()) {
_history->addUnreadBar();
}
}
if (!_firstLoadRequest) { if (!_firstLoadRequest) {
updateHistoryGeometry(false, true, { ScrollChangeNoJumpToBottom, 0 }); updateHistoryGeometry(false, true, { ScrollChangeNoJumpToBottom, 0 });
} }

View File

@ -558,6 +558,7 @@ private:
// destroys _history and _migrated unread bars // destroys _history and _migrated unread bars
void destroyUnreadBar(); void destroyUnreadBar();
void destroyUnreadBarOnClose(); void destroyUnreadBarOnClose();
void createUnreadBarIfBelowVisibleArea(int withScrollTop);
void saveEditMsg(); void saveEditMsg();
void saveEditMsgDone(History *history, const MTPUpdates &updates, mtpRequestId req); void saveEditMsgDone(History *history, const MTPUpdates &updates, mtpRequestId req);