2021-07-06 17:58:19 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
2022-07-14 11:03:36 +00:00
|
|
|
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
2022-05-20 12:53:40 +00:00
|
|
|
import StatusQ.Components 0.1
|
2022-07-14 11:03:36 +00:00
|
|
|
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared 1.0
|
|
|
|
import shared.panels 1.0
|
|
|
|
import shared.status 1.0
|
2023-05-19 16:07:50 +00:00
|
|
|
import shared.views.chat 1.0
|
2022-02-23 17:08:01 +00:00
|
|
|
import utils 1.0
|
|
|
|
|
2022-07-21 09:03:51 +00:00
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
|
2021-07-22 14:53:19 +00:00
|
|
|
Item {
|
|
|
|
id: root
|
2021-11-30 14:49:45 +00:00
|
|
|
|
2023-05-19 16:07:50 +00:00
|
|
|
property var store
|
2022-11-16 09:41:32 +00:00
|
|
|
property var usersModel
|
2022-02-23 17:08:01 +00:00
|
|
|
property string label
|
2021-07-06 17:58:19 +00:00
|
|
|
|
2022-02-23 17:08:01 +00:00
|
|
|
StatusBaseText {
|
2021-07-22 14:53:19 +00:00
|
|
|
id: titleText
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Style.current.padding
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Style.current.padding
|
2021-08-26 12:04:47 +00:00
|
|
|
opacity: (root.width > 58) ? 1.0 : 0.0
|
2021-07-22 14:53:19 +00:00
|
|
|
visible: (opacity > 0.1)
|
|
|
|
font.pixelSize: Style.current.primaryTextFontSize
|
2022-02-23 17:08:01 +00:00
|
|
|
font.weight: Font.Medium
|
|
|
|
color: Theme.palette.directColor1
|
|
|
|
text: root.label
|
2021-07-22 14:53:19 +00:00
|
|
|
}
|
2021-07-06 22:41:26 +00:00
|
|
|
|
2022-09-26 08:54:14 +00:00
|
|
|
Item {
|
2021-07-22 14:53:19 +00:00
|
|
|
anchors {
|
|
|
|
top: titleText.bottom
|
|
|
|
topMargin: Style.current.padding
|
2021-11-30 12:27:08 +00:00
|
|
|
left: parent.left
|
2022-09-12 16:00:30 +00:00
|
|
|
leftMargin: Style.current.halfPadding
|
2021-07-22 14:53:19 +00:00
|
|
|
right: parent.right
|
2022-09-12 16:00:30 +00:00
|
|
|
rightMargin: Style.current.halfPadding
|
2021-07-22 14:53:19 +00:00
|
|
|
bottom: parent.bottom
|
|
|
|
}
|
2022-07-14 11:03:36 +00:00
|
|
|
|
2022-09-26 08:54:14 +00:00
|
|
|
clip: true
|
|
|
|
|
|
|
|
StatusListView {
|
|
|
|
id: userListView
|
|
|
|
objectName: "userListPanel"
|
|
|
|
|
|
|
|
clip: false
|
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.bottomMargin: Style.current.bigPadding
|
|
|
|
displayMarginEnd: anchors.bottomMargin
|
|
|
|
|
|
|
|
model: SortFilterProxyModel {
|
2022-11-16 09:41:32 +00:00
|
|
|
sourceModel: root.usersModel
|
2022-09-26 08:54:14 +00:00
|
|
|
|
2023-04-19 16:48:57 +00:00
|
|
|
proxyRoles: ExpressionRole {
|
|
|
|
function displayNameProxy(nickname, ensName, displayName, aliasName) {
|
|
|
|
return ProfileUtils.displayName(nickname, ensName, displayName, aliasName)
|
|
|
|
}
|
|
|
|
name: "preferredDisplayName"
|
|
|
|
expression: displayNameProxy(model.localNickname, model.ensName, model.displayName, model.alias)
|
|
|
|
}
|
|
|
|
|
2022-09-26 08:54:14 +00:00
|
|
|
sorters: [
|
|
|
|
RoleSorter {
|
|
|
|
roleName: "onlineStatus"
|
|
|
|
sortOrder: Qt.DescendingOrder
|
|
|
|
},
|
|
|
|
StringSorter {
|
2023-04-19 16:48:57 +00:00
|
|
|
roleName: "preferredDisplayName"
|
2022-09-26 08:54:14 +00:00
|
|
|
caseSensitivity: Qt.CaseInsensitive
|
|
|
|
}
|
|
|
|
]
|
2022-05-20 12:53:40 +00:00
|
|
|
}
|
2022-09-26 08:54:14 +00:00
|
|
|
section.property: "onlineStatus"
|
|
|
|
section.delegate: (root.width > 58) ? sectionDelegateComponent : null
|
|
|
|
delegate: StatusMemberListItem {
|
|
|
|
width: ListView.view.width
|
|
|
|
nickName: model.localNickname
|
2022-12-05 09:56:44 +00:00
|
|
|
userName: ProfileUtils.displayName("", model.ensName, model.displayName, model.alias)
|
2023-04-19 16:48:57 +00:00
|
|
|
pubKey: model.isEnsVerified ? "" : Utils.getCompressedPk(model.pubKey)
|
2022-09-26 08:54:14 +00:00
|
|
|
isContact: model.isContact
|
|
|
|
isVerified: model.isVerified
|
|
|
|
isUntrustworthy: model.isUntrustworthy
|
2023-06-14 16:00:41 +00:00
|
|
|
isAdmin: model.memberRole === Constants.memberRole.owner
|
2022-10-06 20:15:15 +00:00
|
|
|
asset.name: model.icon
|
2022-09-26 08:54:14 +00:00
|
|
|
asset.isImage: (asset.name !== "")
|
|
|
|
asset.isLetterIdenticon: (asset.name === "")
|
|
|
|
asset.color: Utils.colorForColorId(model.colorId)
|
|
|
|
status: model.onlineStatus
|
2023-01-10 11:29:24 +00:00
|
|
|
ringSettings.ringSpecModel: model.colorHash
|
2022-09-26 08:54:14 +00:00
|
|
|
onClicked: {
|
|
|
|
if (mouse.button === Qt.RightButton) {
|
2023-05-19 16:07:50 +00:00
|
|
|
Global.openMenu(profileContextMenuComponent, this, {
|
|
|
|
myPublicKey: userProfile.pubKey,
|
|
|
|
selectedUserPublicKey: model.pubKey,
|
|
|
|
selectedUserDisplayName: title,
|
|
|
|
selectedUserIcon: model.icon,
|
|
|
|
})
|
|
|
|
} else if (mouse.button === Qt.LeftButton) {
|
2022-09-26 08:54:14 +00:00
|
|
|
Global.openProfilePopup(model.pubKey);
|
|
|
|
}
|
2022-05-20 12:53:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-23 17:08:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: sectionDelegateComponent
|
|
|
|
Item {
|
2023-02-28 14:54:10 +00:00
|
|
|
width: ListView.view.width
|
2022-02-23 17:08:01 +00:00
|
|
|
height: 24
|
2023-02-28 14:54:10 +00:00
|
|
|
StatusBaseText {
|
2022-02-23 17:08:01 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
font.pixelSize: Style.current.additionalTextSize
|
|
|
|
color: Theme.palette.baseColor1
|
|
|
|
text: {
|
|
|
|
switch(parseInt(section)) {
|
2022-06-10 09:01:31 +00:00
|
|
|
case Constants.onlineStatus.online:
|
|
|
|
return qsTr("Online")
|
|
|
|
default:
|
2022-09-12 16:00:30 +00:00
|
|
|
return qsTr("Inactive")
|
2022-02-23 17:08:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-06 22:41:26 +00:00
|
|
|
}
|
2023-05-19 16:07:50 +00:00
|
|
|
|
|
|
|
Component {
|
|
|
|
id: profileContextMenuComponent
|
|
|
|
|
|
|
|
ProfileContextMenu {
|
|
|
|
store: root.store
|
|
|
|
margins: 8
|
|
|
|
onOpenProfileClicked: {
|
|
|
|
Global.openProfilePopup(publicKey, null)
|
|
|
|
}
|
|
|
|
onCreateOneToOneChat: {
|
|
|
|
Global.changeAppSectionBySectionType(Constants.appSection.chat)
|
|
|
|
root.store.chatCommunitySectionModule.createOneToOneChat(communityId, chatId, ensName)
|
|
|
|
}
|
|
|
|
onClosed: {
|
|
|
|
destroy()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-22 14:53:19 +00:00
|
|
|
}
|