status-desktop/ui/app/AppLayouts/Chat/components/Contact.qml

99 lines
2.9 KiB
QML
Raw Normal View History

2020-06-17 15:56:48 +00:00
import QtQuick 2.3
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.3
import Qt.labs.platform 1.1
import "../../../../imports"
import "../../../../shared"
import "../../../../shared/status"
2020-06-17 15:56:48 +00:00
Rectangle {
property string pubKey: "0x123456"
property string name: "Jotaro Kujo"
property string address: "0x04d8c07dd137bd1b73a6f51df148b4f77ddaa11209d36e43d8344c0a7d6db1cad6085f27cfb75dd3ae21d86ceffebe4cf8a35b9ce8d26baa19dc264efe6d8f221b"
property string identicon: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII="
2020-06-22 12:16:44 +00:00
property bool isContact: true
2020-06-17 15:56:48 +00:00
property bool isUser: false
property bool isVisible: true
property bool showCheckbox: true
property bool isChecked: false
2020-06-25 13:26:58 +00:00
property bool showListSelector: false
2020-06-17 15:56:48 +00:00
property var onItemChecked: (function(pubKey, itemChecked) { console.log(pubKey, itemChecked) })
2020-06-22 12:16:44 +00:00
visible: isVisible && (isContact || isUser)
height: visible ? 64 : 0
2020-06-17 15:56:48 +00:00
anchors.right: parent.right
anchors.left: parent.left
border.width: 0
radius: Style.current.radius
color: Style.current.transparent
2020-06-17 15:56:48 +00:00
StatusImageIdenticon {
2020-06-17 15:56:48 +00:00
id: accountImage
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
source: identicon
}
StyledText {
2020-06-17 15:56:48 +00:00
id: usernameText
text: name
elide: Text.ElideRight
anchors.right: parent.right
anchors.rightMargin: Style.current.padding
2020-06-17 15:56:48 +00:00
font.pixelSize: 17
anchors.top: accountImage.top
anchors.topMargin: 10
anchors.left: accountImage.right
anchors.leftMargin: Style.current.padding
2020-06-17 15:56:48 +00:00
}
2020-06-25 13:26:58 +00:00
SVGImage {
id: image
visible: showListSelector && !showCheckbox
height: 24
width: 24
anchors.top: accountImage.top
anchors.topMargin: 6
anchors.right: parent.right
anchors.rightMargin: Style.current.padding
2020-06-25 13:26:58 +00:00
fillMode: Image.PreserveAspectFit
source: "../../../img/list-next.svg"
}
2020-11-27 19:32:49 +00:00
StatusCheckBox {
2020-06-17 15:56:48 +00:00
id: assetCheck
2020-06-25 13:26:58 +00:00
visible: !showListSelector && showCheckbox && !isUser
2020-06-17 15:56:48 +00:00
anchors.top: accountImage.top
anchors.topMargin: 6
anchors.right: parent.right
anchors.rightMargin: Style.current.padding
2020-06-17 15:56:48 +00:00
checked: isChecked
onClicked: {
isChecked = !isChecked
onItemChecked(pubKey, isChecked)
}
}
StyledText {
2020-06-17 15:56:48 +00:00
visible: isUser
//% "Admin"
text: qsTrId("group-chat-admin")
2020-06-17 15:56:48 +00:00
anchors.right: parent.right
anchors.rightMargin: Style.current.padding
2020-06-17 15:56:48 +00:00
font.pixelSize: 15
color: Style.current.darkGrey
2020-06-17 15:56:48 +00:00
anchors.top: accountImage.top
anchors.topMargin: 10
}
MouseArea {
cursorShape: Qt.PointingHandCursor
anchors.fill: parent
2020-12-11 20:38:10 +00:00
enabled: showCheckbox
onClicked: assetCheck.clicked()
}
2020-06-17 15:56:48 +00:00
}