diff --git a/Telegram/SourceFiles/data/data_session.cpp b/Telegram/SourceFiles/data/data_session.cpp index c78ac4e52..4636f769c 100644 --- a/Telegram/SourceFiles/data/data_session.cpp +++ b/Telegram/SourceFiles/data/data_session.cpp @@ -3723,12 +3723,12 @@ void Session::setTopPromoted( || (history && history->topPromotionMessage() != message)) { if (changed) { if (const auto history = historyLoaded(_topPromoted)) { - history->cacheTopPromoted(false, QString(), QString()); + history->cacheTopPromotion(false, QString(), QString()); } } const auto old = std::exchange(_topPromoted, promoted); if (history) { - history->cacheTopPromoted(true, type, message); + history->cacheTopPromotion(true, type, message); history->requestChatListMessage(); Notify::peerUpdatedDelayed( _topPromoted, diff --git a/Telegram/SourceFiles/dialogs/dialogs_entry.cpp b/Telegram/SourceFiles/dialogs/dialogs_entry.cpp index 64780db7f..4ccc2026d 100644 --- a/Telegram/SourceFiles/dialogs/dialogs_entry.cpp +++ b/Telegram/SourceFiles/dialogs/dialogs_entry.cpp @@ -86,21 +86,15 @@ void Entry::cachePinnedIndex(FilterId filterId, int index) { } } -void Entry::cacheTopPromoted( - bool promoted, - const QString &type, - const QString &message) { - if (_isTopPromoted != promoted - || _topPromotedType != type - || _topPromotedMessage != message) { - _isTopPromoted = promoted; - _topPromotedType = type; - _topPromotedMessage = message; - updateChatListSortPosition(); - updateChatListEntry(); - if (!_isTopPromoted) { - updateChatListExistence(); - } +void Entry::cacheTopPromoted(bool promoted) { + if (_isTopPromoted == promoted) { + return; + } + _isTopPromoted = promoted; + updateChatListSortPosition(); + updateChatListEntry(); + if (!_isTopPromoted) { + updateChatListExistence(); } } @@ -108,14 +102,6 @@ bool Entry::isTopPromoted() const { return _isTopPromoted; } -QString Entry::topPromotionType() const { - return _topPromotedType; -} - -QString Entry::topPromotionMessage() const { - return _topPromotedMessage; -} - bool Entry::needUpdateInChatList() const { return inChatList() || shouldBeInChatList(); } diff --git a/Telegram/SourceFiles/dialogs/dialogs_entry.h b/Telegram/SourceFiles/dialogs/dialogs_entry.h index 100bcd152..82ea7f61d 100644 --- a/Telegram/SourceFiles/dialogs/dialogs_entry.h +++ b/Telegram/SourceFiles/dialogs/dialogs_entry.h @@ -120,13 +120,7 @@ public: return lookupPinnedIndex(filterId) != 0; } void cachePinnedIndex(FilterId filterId, int index); - void cacheTopPromoted( - bool promoted, - const QString &type, - const QString &message); [[nodiscard]] bool isTopPromoted() const; - [[nodiscard]] QString topPromotionType() const; - [[nodiscard]] QString topPromotionMessage() const; [[nodiscard]] uint64 sortKeyInChatList(FilterId filterId) const { return filterId ? computeSortPosition(filterId) @@ -197,6 +191,8 @@ protected: [[nodiscard]] int lookupPinnedIndex(FilterId filterId) const; + void cacheTopPromoted(bool promoted); + private: virtual void changedChatListPinHook(); void pinnedIndexChanged(int was, int now); @@ -214,10 +210,8 @@ private: uint64 _sortKeyInChatList = 0; uint64 _sortKeyByDate = 0; base::flat_map _pinnedIndex; - QString _topPromotedMessage; - QString _topPromotedType; - bool _isTopPromoted = false; TimeId _timeId = 0; + bool _isTopPromoted = false; }; diff --git a/Telegram/SourceFiles/dialogs/dialogs_layout.cpp b/Telegram/SourceFiles/dialogs/dialogs_layout.cpp index 3b0f07207..e424757c9 100644 --- a/Telegram/SourceFiles/dialogs/dialogs_layout.cpp +++ b/Telegram/SourceFiles/dialogs/dialogs_layout.cpp @@ -325,7 +325,18 @@ void paintRow( auto texttop = st::dialogsPadding.y() + st::msgNameFont->height + st::dialogsSkip; - if (draft + if (promoted && !history->topPromotionMessage().isEmpty()) { + auto availableWidth = namewidth; + p.setFont(st::dialogsTextFont); + if (history->cloudDraftTextCache.isEmpty()) { + history->cloudDraftTextCache.setText( + st::dialogsTextStyle, + history->topPromotionMessage(), + Ui::DialogTextOptions()); + } + p.setPen(active ? st::dialogsTextFgActive : (selected ? st::dialogsTextFgOver : st::dialogsTextFg)); + history->cloudDraftTextCache.drawElided(p, nameleft, texttop, availableWidth, 1); + } else if (draft || (supportMode && Auth().supportHelper().isOccupiedBySomeone(history))) { if (!promoted) { diff --git a/Telegram/SourceFiles/history/history.cpp b/Telegram/SourceFiles/history/history.cpp index 4594cea06..c13b1f651 100644 --- a/Telegram/SourceFiles/history/history.cpp +++ b/Telegram/SourceFiles/history/history.cpp @@ -2718,6 +2718,29 @@ void History::dialogEntryApplied() { } } +void History::cacheTopPromotion( + bool promoted, + const QString &type, + const QString &message) { + const auto changed = (isTopPromoted() != promoted); + cacheTopPromoted(promoted); + if (_topPromotedType != type || _topPromotedMessage != message) { + _topPromotedType = type; + _topPromotedMessage = message; + cloudDraftTextCache.clear(); + } else if (changed) { + cloudDraftTextCache.clear(); + } +} + +QString History::topPromotionType() const { + return _topPromotedType; +} + +QString History::topPromotionMessage() const { + return _topPromotedMessage; +} + bool History::clearUnreadOnClientSide() const { if (!session().supportMode()) { return false; diff --git a/Telegram/SourceFiles/history/history.h b/Telegram/SourceFiles/history/history.h index f58eeaa32..8e97d204a 100644 --- a/Telegram/SourceFiles/history/history.h +++ b/Telegram/SourceFiles/history/history.h @@ -237,6 +237,13 @@ public: MsgId maxOutboxRead); void dialogEntryApplied(); + void cacheTopPromotion( + bool promoted, + const QString &type, + const QString &message); + [[nodiscard]] QString topPromotionType() const; + [[nodiscard]] QString topPromotionMessage() const; + MsgId minMsgId() const; MsgId maxMsgId() const; MsgId msgIdForRead() const; @@ -559,6 +566,9 @@ private: TimeId _lastSentDraftTime = 0; MessageIdsList _forwardDraft; + QString _topPromotedMessage; + QString _topPromotedType; + base::flat_map, crl::time> _typing; base::flat_map, SendAction> _sendActions; QString _sendActionString;