Fix lagging chat list update in support.

This commit is contained in:
John Preston 2018-12-30 13:16:50 +04:00
parent 30e8f17b37
commit c11b977f1d
10 changed files with 18 additions and 23 deletions

View File

@ -73,6 +73,7 @@ void Entry::updateChatListSortPosition() {
if (Auth().supportMode() if (Auth().supportMode()
&& _sortKeyInChatList != 0 && _sortKeyInChatList != 0
&& Auth().settings().supportFixChatsOrder()) { && Auth().settings().supportFixChatsOrder()) {
updateChatListEntry();
return; return;
} }
_sortKeyInChatList = useProxyPromotion() _sortKeyInChatList = useProxyPromotion()
@ -199,6 +200,10 @@ void Entry::updateChatListEntry() const {
mainChatListLink(Mode::Important)); mainChatListLink(Mode::Important));
} }
} }
if (Auth().supportMode()
&& !Auth().settings().supportAllSearchResults()) {
main->repaintDialogRow({ _key, FullMsgId() });
}
} }
} }

View File

@ -1346,13 +1346,8 @@ void DialogsInner::repaintDialogRow(
} }
} }
void DialogsInner::repaintDialogRow( void DialogsInner::repaintDialogRow(Dialogs::RowDescriptor row) {
not_null<History*> history, updateDialogRow(row);
MsgId messageId) {
updateDialogRow({
history,
FullMsgId(history->channelId(), messageId)
});
} }
void DialogsInner::updateSearchResult(not_null<PeerData*> peer) { void DialogsInner::updateSearchResult(not_null<PeerData*> peer) {
@ -1439,8 +1434,7 @@ void DialogsInner::updateDialogRow(
const auto add = searchedOffset(); const auto add = searchedOffset();
auto index = 0; auto index = 0;
for (const auto &result : _searchResults) { for (const auto &result : _searchResults) {
auto item = result->item(); if (isSearchResultActive(result.get(), row)) {
if (item->fullId() == row.fullId) {
updateRow(add + index * st::dialogsRowHeight); updateRow(add + index * st::dialogsRowHeight);
break; break;
} }

View File

@ -55,7 +55,7 @@ public:
void createDialog(Dialogs::Key key); void createDialog(Dialogs::Key key);
void removeDialog(Dialogs::Key key); void removeDialog(Dialogs::Key key);
void repaintDialogRow(Dialogs::Mode list, not_null<Dialogs::Row*> row); void repaintDialogRow(Dialogs::Mode list, not_null<Dialogs::Row*> row);
void repaintDialogRow(not_null<History*> history, MsgId messageId); void repaintDialogRow(Dialogs::RowDescriptor row);
void dragLeft(); void dragLeft();

View File

@ -319,10 +319,8 @@ void DialogsWidget::repaintDialogRow(
_inner->repaintDialogRow(list, row); _inner->repaintDialogRow(list, row);
} }
void DialogsWidget::repaintDialogRow( void DialogsWidget::repaintDialogRow(Dialogs::RowDescriptor row) {
not_null<History*> history, _inner->repaintDialogRow(row);
MsgId messageId) {
_inner->repaintDialogRow(history, messageId);
} }
void DialogsWidget::dialogsToUp() { void DialogsWidget::dialogsToUp() {

View File

@ -61,7 +61,7 @@ public:
void createDialog(Dialogs::Key key); void createDialog(Dialogs::Key key);
void removeDialog(Dialogs::Key key); void removeDialog(Dialogs::Key key);
void repaintDialogRow(Dialogs::Mode list, not_null<Dialogs::Row*> row); void repaintDialogRow(Dialogs::Mode list, not_null<Dialogs::Row*> row);
void repaintDialogRow(not_null<History*> history, MsgId messageId); void repaintDialogRow(Dialogs::RowDescriptor row);
void dialogsToUp(); void dialogsToUp();

View File

@ -1725,7 +1725,7 @@ void History::outboxRead(MsgId upTo) {
if (const auto last = lastMessage()) { if (const auto last = lastMessage()) {
if (last->out() && IsServerMsgId(last->id) && last->id <= upTo) { if (last->out() && IsServerMsgId(last->id) && last->id <= upTo) {
if (const auto main = App::main()) { if (const auto main = App::main()) {
main->repaintDialogRow(this, last->id); main->repaintDialogRow({ this, last->fullId() });
} }
} }
} }

View File

@ -217,7 +217,7 @@ ReplyKeyboard *HistoryItem::inlineReplyKeyboard() {
void HistoryItem::invalidateChatsListEntry() { void HistoryItem::invalidateChatsListEntry() {
if (const auto main = App::main()) { if (const auto main = App::main()) {
// #TODO feeds search results // #TODO feeds search results
main->repaintDialogRow(history(), id); main->repaintDialogRow({ history(), fullId() });
} }
// invalidate cache for drawInDialog // invalidate cache for drawInDialog

View File

@ -691,7 +691,7 @@ void HistoryService::updateDependentText() {
} }
if (const auto main = App::main()) { if (const auto main = App::main()) {
// #TODO feeds search results // #TODO feeds search results
main->repaintDialogRow(history(), id); main->repaintDialogRow({ history(), fullId() });
} }
App::historyUpdateDependent(this); App::historyUpdateDependent(this);
} }

View File

@ -2209,10 +2209,8 @@ void MainWidget::repaintDialogRow(
_dialogs->repaintDialogRow(list, row); _dialogs->repaintDialogRow(list, row);
} }
void MainWidget::repaintDialogRow( void MainWidget::repaintDialogRow(Dialogs::RowDescriptor row) {
not_null<History*> history, _dialogs->repaintDialogRow(row);
MsgId messageId) {
_dialogs->repaintDialogRow(history, messageId);
} }
void MainWidget::windowShown() { void MainWidget::windowShown() {

View File

@ -116,7 +116,7 @@ public:
void createDialog(Dialogs::Key key); void createDialog(Dialogs::Key key);
void removeDialog(Dialogs::Key key); void removeDialog(Dialogs::Key key);
void repaintDialogRow(Dialogs::Mode list, not_null<Dialogs::Row*> row); void repaintDialogRow(Dialogs::Mode list, not_null<Dialogs::Row*> row);
void repaintDialogRow(not_null<History*> history, MsgId messageId); void repaintDialogRow(Dialogs::RowDescriptor row);
void windowShown(); void windowShown();