mirror of https://github.com/procxx/kepka.git
fixed dialogs preloading on scroll
This commit is contained in:
parent
d874609816
commit
e0910bfb3e
|
@ -82,6 +82,8 @@ enum {
|
||||||
|
|
||||||
MediaViewImageSizeLimit = 10 * 1024 * 1024, // show up to 10mb jpg/png docs in mediaview
|
MediaViewImageSizeLimit = 10 * 1024 * 1024, // show up to 10mb jpg/png docs in mediaview
|
||||||
MaxZoomLevel = 7, // x8
|
MaxZoomLevel = 7, // x8
|
||||||
|
|
||||||
|
PreloadHeightsCount = 3, // when 3 screens to scroll left make a preload request
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
|
|
|
@ -1283,10 +1283,10 @@ void DialogsWidget::onListScroll() {
|
||||||
list.loadPeerPhotos(scroll.scrollTop());
|
list.loadPeerPhotos(scroll.scrollTop());
|
||||||
if (list.state() == DialogsListWidget::SearchedState) {
|
if (list.state() == DialogsListWidget::SearchedState) {
|
||||||
DialogsListWidget::SearchResults &res(list.searchList());
|
DialogsListWidget::SearchResults &res(list.searchList());
|
||||||
if (scroll.scrollTop() > res.size() * st::dlgHeight - 2 * scroll.height()) {
|
if (scroll.scrollTop() > res.size() * st::dlgHeight - PreloadHeightsCount * scroll.height()) {
|
||||||
onSearchMore(list.lastSearchId());
|
onSearchMore(list.lastSearchId());
|
||||||
}
|
}
|
||||||
} else if (scroll.scrollTop() > list.dialogsList().list.count * st::dlgHeight - scroll.height()) {
|
} else if (scroll.scrollTop() > list.dialogsList().list.count * st::dlgHeight - PreloadHeightsCount * scroll.height()) {
|
||||||
loadDialogs();
|
loadDialogs();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2094,7 +2094,7 @@ void HistoryWidget::loadMessages() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!histPreloading && (!hist->readyForWork() || _scroll.scrollTop() < 3 * _scroll.height())) {
|
if (!histPreloading && (!hist->readyForWork() || _scroll.scrollTop() < PreloadHeightsCount * _scroll.height())) {
|
||||||
MsgId min = hist->minMsgId();
|
MsgId min = hist->minMsgId();
|
||||||
int32 offset = 0, loadCount = min ? MessagesPerPage : MessagesFirstLoad;
|
int32 offset = 0, loadCount = min ? MessagesPerPage : MessagesFirstLoad;
|
||||||
if (!min && hist->activeMsgId) {
|
if (!min && hist->activeMsgId) {
|
||||||
|
@ -2125,7 +2125,7 @@ void HistoryWidget::loadMessagesDown() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!histPreloadingDown && hist->readyForWork() && (_scroll.scrollTop() + 3 * _scroll.height() > _scroll.scrollTopMax())) {
|
if (!histPreloadingDown && hist->readyForWork() && (_scroll.scrollTop() + PreloadHeightsCount * _scroll.height() > _scroll.scrollTopMax())) {
|
||||||
MsgId max = hist->maxMsgId();
|
MsgId max = hist->maxMsgId();
|
||||||
if (max) {
|
if (max) {
|
||||||
int32 loadCount = MessagesPerPage, offset = -loadCount;
|
int32 loadCount = MessagesPerPage, offset = -loadCount;
|
||||||
|
@ -2156,11 +2156,11 @@ void HistoryWidget::onListScroll() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hist->readyForWork() && (_scroll.scrollTop() + 3 * _scroll.height() > _scroll.scrollTopMax())) {
|
if (hist->readyForWork() && (_scroll.scrollTop() + PreloadHeightsCount * _scroll.height() > _scroll.scrollTopMax())) {
|
||||||
loadMessagesDown();
|
loadMessagesDown();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!hist->readyForWork() || _scroll.scrollTop() < 3 * _scroll.height()) {
|
if (!hist->readyForWork() || _scroll.scrollTop() < PreloadHeightsCount * _scroll.height()) {
|
||||||
loadMessages();
|
loadMessages();
|
||||||
} else {
|
} else {
|
||||||
checkUnreadLoaded(true);
|
checkUnreadLoaded(true);
|
||||||
|
|
Loading…
Reference in New Issue