2022-03-09 10:27:32 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
import QtQuick.Layouts 1.14
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
import shared.panels 1.0
|
2022-03-07 22:59:38 +00:00
|
|
|
import shared.controls 1.0
|
2022-03-09 10:27:32 +00:00
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
import StatusQ.Controls 0.1
|
2022-03-09 10:27:32 +00:00
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import StatusQ.Core.Utils 0.1 as StatusQUtils
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: root
|
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
enum ImageSize {
|
|
|
|
Compact,
|
|
|
|
Middle,
|
|
|
|
Big
|
|
|
|
}
|
|
|
|
|
2022-03-09 10:27:32 +00:00
|
|
|
property string displayName
|
|
|
|
property string pubkey
|
|
|
|
property string icon
|
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
property int imageSize: ProfileHeader.ImageSize.Compact
|
2022-03-09 10:27:32 +00:00
|
|
|
property bool displayNameVisible: true
|
|
|
|
property bool pubkeyVisible: true
|
2022-06-22 12:16:21 +00:00
|
|
|
property bool emojiHashVisible: true
|
|
|
|
property bool editImageButtonVisible: false
|
|
|
|
readonly property bool compact: root.imageSize == ProfileHeader.ImageSize.Compact
|
2022-03-09 10:27:32 +00:00
|
|
|
|
|
|
|
signal clicked()
|
|
|
|
|
|
|
|
height: visible ? contentContainer.height : 0
|
2022-03-16 21:20:03 +00:00
|
|
|
implicitHeight: contentContainer.implicitHeight
|
2022-03-09 10:27:32 +00:00
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
QtObject {
|
|
|
|
id: d
|
|
|
|
function getSize(compact, normal, big) {
|
|
|
|
switch(root.imageSize) {
|
|
|
|
case ProfileHeader.ImageSize.Compact: return compact;
|
|
|
|
case ProfileHeader.ImageSize.Middle: return normal;
|
|
|
|
case ProfileHeader.ImageSize.Big: return big;
|
|
|
|
return normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-09 10:27:32 +00:00
|
|
|
ColumnLayout {
|
|
|
|
id: contentContainer
|
|
|
|
|
2022-04-14 08:26:46 +00:00
|
|
|
spacing: root.compact ? 4 : 12
|
|
|
|
|
2022-03-09 10:27:32 +00:00
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
right: parent.right
|
|
|
|
leftMargin: Style.current.smallPadding
|
|
|
|
rightMargin: Style.current.smallPadding
|
|
|
|
}
|
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
Item {
|
2022-03-09 10:27:32 +00:00
|
|
|
Layout.alignment: Qt.AlignHCenter
|
2022-06-22 12:16:21 +00:00
|
|
|
implicitWidth: userImage.width
|
|
|
|
implicitHeight: userImage.height
|
|
|
|
|
|
|
|
UserImage {
|
|
|
|
id: userImage
|
|
|
|
name: root.displayName
|
|
|
|
pubkey: root.pubkey
|
|
|
|
image: root.icon
|
|
|
|
interactive: false
|
|
|
|
imageWidth: d.getSize(36, 80, 160)
|
|
|
|
imageHeight: imageWidth
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusRoundButton {
|
|
|
|
visible: root.editImageButtonVisible
|
|
|
|
anchors.bottom: userImage.bottom
|
|
|
|
anchors.right: userImage.right
|
|
|
|
anchors.rightMargin: Math.round(userImage.width / 10)
|
2022-03-09 10:27:32 +00:00
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
width: d.getSize(10, 24, 40)
|
|
|
|
height: width
|
2022-03-09 10:27:32 +00:00
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
type: StatusRoundButton.Type.Secondary
|
|
|
|
icon.name: "edit_pencil"
|
|
|
|
icon.width: d.getSize(8, 12, 20)
|
|
|
|
icon.height: d.getSize(8, 12, 20)
|
|
|
|
|
|
|
|
onClicked: Global.openChangeProfilePicPopup()
|
2022-03-09 10:27:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
visible: root.displayNameVisible
|
|
|
|
|
|
|
|
text: root.displayName
|
|
|
|
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
elide: Text.ElideRight
|
|
|
|
maximumLineCount: 3
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
font {
|
|
|
|
weight: Font.Medium
|
|
|
|
pixelSize: Style.current.primaryTextFontSize
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
visible: root.pubkeyVisible
|
|
|
|
|
2022-03-30 07:09:39 +00:00
|
|
|
text: Utils.getElidedCompressedPk(pubkey)
|
2022-03-09 10:27:32 +00:00
|
|
|
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
font.pixelSize: Style.current.asideTextFontSize
|
|
|
|
color: Style.current.secondaryText
|
|
|
|
}
|
|
|
|
|
2022-03-07 22:59:38 +00:00
|
|
|
EmojiHash {
|
2022-04-14 08:26:46 +00:00
|
|
|
id: emojiHash
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
2022-06-22 12:16:21 +00:00
|
|
|
visible: root.emojiHashVisible
|
2022-03-07 22:59:38 +00:00
|
|
|
publicKey: root.pubkey
|
2022-04-14 08:26:46 +00:00
|
|
|
size: root.compact ? 16 : 20
|
2022-03-09 10:27:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|