2022-06-20 11:54:17 +00:00
|
|
|
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
|
2022-06-20 11:54:17 +00:00
|
|
|
|
|
|
|
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: ""
|
2022-09-22 22:18:15 +00:00
|
|
|
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")
|
|
|
|
|
2022-06-20 11:54:17 +00:00
|
|
|
signal accepted(string message)
|
|
|
|
|
2022-09-28 14:24:12 +00:00
|
|
|
width: 480
|
|
|
|
height: 548
|
|
|
|
|
2022-09-16 19:25:10 +00:00
|
|
|
header.title: qsTr("Send Contact Request to %1").arg(userDisplayName)
|
2022-06-20 11:54:17 +00:00
|
|
|
|
|
|
|
QtObject {
|
|
|
|
id: d
|
|
|
|
|
|
|
|
readonly property int maxMsgLength: 280
|
|
|
|
readonly property int minMsgLength: 1
|
|
|
|
readonly property int msgHeight: 152
|
2022-09-28 14:24:12 +00:00
|
|
|
readonly property int contentSpacing: Style.current.halfPadding
|
2022-06-20 11:54:17 +00:00
|
|
|
}
|
|
|
|
|
2022-09-27 21:26:26 +00:00
|
|
|
onAboutToShow: {
|
|
|
|
messageInput.input.edit.forceActiveFocus()
|
|
|
|
}
|
|
|
|
|
2022-06-20 14:48:38 +00:00
|
|
|
ColumnLayout {
|
2022-06-20 11:54:17 +00:00
|
|
|
id: content
|
2022-06-22 12:16:21 +00:00
|
|
|
anchors.fill: parent
|
2022-09-28 14:24:12 +00:00
|
|
|
anchors.topMargin: Style.current.bigPadding
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
anchors.rightMargin: Style.current.padding
|
2022-06-20 11:54:17 +00:00
|
|
|
spacing: d.contentSpacing
|
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
ProfileHeader {
|
2022-06-20 11:54:17 +00:00
|
|
|
Layout.fillWidth: true
|
2022-06-22 12:16:21 +00:00
|
|
|
|
|
|
|
displayName: root.userDisplayName
|
|
|
|
pubkey: root.userPublicKey
|
|
|
|
icon: root.userIcon
|
2022-09-22 22:18:15 +00:00
|
|
|
userIsEnsVerified: root.userIsEnsVerified
|
2022-06-22 12:16:21 +00:00
|
|
|
|
2022-09-18 13:01:13 +00:00
|
|
|
displayNameVisible: true
|
|
|
|
pubkeyVisible: true
|
2022-06-22 12:16:21 +00:00
|
|
|
imageSize: ProfileHeader.ImageSize.Middle
|
2022-06-20 11:54:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
StatusInput {
|
|
|
|
id: messageInput
|
2022-09-28 14:24:12 +00:00
|
|
|
Layout.fillWidth: true
|
2022-06-20 11:54:17 +00:00
|
|
|
charLimit: d.maxMsgLength
|
2022-09-27 21:26:26 +00:00
|
|
|
placeholderText: root.challengeText
|
2022-06-20 11:54:17 +00:00
|
|
|
input.multiline: true
|
2022-07-26 09:49:28 +00:00
|
|
|
minimumHeight: d.msgHeight
|
|
|
|
maximumHeight: d.msgHeight
|
2022-06-20 11:54:17 +00:00
|
|
|
input.verticalAlignment: TextEdit.AlignTop
|
|
|
|
validators: StatusMinLengthValidator {
|
|
|
|
minLength: d.minMsgLength
|
|
|
|
errorMessage: Utils.getErrorMessage(messageInput.errors, qsTr("who are you"))
|
|
|
|
}
|
|
|
|
}
|
2022-09-28 14:24:12 +00:00
|
|
|
|
|
|
|
Item { Layout.fillHeight: true }
|
2022-06-20 11:54:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rightButtons: StatusButton {
|
|
|
|
enabled: messageInput.valid
|
2022-09-27 21:26:26 +00:00
|
|
|
text: root.buttonText
|
2022-06-20 11:54:17 +00:00
|
|
|
onClicked: {
|
2022-06-28 18:11:18 +00:00
|
|
|
root.accepted(Utils.escapeHtml(messageInput.text));
|
2022-06-20 11:54:17 +00:00
|
|
|
root.close();
|
|
|
|
}
|
|
|
|
}
|
2022-06-22 12:16:21 +00:00
|
|
|
}
|