parent
e097d2bfe7
commit
55a11f016e
|
@ -65,6 +65,9 @@ QtObject:
|
||||||
else:
|
else:
|
||||||
result = self.status.accounts.generateAlias(pk)
|
result = self.status.accounts.generateAlias(pk)
|
||||||
|
|
||||||
|
proc localNickname(self: CommunityMembersView, pk: string): string =
|
||||||
|
if self.status.chat.contacts.hasKey(pk):
|
||||||
|
result = self.status.chat.contacts[pk].localNickname
|
||||||
|
|
||||||
method data(self: CommunityMembersView, index: QModelIndex, role: int): QVariant =
|
method data(self: CommunityMembersView, index: QModelIndex, role: int): QVariant =
|
||||||
if not index.isValid:
|
if not index.isValid:
|
||||||
|
@ -79,6 +82,17 @@ QtObject:
|
||||||
of CommunityMembersRoles.PubKey: result = newQVariant(communityMemberPubkey)
|
of CommunityMembersRoles.PubKey: result = newQVariant(communityMemberPubkey)
|
||||||
of CommunityMembersRoles.Identicon: result = newQVariant(self.identicon(communityMemberPubkey))
|
of CommunityMembersRoles.Identicon: result = newQVariant(self.identicon(communityMemberPubkey))
|
||||||
|
|
||||||
|
proc rowData(self: CommunityMembersView, index: int, column: string): string {.slot.} =
|
||||||
|
if (index >= self.members.len):
|
||||||
|
return
|
||||||
|
let communityMemberPubkey = self.members[index]
|
||||||
|
case column:
|
||||||
|
of "alias": result = self.alias(communityMemberPubkey)
|
||||||
|
of "address": result = communityMemberPubkey
|
||||||
|
of "identicon": result = self.identicon(communityMemberPubkey)
|
||||||
|
of "localNickname": result = self.localNickname(communityMemberPubkey)
|
||||||
|
of "ensName": result = self.userName(communityMemberPubkey, self.alias(communityMemberPubkey))
|
||||||
|
|
||||||
method roleNames(self: CommunityMembersView): Table[int, string] =
|
method roleNames(self: CommunityMembersView): Table[int, string] =
|
||||||
{
|
{
|
||||||
CommunityMembersRoles.UserName.int:"userName",
|
CommunityMembersRoles.UserName.int:"userName",
|
||||||
|
|
|
@ -83,24 +83,30 @@ Item {
|
||||||
|
|
||||||
function populateSuggestions() {
|
function populateSuggestions() {
|
||||||
chatInput.suggestionsList.clear()
|
chatInput.suggestionsList.clear()
|
||||||
const len = chatsModel.suggestionList.rowCount()
|
|
||||||
|
|
||||||
idMap = {}
|
idMap = {}
|
||||||
|
|
||||||
|
let isCommunity = chatsModel.communities.activeCommunity.active
|
||||||
|
let dataSource = isCommunity ? chatsModel.communities.activeCommunity.members : chatsModel.suggestionList
|
||||||
|
|
||||||
|
const len = dataSource.rowCount()
|
||||||
for (let i = 0; i < len; i++) {
|
for (let i = 0; i < len; i++) {
|
||||||
const contactAddr = chatsModel.suggestionList.rowData(i, "address");
|
const contactAddr = dataSource.rowData(i, "address");
|
||||||
if(idMap[contactAddr]) continue;
|
if(idMap[contactAddr]) continue;
|
||||||
suggestionsObj.push({
|
suggestionsObj.push({
|
||||||
alias: chatsModel.suggestionList.rowData(i, "alias"),
|
alias: dataSource.rowData(i, "alias"),
|
||||||
ensName: chatsModel.suggestionList.rowData(i, "ensName"),
|
ensName: dataSource.rowData(i, "ensName"),
|
||||||
address: contactAddr,
|
address: contactAddr,
|
||||||
identicon: getProfileImage(contactAddr, false, false) || chatsModel.suggestionList.rowData(i, "identicon"),
|
identicon: getProfileImage(contactAddr, false, false) || dataSource.rowData(i, "identicon"),
|
||||||
localNickname: chatsModel.suggestionList.rowData(i, "localNickname")
|
localNickname: dataSource.rowData(i, "localNickname")
|
||||||
})
|
})
|
||||||
|
|
||||||
chatInput.suggestionsList.append(suggestionsObj[suggestionsObj.length - 1]);
|
chatInput.suggestionsList.append(suggestionsObj[suggestionsObj.length - 1]);
|
||||||
idMap[contactAddr] = true;
|
idMap[contactAddr] = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!isCommunity) return;
|
||||||
|
|
||||||
const len2 = chatsModel.messageView.messageList.rowCount();
|
const len2 = chatsModel.messageView.messageList.rowCount();
|
||||||
for (let f = 0; f < len2; f++) {
|
for (let f = 0; f < len2; f++) {
|
||||||
addSuggestionFromMessageList(f);
|
addSuggestionFromMessageList(f);
|
||||||
|
|
Loading…
Reference in New Issue