status-desktop/ui/imports/shared/popups/SendContactRequestModal.qml

95 lines
2.6 KiB
QML
Raw Normal View History

import QtQuick 2.14
import QtQuick.Controls 2.14
import QtQuick.Layouts 1.14
import utils 1.0
2022-06-22 12:16:21 +00:00
import shared.controls.chat 1.0
import StatusQ.Core 0.1
import StatusQ.Core.Theme 0.1
import StatusQ.Controls 0.1
import StatusQ.Controls.Validators 0.1
import StatusQ.Popups 0.1
StatusModal {
id: root
2022-06-22 12:16:21 +00:00
property string userPublicKey: ""
property string userDisplayName: ""
property string userIcon: ""
property bool userIsEnsVerified
2022-06-22 12:16:21 +00:00
2022-09-27 21:26:26 +00:00
property string challengeText: qsTr("Say who you are / why you want to become a contact...")
property string buttonText: qsTr("Send Contact Request")
signal accepted(string message)
width: 480
height: 548
header.title: qsTr("Send Contact Request to %1").arg(userDisplayName)
QtObject {
id: d
readonly property int maxMsgLength: 280
readonly property int minMsgLength: 1
readonly property int msgHeight: 152
readonly property int contentSpacing: Style.current.halfPadding
}
2022-09-27 21:26:26 +00:00
onAboutToShow: {
messageInput.input.edit.forceActiveFocus()
}
ColumnLayout {
id: content
2022-06-22 12:16:21 +00:00
anchors.fill: parent
anchors.topMargin: Style.current.bigPadding
anchors.leftMargin: Style.current.padding
anchors.rightMargin: Style.current.padding
spacing: d.contentSpacing
2022-06-22 12:16:21 +00:00
ProfileHeader {
Layout.fillWidth: true
2022-06-22 12:16:21 +00:00
displayName: root.userDisplayName
pubkey: root.userPublicKey
icon: root.userIcon
userIsEnsVerified: root.userIsEnsVerified
2022-06-22 12:16:21 +00:00
displayNameVisible: true
pubkeyVisible: true
2022-06-22 12:16:21 +00:00
imageSize: ProfileHeader.ImageSize.Middle
}
StatusInput {
id: messageInput
input.edit.objectName: "ProfileSendContactRequestModal_sayWhoYouAreInput"
Layout.fillWidth: true
charLimit: d.maxMsgLength
2022-09-27 21:26:26 +00:00
placeholderText: root.challengeText
input.multiline: true
minimumHeight: d.msgHeight
maximumHeight: d.msgHeight
input.verticalAlignment: TextEdit.AlignTop
validators: StatusMinLengthValidator {
minLength: d.minMsgLength
errorMessage: Utils.getErrorMessage(messageInput.errors, qsTr("who are you"))
}
}
Item { Layout.fillHeight: true }
}
rightButtons: StatusButton {
objectName: "ProfileSendContactRequestModal_sendContactRequestButton"
enabled: messageInput.valid
2022-09-27 21:26:26 +00:00
text: root.buttonText
onClicked: {
root.accepted(messageInput.text);
root.close();
}
}
2022-06-22 12:16:21 +00:00
}