157 lines
5.7 KiB
QML
157 lines
5.7 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
import "../../../../../imports"
|
|
import "../../../../../shared"
|
|
import "../../../../../shared/status"
|
|
|
|
Rectangle {
|
|
property string name: "Jotaro Kujo"
|
|
property string address: "0x04d8c07dd137bd1b73a6f51df148b4f77ddaa11209d36e43d8344c0a7d6db1cad6085f27cfb75dd3ae21d86ceffebe4cf8a35b9ce8d26baa19dc264efe6d8f221b"
|
|
property string identicon: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII="
|
|
property string localNickname: "JoJo"
|
|
property var profileClick: function() {}
|
|
property bool isContact: true
|
|
property bool isBlocked: false
|
|
property string searchStr: ""
|
|
signal blockContactActionTriggered(name: string, address: string)
|
|
signal removeContactActionTriggered(address: string)
|
|
property bool isHovered: false
|
|
id: container
|
|
|
|
visible: isContact && (searchStr == "" || name.includes(searchStr))
|
|
height: visible ? 64 : 0
|
|
anchors.right: parent.right
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: -Style.current.padding
|
|
anchors.rightMargin: -Style.current.padding
|
|
border.width: 0
|
|
radius: Style.current.radius
|
|
color: isHovered ? Style.current.backgroundHover : Style.current.transparent
|
|
|
|
StatusImageIdenticon {
|
|
id: accountImage
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Style.current.padding
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
source: identicon
|
|
}
|
|
|
|
StyledText {
|
|
id: usernameText
|
|
text: name
|
|
elide: Text.ElideRight
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Style.current.padding
|
|
font.pixelSize: 17
|
|
anchors.top: accountImage.top
|
|
anchors.topMargin: Style.current.smallPadding
|
|
anchors.left: accountImage.right
|
|
anchors.leftMargin: Style.current.padding
|
|
}
|
|
|
|
MouseArea {
|
|
cursorShape: Qt.PointingHandCursor
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
onEntered: container.isHovered = true
|
|
onExited: container.isHovered = false
|
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
|
onClicked: {
|
|
if (mouse.button === Qt.RightButton) {
|
|
contactContextMenu.popup()
|
|
return
|
|
}
|
|
chatsModel.channelView.joinPrivateChat(container.address, "");
|
|
changeAppSection(Constants.chat)
|
|
}
|
|
}
|
|
|
|
StatusContextMenuButton {
|
|
property int iconSize: 14
|
|
id: menuButton
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Style.current.padding
|
|
|
|
MouseArea {
|
|
id: mouseArea
|
|
cursorShape: Qt.PointingHandCursor
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
onExited: {
|
|
container.isHovered = false
|
|
menuButton.highlighted = false
|
|
}
|
|
onEntered: {
|
|
container.isHovered = true
|
|
menuButton.highlighted = true
|
|
}
|
|
onClicked: {
|
|
contactContextMenu.popup()
|
|
}
|
|
|
|
PopupMenu {
|
|
id: contactContextMenu
|
|
hasArrow: false
|
|
Action {
|
|
icon.source: "../../../../img/profileActive.svg"
|
|
icon.width: menuButton.iconSize
|
|
icon.height: menuButton.iconSize
|
|
//% "View Profile"
|
|
text: qsTrId("view-profile")
|
|
onTriggered: profileClick(true, name, address, identicon, "", localNickname)
|
|
enabled: true
|
|
}
|
|
Action {
|
|
icon.source: "../../../../img/message.svg"
|
|
icon.width: menuButton.iconSize
|
|
icon.height: menuButton.iconSize
|
|
//% "Send message"
|
|
text: qsTrId("send-message")
|
|
onTriggered: {
|
|
changeAppSection(Constants.chat)
|
|
chatsModel.channelView.joinPrivateChat(address, "")
|
|
}
|
|
enabled: !container.isBlocked
|
|
}
|
|
Action {
|
|
icon.source: "../../../../img/block-icon.svg"
|
|
icon.width: menuButton.iconSize
|
|
icon.height: menuButton.iconSize
|
|
//% "Block User"
|
|
text: qsTrId("block-user")
|
|
enabled: !container.isBlocked
|
|
onTriggered: {
|
|
container.blockContactActionTriggered(name, address)
|
|
}
|
|
}
|
|
Action {
|
|
icon.source: "../../../../img/remove-contact.svg"
|
|
icon.width: menuButton.iconSize
|
|
icon.height: menuButton.iconSize
|
|
icon.color: Style.current.red
|
|
text: qsTrId("remove-contact")
|
|
enabled: container.isContact
|
|
onTriggered: {
|
|
container.removeContactActionTriggered(address)
|
|
}
|
|
}
|
|
Action {
|
|
icon.source: "../../../../img/block-icon.svg"
|
|
icon.width: menuButton.iconSize
|
|
icon.height: menuButton.iconSize
|
|
icon.color: Style.current.red
|
|
//% "Unblock User"
|
|
text: qsTrId("unblock-user")
|
|
enabled: container.isBlocked
|
|
onTriggered: {
|
|
profileModel.contacts.unblockContact(address)
|
|
contactContextMenu.close()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|