2022-07-25 15:07:19 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
import QtQuick.Controls 2.14
|
|
|
|
import QtQuick.Layouts 1.14
|
2021-09-28 15:04:06 +00:00
|
|
|
|
2022-07-13 12:29:38 +00:00
|
|
|
import StatusQ.Core 0.1
|
2022-08-23 14:57:37 +00:00
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
2022-07-13 12:29:38 +00:00
|
|
|
|
2021-09-28 15:04:06 +00:00
|
|
|
import utils 1.0
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared.status 1.0
|
2021-12-08 21:20:43 +00:00
|
|
|
import shared.stores 1.0
|
2021-03-31 19:14:09 +00:00
|
|
|
// TODO move Contact into shared to get rid of that import
|
2022-03-08 18:49:33 +00:00
|
|
|
import AppLayouts.Chat.controls 1.0
|
2021-02-08 12:21:23 +00:00
|
|
|
|
2022-12-01 23:04:28 +00:00
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
|
2021-02-08 12:21:23 +00:00
|
|
|
Item {
|
|
|
|
id: root
|
2022-01-04 12:06:05 +00:00
|
|
|
|
2022-09-16 08:30:08 +00:00
|
|
|
property var rootStore
|
2022-01-04 12:06:05 +00:00
|
|
|
property var contactsStore
|
2022-09-16 08:30:08 +00:00
|
|
|
property string communityId
|
2022-01-04 12:06:05 +00:00
|
|
|
|
2021-02-08 12:21:23 +00:00
|
|
|
property string filterText: ""
|
|
|
|
property bool expanded: true
|
2021-03-31 19:14:09 +00:00
|
|
|
property bool showCheckbox: false
|
2021-05-17 09:56:55 +00:00
|
|
|
property bool hideCommunityMembers: false
|
2021-03-31 19:14:09 +00:00
|
|
|
property var pubKeys: ([])
|
2022-07-25 13:22:09 +00:00
|
|
|
|
2022-07-25 15:07:19 +00:00
|
|
|
readonly property alias count: contactListView.count
|
|
|
|
|
2021-02-08 12:21:23 +00:00
|
|
|
signal contactClicked(var contact)
|
|
|
|
|
|
|
|
function matchesAlias(name, filter) {
|
|
|
|
let parts = name.split(" ")
|
|
|
|
return parts.some(p => p.startsWith(filter))
|
|
|
|
}
|
|
|
|
|
2022-07-25 15:07:19 +00:00
|
|
|
implicitWidth: contactListView.implicitWidth + contactListView.margins
|
2022-07-25 13:22:09 +00:00
|
|
|
implicitHeight: visible ? Math.min(contactListView.contentHeight, (expanded ? 320 : 192)) : 0
|
|
|
|
|
2022-07-14 11:03:36 +00:00
|
|
|
StatusListView {
|
|
|
|
id: contactListView
|
2022-10-25 18:39:21 +00:00
|
|
|
objectName: "ExistingContacts_ListView"
|
2021-02-08 12:21:23 +00:00
|
|
|
anchors.fill: parent
|
2022-07-25 15:07:19 +00:00
|
|
|
rightMargin: 0
|
2022-08-23 14:57:37 +00:00
|
|
|
leftMargin: 0
|
|
|
|
spacing: Style.current.padding
|
2021-02-08 12:21:23 +00:00
|
|
|
|
2022-12-01 23:04:28 +00:00
|
|
|
model: SortFilterProxyModel {
|
|
|
|
sourceModel: root.contactsStore.myContactsModel
|
|
|
|
filters: [
|
|
|
|
ExpressionFilter {
|
|
|
|
expression: {
|
|
|
|
root.filterText
|
|
|
|
root.hideCommunityMembers
|
|
|
|
root.communityId
|
|
|
|
|
|
|
|
if (!model.isContact || model.isBlocked)
|
|
|
|
return false
|
|
|
|
|
|
|
|
const filter = root.filterText.toLowerCase()
|
|
|
|
const filterAccepted = root.filterText === ""
|
|
|
|
|| root.matchesAlias(model.alias.toLowerCase(), filter)
|
|
|
|
|| model.displayName.toLowerCase().includes(filter)
|
|
|
|
|| model.ensName.toLowerCase().includes(filter)
|
|
|
|
|| model.localNickname.toLowerCase().includes(filter)
|
|
|
|
|| model.pubKey.toLowerCase().includes(filter)
|
|
|
|
|
|
|
|
if (!filterAccepted)
|
|
|
|
return false
|
|
|
|
|
|
|
|
return !root.hideCommunityMembers ||
|
|
|
|
!root.rootStore.communityHasMember(root.communityId, model.pubKey)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2022-08-23 14:57:37 +00:00
|
|
|
delegate: StatusMemberListItem {
|
2022-07-25 13:22:09 +00:00
|
|
|
width: contactListView.availableWidth
|
2023-04-19 16:48:57 +00:00
|
|
|
pubKey: model.isEnsVerified ? "" : Utils.getCompressedPk(model.pubKey)
|
2022-07-14 11:03:36 +00:00
|
|
|
isContact: model.isContact
|
2022-08-23 14:57:37 +00:00
|
|
|
status: model.onlineStatus
|
|
|
|
height: visible ? implicitHeight : 0
|
|
|
|
color: sensor.containsMouse ? Style.current.backgroundHover : Style.current.transparent
|
2022-12-05 09:56:44 +00:00
|
|
|
nickName: model.localNickname
|
|
|
|
userName: ProfileUtils.displayName("", model.ensName, model.displayName, model.alias)
|
2022-08-11 11:55:08 +00:00
|
|
|
asset.name: model.icon
|
2022-09-16 08:30:08 +00:00
|
|
|
asset.isImage: (asset.name !== "")
|
|
|
|
asset.isLetterIdenticon: (asset.name === "")
|
2022-08-11 11:55:08 +00:00
|
|
|
asset.width: 40
|
|
|
|
asset.height: 40
|
2022-09-06 15:06:33 +00:00
|
|
|
asset.color: Utils.colorForColorId(model.colorId)
|
2023-04-19 16:48:57 +00:00
|
|
|
ringSettings.ringSpecModel: model.colorHash
|
2022-08-23 14:57:37 +00:00
|
|
|
statusListItemIcon.badge.border.color: Theme.palette.baseColor4
|
|
|
|
statusListItemIcon.badge.implicitHeight: 14 // 10 px + 2 px * 2 borders
|
|
|
|
statusListItemIcon.badge.implicitWidth: 14 // 10 px + 2 px * 2 borders
|
|
|
|
|
|
|
|
onClicked: {
|
2022-07-25 13:22:09 +00:00
|
|
|
root.contactClicked(model);
|
2021-02-08 12:21:23 +00:00
|
|
|
}
|
2022-08-23 14:57:37 +00:00
|
|
|
|
|
|
|
StatusCheckBox {
|
|
|
|
id: contactCheckbox
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.right: parent.right
|
|
|
|
checked: root.pubKeys.indexOf(model.pubKey) > -1
|
|
|
|
onClicked: {
|
|
|
|
root.contactClicked(model);
|
|
|
|
}
|
|
|
|
}
|
2021-02-08 12:21:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|