Show userid in completer

This commit is contained in:
Nicolas Werner 2020-11-24 19:06:31 +01:00
parent c07c326141
commit 37df79f796
3 changed files with 9 additions and 0 deletions

View File

@ -111,6 +111,11 @@ Popup {
color: model.index == popup.currentIndex ? colors.highlightedText : colors.text color: model.index == popup.currentIndex ? colors.highlightedText : colors.text
} }
Label {
text: "(" + model.userid + ")"
color: model.index == popup.currentIndex ? colors.highlightedText : colors.buttonText
}
} }
} }

View File

@ -23,6 +23,7 @@ UsersModel::roleNames() const
{CompletionModel::SearchRole2, "searchRole2"}, {CompletionModel::SearchRole2, "searchRole2"},
{Roles::DisplayName, "displayName"}, {Roles::DisplayName, "displayName"},
{Roles::AvatarUrl, "avatarUrl"}, {Roles::AvatarUrl, "avatarUrl"},
{Roles::UserID, "userid"},
}; };
} }
@ -44,6 +45,8 @@ UsersModel::data(const QModelIndex &index, int role) const
case Roles::AvatarUrl: case Roles::AvatarUrl:
return cache::avatarUrl(QString::fromStdString(room_id), return cache::avatarUrl(QString::fromStdString(room_id),
QString::fromStdString(roomMembers_[index.row()])); QString::fromStdString(roomMembers_[index.row()]));
case Roles::UserID:
return userids[index.row()];
} }
} }
return {}; return {};

View File

@ -9,6 +9,7 @@ public:
{ {
AvatarUrl = Qt::UserRole, AvatarUrl = Qt::UserRole,
DisplayName, DisplayName,
UserID,
}; };
UsersModel(const std::string &roomId, QObject *parent = nullptr); UsersModel(const std::string &roomId, QObject *parent = nullptr);