Skip to content
Snippets Groups Projects
Commit e18c3297 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

smartlist: prevent excessive updates to items during reselection

Only save the draft if it changes and filter for index on data
changed signals before updating the avatar.

Change-Id: Ia23a35b512249e4b7953e3a2cef2cedbda386e65
parent e165855e
No related branches found
No related tags found
No related merge requests found
...@@ -402,6 +402,12 @@ LRCInstance::setContentDraft(const QString& convUid, ...@@ -402,6 +402,12 @@ LRCInstance::setContentDraft(const QString& convUid,
const QString& content) const QString& content)
{ {
auto draftKey = accountId + "_" + convUid; auto draftKey = accountId + "_" + convUid;
// prevent a senseless dataChanged signal from the
// model if nothing has changed
if (contentDrafts_[draftKey] == content)
return;
contentDrafts_[draftKey] = content; contentDrafts_[draftKey] = content;
// this signal is only needed to update the current smartlist // this signal is only needed to update the current smartlist
Q_EMIT draftSaved(convUid); Q_EMIT draftSaved(convUid);
......
...@@ -54,14 +54,13 @@ ItemDelegate { ...@@ -54,14 +54,13 @@ ItemDelegate {
Connections { Connections {
target: root.ListView.view.model target: root.ListView.view.model
function onDataChanged(index) { function onDataChanged(idx) {
var model = root.ListView.view.model // TODO: currently the avatar dispaly mechanism requires
avatar.updateImage(URI === undefined ? // that each dataChanged signal is caught by and induces an
model.data(index, ConversationList.URI): // updateImage call per smartlist item. Once this is fixed
URI, // we can filter for the current delegate's index like:
PictureUid === undefined ? // if (idx.row !== index) return
model.data(index, ConversationList.PictureUid): avatar.updateImage(URI, PictureUid)
PictureUid)
} }
} }
......
...@@ -30,24 +30,21 @@ void ...@@ -30,24 +30,21 @@ void
SelectableListProxyModel::bindSourceModel(QAbstractListModel* model) SelectableListProxyModel::bindSourceModel(QAbstractListModel* model)
{ {
setSourceModel(model); setSourceModel(model);
connect( connect(sourceModel(),
sourceModel(), &QAbstractListModel::dataChanged,
&QAbstractListModel::dataChanged, this,
this, &SelectableListProxyModel::onModelUpdated,
[this] { updateSelection(); }, Qt::UniqueConnection);
Qt::UniqueConnection); connect(model,
connect( &QAbstractListModel::rowsInserted,
model, this,
&QAbstractListModel::rowsInserted, &SelectableListProxyModel::onModelUpdated,
this, Qt::UniqueConnection);
[this] { updateSelection(); }, connect(model,
Qt::UniqueConnection); &QAbstractListModel::rowsRemoved,
connect( this,
model, &SelectableListProxyModel::onModelTrimmed,
&QAbstractListModel::rowsRemoved, Qt::UniqueConnection);
this,
[this] { updateSelection(true); },
Qt::UniqueConnection);
connect(sourceModel(), connect(sourceModel(),
&QAbstractListModel::modelReset, &QAbstractListModel::modelReset,
this, this,
...@@ -152,6 +149,18 @@ SelectableListProxyModel::updateSelection(bool rowsRemoved) ...@@ -152,6 +149,18 @@ SelectableListProxyModel::updateSelection(bool rowsRemoved)
} }
} }
void
SelectableListProxyModel::onModelUpdated()
{
updateSelection();
}
void
SelectableListProxyModel::onModelTrimmed()
{
updateSelection(true);
}
SelectableListProxyGroupModel::SelectableListProxyGroupModel(QList<SelectableListProxyModel*> models, SelectableListProxyGroupModel::SelectableListProxyGroupModel(QList<SelectableListProxyModel*> models,
QObject* parent) QObject* parent)
: QObject(parent) : QObject(parent)
......
...@@ -52,6 +52,10 @@ public Q_SLOTS: ...@@ -52,6 +52,10 @@ public Q_SLOTS:
Q_SIGNALS: Q_SIGNALS:
void validSelectionChanged(); void validSelectionChanged();
private Q_SLOTS:
void onModelUpdated();
void onModelTrimmed();
private: private:
QPersistentModelIndex selectedSourceIndex_; QPersistentModelIndex selectedSourceIndex_;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment