mirror of https://github.com/procxx/kepka.git
Improve export history pagination.
This commit is contained in:
parent
cef50e5f52
commit
0ef7503917
|
@ -313,6 +313,11 @@ a.block_link:hover {
|
||||||
padding-top: 4px;
|
padding-top: 4px;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
|
.pagination {
|
||||||
|
text-align: center;
|
||||||
|
padding: 20px;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
.section.calls {
|
.section.calls {
|
||||||
background-image: url(../images/section_calls.png);
|
background-image: url(../images/section_calls.png);
|
||||||
|
|
|
@ -18,7 +18,10 @@ namespace Export {
|
||||||
namespace Output {
|
namespace Output {
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
constexpr auto kMessagesInFile = 1000;
|
#ifndef _DEBUG
|
||||||
|
#error test
|
||||||
|
#endif
|
||||||
|
constexpr auto kMessagesInFile = 50;
|
||||||
constexpr auto kPersonalUserpicSize = 90;
|
constexpr auto kPersonalUserpicSize = 90;
|
||||||
constexpr auto kEntryUserpicSize = 48;
|
constexpr auto kEntryUserpicSize = 48;
|
||||||
constexpr auto kServiceMessagePhotoSize = 60;
|
constexpr auto kServiceMessagePhotoSize = 60;
|
||||||
|
@ -1973,6 +1976,7 @@ Result HtmlWriter::writeChatStart(const Data::DialogInfo &data) {
|
||||||
const auto digits = Data::NumberToString(_dialogsCount - 1).size();
|
const auto digits = Data::NumberToString(_dialogsCount - 1).size();
|
||||||
const auto number = Data::NumberToString(++_dialogIndex, digits, '0');
|
const auto number = Data::NumberToString(++_dialogIndex, digits, '0');
|
||||||
_chat = fileWithRelativePath(data.relativePath + messagesFile(0));
|
_chat = fileWithRelativePath(data.relativePath + messagesFile(0));
|
||||||
|
_chatFileEmpty = true;
|
||||||
_messagesCount = 0;
|
_messagesCount = 0;
|
||||||
_dateMessageId = 0;
|
_dateMessageId = 0;
|
||||||
_lastMessageInfo = nullptr;
|
_lastMessageInfo = nullptr;
|
||||||
|
@ -1980,38 +1984,43 @@ Result HtmlWriter::writeChatStart(const Data::DialogInfo &data) {
|
||||||
return Result::Success();
|
return Result::Success();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Result HtmlWriter::writeChatOpening(int index) {
|
||||||
|
const auto name = (_dialog.name.isEmpty()
|
||||||
|
&& _dialog.lastName.isEmpty())
|
||||||
|
? QByteArray("Deleted Account")
|
||||||
|
: (_dialog.name + ' ' + _dialog.lastName);
|
||||||
|
auto block = _chat->pushHeader(
|
||||||
|
name,
|
||||||
|
_dialogsRelativePath);
|
||||||
|
block.append(_chat->pushDiv("page_body chat_page"));
|
||||||
|
block.append(_chat->pushDiv("history"));
|
||||||
|
if (index > 0) {
|
||||||
|
const auto previousPath = messagesFile(index - 1);
|
||||||
|
block.append(_chat->pushTag("a", {
|
||||||
|
{ "class", "pagination block_link" },
|
||||||
|
{ "href", previousPath.toUtf8() }
|
||||||
|
}));
|
||||||
|
block.append("Previous messages part");
|
||||||
|
block.append(_chat->popTag());
|
||||||
|
}
|
||||||
|
return _chat->writeBlock(block);
|
||||||
|
}
|
||||||
|
|
||||||
Result HtmlWriter::writeChatSlice(const Data::MessagesSlice &data) {
|
Result HtmlWriter::writeChatSlice(const Data::MessagesSlice &data) {
|
||||||
Expects(_chat != nullptr);
|
Expects(_chat != nullptr);
|
||||||
Expects(!data.list.empty());
|
Expects(!data.list.empty());
|
||||||
|
|
||||||
if (_chat->empty()) {
|
auto oldIndex = (_messagesCount / kMessagesInFile);
|
||||||
const auto name = (_dialog.name.isEmpty()
|
|
||||||
&& _dialog.lastName.isEmpty())
|
|
||||||
? QByteArray("Deleted Account")
|
|
||||||
: (_dialog.name + ' ' + _dialog.lastName);
|
|
||||||
auto block = _chat->pushHeader(
|
|
||||||
name,
|
|
||||||
_dialogsRelativePath);
|
|
||||||
block.append(_chat->pushDiv("page_body chat_page"));
|
|
||||||
block.append(_chat->pushDiv("history"));
|
|
||||||
if (const auto result = _chat->writeBlock(block); !result) {
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const auto wasIndex = (_messagesCount / kMessagesInFile);
|
|
||||||
_messagesCount += data.list.size();
|
|
||||||
const auto nowIndex = (_messagesCount / kMessagesInFile);
|
|
||||||
if (nowIndex != wasIndex) {
|
|
||||||
if (const auto result = switchToNextChatFile(nowIndex); !result) {
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
auto previous = _lastMessageInfo.get();
|
auto previous = _lastMessageInfo.get();
|
||||||
auto saved = MessageInfo();
|
auto saved = base::optional<MessageInfo>();
|
||||||
auto block = QByteArray();
|
auto block = QByteArray();
|
||||||
for (const auto &message : data.list) {
|
for (const auto &message : data.list) {
|
||||||
|
if (_chatFileEmpty) {
|
||||||
|
if (const auto result = writeChatOpening(oldIndex); !result) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
_chatFileEmpty = false;
|
||||||
|
}
|
||||||
const auto date = message.date;
|
const auto date = message.date;
|
||||||
if (DisplayDate(date, previous ? previous->date : 0)) {
|
if (DisplayDate(date, previous ? previous->date : 0)) {
|
||||||
block.append(_chat->pushServiceMessage(
|
block.append(_chat->pushServiceMessage(
|
||||||
|
@ -2028,10 +2037,29 @@ Result HtmlWriter::writeChatSlice(const Data::MessagesSlice &data) {
|
||||||
data.peers,
|
data.peers,
|
||||||
_environment.internalLinksDomain);
|
_environment.internalLinksDomain);
|
||||||
block.append(content);
|
block.append(content);
|
||||||
saved = info;
|
|
||||||
previous = &saved;
|
++_messagesCount;
|
||||||
|
const auto newIndex = (_messagesCount / kMessagesInFile);
|
||||||
|
if (oldIndex != newIndex) {
|
||||||
|
if (const auto result = _chat->writeBlock(block); !result) {
|
||||||
|
return result;
|
||||||
|
} else if (const auto next = switchToNextChatFile(newIndex)) {
|
||||||
|
block = QByteArray();
|
||||||
|
_lastMessageInfo = nullptr;
|
||||||
|
previous = nullptr;
|
||||||
|
saved = base::none;
|
||||||
|
oldIndex = newIndex;
|
||||||
|
} else {
|
||||||
|
return next;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
saved = info;
|
||||||
|
previous = &*saved;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (saved) {
|
||||||
|
_lastMessageInfo = std::make_unique<MessageInfo>(*saved);
|
||||||
}
|
}
|
||||||
_lastMessageInfo = std::make_unique<MessageInfo>(saved);
|
|
||||||
return _chat->writeBlock(block);
|
return _chat->writeBlock(block);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2138,7 +2166,7 @@ void HtmlWriter::pushSection(
|
||||||
Result HtmlWriter::writeSections() {
|
Result HtmlWriter::writeSections() {
|
||||||
Expects(_summary != nullptr);
|
Expects(_summary != nullptr);
|
||||||
|
|
||||||
if (!_haveSections && _summaryNeedDivider) {
|
if (!_haveSections) {
|
||||||
auto block = _summary->pushDiv(
|
auto block = _summary->pushDiv(
|
||||||
_summaryNeedDivider ? "sections with_divider" : "sections");
|
_summaryNeedDivider ? "sections with_divider" : "sections");
|
||||||
if (const auto result = _summary->writeBlock(block); !result) {
|
if (const auto result = _summary->writeBlock(block); !result) {
|
||||||
|
@ -2167,27 +2195,19 @@ Result HtmlWriter::switchToNextChatFile(int index) {
|
||||||
|
|
||||||
const auto nextPath = messagesFile(index);
|
const auto nextPath = messagesFile(index);
|
||||||
auto next = _chat->pushTag("a", {
|
auto next = _chat->pushTag("a", {
|
||||||
{ "class", "pagination" },
|
{ "class", "pagination block_link" },
|
||||||
{ "href", nextPath.toUtf8() }
|
{ "href", nextPath.toUtf8() }
|
||||||
});
|
});
|
||||||
next.append("Next messages part");
|
next.append("Next messages part");
|
||||||
next.append(_chat->popTag());
|
next.append(_chat->popTag());
|
||||||
if (const auto result = _chat->writeBlock(next); !result) {
|
if (const auto result = _chat->writeBlock(next); !result) {
|
||||||
return result;
|
return result;
|
||||||
|
} else if (const auto end = _chat->close(); !end) {
|
||||||
|
return end;
|
||||||
}
|
}
|
||||||
_chat = fileWithRelativePath(_dialog.relativePath + nextPath);
|
_chat = fileWithRelativePath(_dialog.relativePath + nextPath);
|
||||||
auto block = _chat->pushHeader(
|
_chatFileEmpty = true;
|
||||||
_dialog.name + ' ' + _dialog.lastName,
|
return Result::Success();
|
||||||
_dialogsRelativePath);
|
|
||||||
block.append(_chat->pushDiv("page_body chat_page"));
|
|
||||||
block.append(_chat->pushDiv("history"));
|
|
||||||
block.append(_chat->pushTag("a", {
|
|
||||||
{ "class", "pagination" },
|
|
||||||
{ "href", nextPath.toUtf8() }
|
|
||||||
}));
|
|
||||||
block.append("Previous messages part");
|
|
||||||
block.append(_chat->popTag());
|
|
||||||
return _chat->writeBlock(block);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Result HtmlWriter::finish() {
|
Result HtmlWriter::finish() {
|
||||||
|
|
|
@ -112,6 +112,7 @@ private:
|
||||||
const QByteArray &about,
|
const QByteArray &about,
|
||||||
const QString &fileName);
|
const QString &fileName);
|
||||||
[[nodiscard]] Result writeChatStart(const Data::DialogInfo &data);
|
[[nodiscard]] Result writeChatStart(const Data::DialogInfo &data);
|
||||||
|
[[nodiscard]] Result writeChatOpening(int index);
|
||||||
[[nodiscard]] Result writeChatSlice(const Data::MessagesSlice &data);
|
[[nodiscard]] Result writeChatSlice(const Data::MessagesSlice &data);
|
||||||
[[nodiscard]] Result writeChatEnd();
|
[[nodiscard]] Result writeChatEnd();
|
||||||
[[nodiscard]] Result writeChatsEnd();
|
[[nodiscard]] Result writeChatsEnd();
|
||||||
|
@ -162,6 +163,7 @@ private:
|
||||||
int _dateMessageId = 0;
|
int _dateMessageId = 0;
|
||||||
std::unique_ptr<Wrap> _chats;
|
std::unique_ptr<Wrap> _chats;
|
||||||
std::unique_ptr<Wrap> _chat;
|
std::unique_ptr<Wrap> _chat;
|
||||||
|
bool _chatFileEmpty = false;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue