Support psa_message in chats list.

This commit is contained in:
John Preston 2020-04-29 12:46:02 +04:00
parent aabc8173c3
commit 042ed8f54a
6 changed files with 59 additions and 35 deletions

View File

@ -3723,12 +3723,12 @@ void Session::setTopPromoted(
|| (history && history->topPromotionMessage() != message)) { || (history && history->topPromotionMessage() != message)) {
if (changed) { if (changed) {
if (const auto history = historyLoaded(_topPromoted)) { if (const auto history = historyLoaded(_topPromoted)) {
history->cacheTopPromoted(false, QString(), QString()); history->cacheTopPromotion(false, QString(), QString());
} }
} }
const auto old = std::exchange(_topPromoted, promoted); const auto old = std::exchange(_topPromoted, promoted);
if (history) { if (history) {
history->cacheTopPromoted(true, type, message); history->cacheTopPromotion(true, type, message);
history->requestChatListMessage(); history->requestChatListMessage();
Notify::peerUpdatedDelayed( Notify::peerUpdatedDelayed(
_topPromoted, _topPromoted,

View File

@ -86,21 +86,15 @@ void Entry::cachePinnedIndex(FilterId filterId, int index) {
} }
} }
void Entry::cacheTopPromoted( void Entry::cacheTopPromoted(bool promoted) {
bool promoted, if (_isTopPromoted == promoted) {
const QString &type, return;
const QString &message) { }
if (_isTopPromoted != promoted _isTopPromoted = promoted;
|| _topPromotedType != type updateChatListSortPosition();
|| _topPromotedMessage != message) { updateChatListEntry();
_isTopPromoted = promoted; if (!_isTopPromoted) {
_topPromotedType = type; updateChatListExistence();
_topPromotedMessage = message;
updateChatListSortPosition();
updateChatListEntry();
if (!_isTopPromoted) {
updateChatListExistence();
}
} }
} }
@ -108,14 +102,6 @@ bool Entry::isTopPromoted() const {
return _isTopPromoted; return _isTopPromoted;
} }
QString Entry::topPromotionType() const {
return _topPromotedType;
}
QString Entry::topPromotionMessage() const {
return _topPromotedMessage;
}
bool Entry::needUpdateInChatList() const { bool Entry::needUpdateInChatList() const {
return inChatList() || shouldBeInChatList(); return inChatList() || shouldBeInChatList();
} }

View File

@ -120,13 +120,7 @@ public:
return lookupPinnedIndex(filterId) != 0; return lookupPinnedIndex(filterId) != 0;
} }
void cachePinnedIndex(FilterId filterId, int index); void cachePinnedIndex(FilterId filterId, int index);
void cacheTopPromoted(
bool promoted,
const QString &type,
const QString &message);
[[nodiscard]] bool isTopPromoted() const; [[nodiscard]] bool isTopPromoted() const;
[[nodiscard]] QString topPromotionType() const;
[[nodiscard]] QString topPromotionMessage() const;
[[nodiscard]] uint64 sortKeyInChatList(FilterId filterId) const { [[nodiscard]] uint64 sortKeyInChatList(FilterId filterId) const {
return filterId return filterId
? computeSortPosition(filterId) ? computeSortPosition(filterId)
@ -197,6 +191,8 @@ protected:
[[nodiscard]] int lookupPinnedIndex(FilterId filterId) const; [[nodiscard]] int lookupPinnedIndex(FilterId filterId) const;
void cacheTopPromoted(bool promoted);
private: private:
virtual void changedChatListPinHook(); virtual void changedChatListPinHook();
void pinnedIndexChanged(int was, int now); void pinnedIndexChanged(int was, int now);
@ -214,10 +210,8 @@ private:
uint64 _sortKeyInChatList = 0; uint64 _sortKeyInChatList = 0;
uint64 _sortKeyByDate = 0; uint64 _sortKeyByDate = 0;
base::flat_map<FilterId, int> _pinnedIndex; base::flat_map<FilterId, int> _pinnedIndex;
QString _topPromotedMessage;
QString _topPromotedType;
bool _isTopPromoted = false;
TimeId _timeId = 0; TimeId _timeId = 0;
bool _isTopPromoted = false;
}; };

View File

@ -325,7 +325,18 @@ void paintRow(
auto texttop = st::dialogsPadding.y() auto texttop = st::dialogsPadding.y()
+ st::msgNameFont->height + st::msgNameFont->height
+ st::dialogsSkip; + 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 || (supportMode
&& Auth().supportHelper().isOccupiedBySomeone(history))) { && Auth().supportHelper().isOccupiedBySomeone(history))) {
if (!promoted) { if (!promoted) {

View File

@ -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 { bool History::clearUnreadOnClientSide() const {
if (!session().supportMode()) { if (!session().supportMode()) {
return false; return false;

View File

@ -237,6 +237,13 @@ public:
MsgId maxOutboxRead); MsgId maxOutboxRead);
void dialogEntryApplied(); void dialogEntryApplied();
void cacheTopPromotion(
bool promoted,
const QString &type,
const QString &message);
[[nodiscard]] QString topPromotionType() const;
[[nodiscard]] QString topPromotionMessage() const;
MsgId minMsgId() const; MsgId minMsgId() const;
MsgId maxMsgId() const; MsgId maxMsgId() const;
MsgId msgIdForRead() const; MsgId msgIdForRead() const;
@ -559,6 +566,9 @@ private:
TimeId _lastSentDraftTime = 0; TimeId _lastSentDraftTime = 0;
MessageIdsList _forwardDraft; MessageIdsList _forwardDraft;
QString _topPromotedMessage;
QString _topPromotedType;
base::flat_map<not_null<UserData*>, crl::time> _typing; base::flat_map<not_null<UserData*>, crl::time> _typing;
base::flat_map<not_null<UserData*>, SendAction> _sendActions; base::flat_map<not_null<UserData*>, SendAction> _sendActions;
QString _sendActionString; QString _sendActionString;