enhance performance when marking as read, unread
This commit is contained in:
parent
fdce396e94
commit
d866378dfd
@ -97,7 +97,6 @@ class DatabaseQueries {
|
|||||||
const QList<Message>& messages,
|
const QList<Message>& messages,
|
||||||
int account_id,
|
int account_id,
|
||||||
bool* ok = nullptr);
|
bool* ok = nullptr);
|
||||||
|
|
||||||
static ArticleCounts getImportantMessageCounts(const QSqlDatabase& db, int account_id, bool* ok = nullptr);
|
static ArticleCounts getImportantMessageCounts(const QSqlDatabase& db, int account_id, bool* ok = nullptr);
|
||||||
static int getUnreadMessageCounts(const QSqlDatabase& db, int account_id, bool* ok = nullptr);
|
static int getUnreadMessageCounts(const QSqlDatabase& db, int account_id, bool* ok = nullptr);
|
||||||
static ArticleCounts getMessageCountsForBin(const QSqlDatabase& db, int account_id, bool* ok = nullptr);
|
static ArticleCounts getMessageCountsForBin(const QSqlDatabase& db, int account_id, bool* ok = nullptr);
|
||||||
|
@ -90,6 +90,14 @@ void LabelsNode::updateCounts(bool including_total_count) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Label* LabelsNode::labelById(const QString& custom_id) {
|
||||||
|
auto chi = childItems();
|
||||||
|
|
||||||
|
return qobject_cast<Label*>(boolinq::from(chi).firstOrDefault([custom_id](RootItem* it) {
|
||||||
|
return it->customId() == custom_id;
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
QList<Label*> LabelsNode::labels() const {
|
QList<Label*> LabelsNode::labels() const {
|
||||||
auto list = boolinq::from(childItems())
|
auto list = boolinq::from(childItems())
|
||||||
.select([](RootItem* it) {
|
.select([](RootItem* it) {
|
||||||
|
@ -22,6 +22,8 @@ class LabelsNode : public RootItem {
|
|||||||
virtual int countOfAllMessages() const;
|
virtual int countOfAllMessages() const;
|
||||||
virtual void updateCounts(bool including_total_count);
|
virtual void updateCounts(bool including_total_count);
|
||||||
|
|
||||||
|
Label* labelById(const QString& custom_id);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void createLabel();
|
void createLabel();
|
||||||
|
|
||||||
|
@ -665,25 +665,25 @@ QStringList ServiceRoot::textualFeedIds(const QList<Feed*>& feeds) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
QStringList ServiceRoot::customIDsOfMessages(const QList<ImportanceChange>& changes) {
|
QStringList ServiceRoot::customIDsOfMessages(const QList<ImportanceChange>& changes) {
|
||||||
QStringList list;
|
QSet<QString> list;
|
||||||
list.reserve(changes.size());
|
list.reserve(changes.size());
|
||||||
|
|
||||||
for (const auto& change : changes) {
|
for (const auto& change : changes) {
|
||||||
list.append(change.first.m_customId);
|
list.insert(change.first.m_customId);
|
||||||
}
|
}
|
||||||
|
|
||||||
return list;
|
return list.values();
|
||||||
}
|
}
|
||||||
|
|
||||||
QStringList ServiceRoot::customIDsOfMessages(const QList<Message>& messages) {
|
QStringList ServiceRoot::customIDsOfMessages(const QList<Message>& messages) {
|
||||||
QStringList list;
|
QSet<QString> list;
|
||||||
list.reserve(messages.size());
|
list.reserve(messages.size());
|
||||||
|
|
||||||
for (const Message& message : messages) {
|
for (const Message& message : messages) {
|
||||||
list.append(message.m_customId);
|
list.insert(message.m_customId);
|
||||||
}
|
}
|
||||||
|
|
||||||
return list;
|
return list.values();
|
||||||
}
|
}
|
||||||
|
|
||||||
int ServiceRoot::accountId() const {
|
int ServiceRoot::accountId() const {
|
||||||
@ -788,13 +788,26 @@ bool ServiceRoot::onAfterSetMessagesRead(RootItem* selected_item,
|
|||||||
to_update << selected_item;
|
to_update << selected_item;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
updateCounts(true);
|
|
||||||
|
|
||||||
auto linq = boolinq::from(messages);
|
auto linq = boolinq::from(messages);
|
||||||
|
|
||||||
// TODO: pokračovat
|
|
||||||
|
|
||||||
// 1. Feeds of messages.
|
// 1. Feeds of messages.
|
||||||
|
auto feed_ids = linq
|
||||||
|
.select([](const Message& msg) {
|
||||||
|
return msg.m_feedId;
|
||||||
|
})
|
||||||
|
.distinct()
|
||||||
|
.toStdList();
|
||||||
|
|
||||||
|
for (const QString& feed_id : feed_ids) {
|
||||||
|
auto* feed = getItemFromSubTree([feed_id](const RootItem* it) {
|
||||||
|
return it->kind() == RootItem::Kind::Feed && it->customId() == feed_id;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (feed != nullptr) {
|
||||||
|
feed->updateCounts(false);
|
||||||
|
to_update << feed;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 2. Important.
|
// 2. Important.
|
||||||
if (importantNode() != nullptr) {
|
if (importantNode() != nullptr) {
|
||||||
@ -813,8 +826,19 @@ bool ServiceRoot::onAfterSetMessagesRead(RootItem* selected_item,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 4. Labels assigned.
|
// 4. Labels assigned.
|
||||||
|
if (labelsNode() != nullptr) {
|
||||||
|
auto db = qApp->database()->driver()->connection(metaObject()->className());
|
||||||
|
auto lbls = DatabaseQueries::getCountOfAssignedLabelsToMessages(db, messages, accountId());
|
||||||
|
|
||||||
to_update << getSubTree();
|
for (const QString& lbl_custom_id : lbls.keys()) {
|
||||||
|
auto* lbl = labelsNode()->labelById(lbl_custom_id);
|
||||||
|
|
||||||
|
if (lbl != nullptr) {
|
||||||
|
lbl->setCountOfUnreadMessages(lbls.value(lbl_custom_id).m_unread);
|
||||||
|
to_update << lbl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
itemChanged(to_update);
|
itemChanged(to_update);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user