Create dialog rows only with known folders.

This commit is contained in:
John Preston 2019-04-18 13:00:38 +04:00
parent 854870683b
commit f3ed7a674a
7 changed files with 50 additions and 27 deletions

View File

@ -234,8 +234,14 @@ void Folder::requestChatListMessage() {
} }
} }
TimeId Folder::adjustedChatListTimeId() const {
return _chatsList.empty()
? TimeId(0)
: (*_chatsList.begin())->entry()->adjustedChatListTimeId();
}
int Folder::unreadCount() const { int Folder::unreadCount() const {
return _unreadCount ? *_unreadCount : 0; return _unreadCount.value_or(0);
} }
rpl::producer<int> Folder::unreadCountValue() const { rpl::producer<int> Folder::unreadCountValue() const {

View File

@ -30,7 +30,7 @@ struct FolderUpdate {
//MessagePosition FeedPositionFromMTP(const MTPFeedPosition &position); // #feed //MessagePosition FeedPositionFromMTP(const MTPFeedPosition &position); // #feed
class Folder : public Dialogs::Entry { class Folder final : public Dialogs::Entry {
public: public:
static constexpr auto kId = 1; static constexpr auto kId = 1;
@ -58,6 +58,7 @@ public:
//bool unreadMark() const; //bool unreadMark() const;
//int unreadCountForBadge() const; // unreadCount || unreadMark ? 1 : 0. //int unreadCountForBadge() const; // unreadCount || unreadMark ? 1 : 0.
TimeId adjustedChatListTimeId() const override;
int unreadCount() const; int unreadCount() const;
bool unreadCountKnown() const; bool unreadCountKnown() const;

View File

@ -1435,7 +1435,9 @@ void Session::addSavedPeersAfter(const QDateTime &date) {
saved.remove(lastDate, lastPeer); saved.remove(lastDate, lastPeer);
const auto history = session().data().history(lastPeer); const auto history = session().data().history(lastPeer);
history->setChatListTimeId(ServerTimeFromParsed(lastDate)); if (!history->chatListTimeId()) {
history->setChatListTimeId(ServerTimeFromParsed(lastDate));
}
} }
} }

View File

@ -91,7 +91,7 @@ void Entry::updateChatListSortPosition() {
? ProxyPromotedDialogPos() ? ProxyPromotedDialogPos()
: isPinnedDialog() : isPinnedDialog()
? PinnedDialogPos(_pinnedIndex) ? PinnedDialogPos(_pinnedIndex)
: DialogPosFromDate(adjustChatListTimeId()); : DialogPosFromDate(adjustedChatListTimeId());
if (needUpdateInChatList()) { if (needUpdateInChatList()) {
setChatListExistence(true); setChatListExistence(true);
} }
@ -112,7 +112,7 @@ void Entry::setChatListExistence(bool exists) {
} }
} }
TimeId Entry::adjustChatListTimeId() const { TimeId Entry::adjustedChatListTimeId() const {
return chatListTimeId(); return chatListTimeId();
} }
@ -145,13 +145,11 @@ PositionChange Entry::adjustByPosInChatList(Mode list) {
} }
void Entry::setChatListTimeId(TimeId date) { void Entry::setChatListTimeId(TimeId date) {
if (_timeId && _timeId >= date) {
if (!inChatList(Dialogs::Mode::All)) {
return;
}
}
_timeId = date; _timeId = date;
updateChatListSortPosition(); updateChatListSortPosition();
if (const auto folder = this->folder()) {
folder->updateChatListSortPosition();
}
} }
int Entry::posInChatList(Dialogs::Mode list) const { int Entry::posInChatList(Dialogs::Mode list) const {

View File

@ -79,6 +79,7 @@ public:
void setChatListTimeId(TimeId date); void setChatListTimeId(TimeId date);
virtual void updateChatListExistence(); virtual void updateChatListExistence();
bool needUpdateInChatList() const; bool needUpdateInChatList() const;
virtual TimeId adjustedChatListTimeId() const;
virtual bool toImportant() const = 0; virtual bool toImportant() const = 0;
virtual bool shouldBeInChatList() const = 0; virtual bool shouldBeInChatList() const = 0;
@ -92,6 +93,9 @@ public:
virtual const base::flat_set<QString> &chatListNameWords() const = 0; virtual const base::flat_set<QString> &chatListNameWords() const = 0;
virtual const base::flat_set<QChar> &chatListFirstLetters() const = 0; virtual const base::flat_set<QChar> &chatListFirstLetters() const = 0;
virtual bool folderKnown() const {
return true;
}
virtual Data::Folder *folder() const { virtual Data::Folder *folder() const {
return nullptr; return nullptr;
} }
@ -119,7 +123,6 @@ public:
mutable Text lastItemTextCache; mutable Text lastItemTextCache;
private: private:
virtual TimeId adjustChatListTimeId() const;
virtual void changedInChatListHook(Mode list, bool added); virtual void changedInChatListHook(Mode list, bool added);
virtual void changedChatListPinHook(); virtual void changedChatListPinHook();

View File

@ -629,6 +629,9 @@ HistoryItem *History::addNewMessage(
setLastMessage(item); setLastMessage(item);
if (type == NewMessageUnread) { if (type == NewMessageUnread) {
newItemAdded(item); newItemAdded(item);
if (!folderKnown()) {
session().api().requestDialogEntry(this);
}
} }
return item; return item;
} }
@ -1806,8 +1809,12 @@ std::shared_ptr<AdminLog::LocalIdManager> History::adminLogIdManager() {
return result; return result;
} }
bool History::folderKnown() const {
return _folder.has_value();
}
Data::Folder *History::folder() const { Data::Folder *History::folder() const {
return _folder; return _folder.value_or(nullptr);
} }
void History::setFolder( void History::setFolder(
@ -1824,36 +1831,41 @@ void History::clearFolder() {
} }
void History::setFolderPointer(Data::Folder *folder) { void History::setFolderPointer(Data::Folder *folder) {
using Mode = Dialogs::Mode;
if (_folder == folder) { if (_folder == folder) {
return; return;
} }
using Mode = Dialogs::Mode; const auto wasKnown = folderKnown();
const auto wasAll = inChatList(Mode::All); const auto wasInAll = inChatList(Mode::All);
const auto wasImportant = wasAll && inChatList(Mode::Important); const auto wasInImportant = wasInAll && inChatList(Mode::Important);
if (wasAll) { if (wasInAll) {
removeFromChatList(Mode::All); removeFromChatList(Mode::All);
if (wasImportant) { if (wasInImportant) {
removeFromChatList(Mode::Important); removeFromChatList(Mode::Important);
} }
} }
const auto was = std::exchange(_folder, folder); const auto was = _folder.value_or(nullptr);
_folder = folder;
if (was) { if (was) {
was->unregisterOne(this); was->unregisterOne(this);
} }
if (wasAll) { if (wasInAll) {
addToChatList(Mode::All); addToChatList(Mode::All);
if (wasImportant) { if (wasInImportant) {
addToChatList(Mode::Important); addToChatList(Mode::Important);
} }
owner().chatsListChanged(was); owner().chatsListChanged(was);
owner().chatsListChanged(_folder); owner().chatsListChanged(folder);
} else if (!wasKnown) {
updateChatListSortPosition();
} }
if (_folder) { if (folder) {
_folder->registerOne(this); folder->registerOne(this);
} }
} }
TimeId History::adjustChatListTimeId() const { TimeId History::adjustedChatListTimeId() const {
const auto result = chatListTimeId(); const auto result = chatListTimeId();
if (const auto draft = cloudDraft()) { if (const auto draft = cloudDraft()) {
if (!Data::draftIsNull(draft) && !session().supportMode()) { if (!Data::draftIsNull(draft) && !session().supportMode()) {
@ -2415,7 +2427,7 @@ bool History::useProxyPromotion() const {
} }
bool History::shouldBeInChatList() const { bool History::shouldBeInChatList() const {
if (peer->migrateTo() || folder() != nullptr) { if (peer->migrateTo() || !folderKnown()) {
return false; return false;
} else if (isPinnedDialog()) { } else if (isPinnedDialog()) {
return true; return true;

View File

@ -323,6 +323,7 @@ public:
std::shared_ptr<AdminLog::LocalIdManager> adminLogIdManager(); std::shared_ptr<AdminLog::LocalIdManager> adminLogIdManager();
bool folderKnown() const override;
Data::Folder *folder() const override; Data::Folder *folder() const override;
void setFolder( void setFolder(
not_null<Data::Folder*> folder, not_null<Data::Folder*> folder,
@ -416,7 +417,7 @@ private:
not_null<Element*> view); not_null<Element*> view);
void removeNotification(not_null<HistoryItem*> item); void removeNotification(not_null<HistoryItem*> item);
TimeId adjustChatListTimeId() const override; TimeId adjustedChatListTimeId() const override;
void changedInChatListHook(Dialogs::Mode list, bool added) override; void changedInChatListHook(Dialogs::Mode list, bool added) override;
void changedChatListPinHook() override; void changedChatListPinHook() override;
@ -476,7 +477,7 @@ private:
bool _loadedAtTop = false; bool _loadedAtTop = false;
bool _loadedAtBottom = true; bool _loadedAtBottom = true;
Data::Folder *_folder = nullptr; std::optional<Data::Folder*> _folder;
std::optional<MsgId> _inboxReadBefore; std::optional<MsgId> _inboxReadBefore;
std::optional<MsgId> _outboxReadBefore; std::optional<MsgId> _outboxReadBefore;