2023-11-15 21:26:12 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Popups 0.1
|
|
|
|
|
|
|
|
Popup {
|
|
|
|
id: root
|
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
implicitWidth: 500
|
|
|
|
implicitHeight: Math.min(mainLayout.implicitHeight * 2, 700)
|
2023-11-15 21:26:12 +00:00
|
|
|
|
|
|
|
required property WalletConnectSDK sdk
|
|
|
|
|
|
|
|
parent: Overlay.overlay
|
|
|
|
anchors.centerIn: parent
|
|
|
|
|
|
|
|
clip: true
|
|
|
|
|
|
|
|
property bool sdkReady: d.state === d.sdkReadyState
|
|
|
|
|
|
|
|
// wallet_connect.Controller \see wallet_section/wallet_connect/controller.nim
|
|
|
|
required property var controller
|
|
|
|
|
|
|
|
function openWithSessionRequestEvent(sessionRequest) {
|
|
|
|
d.setStatusText("Approve session request")
|
|
|
|
d.setDetailsText(JSON.stringify(sessionRequest, null, 2))
|
|
|
|
d.sessionRequest = sessionRequest
|
|
|
|
d.state = d.waitingUserResponseToSessionRequest
|
|
|
|
root.open()
|
|
|
|
}
|
|
|
|
|
|
|
|
Flickable {
|
|
|
|
id: flickable
|
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
contentWidth: mainLayout.implicitWidth
|
|
|
|
contentHeight: mainLayout.implicitHeight
|
|
|
|
|
|
|
|
interactive: contentHeight > height || contentWidth > width
|
2023-11-15 21:26:12 +00:00
|
|
|
|
|
|
|
ColumnLayout {
|
2023-11-24 12:51:36 +00:00
|
|
|
id: mainLayout
|
2023-11-15 21:26:12 +00:00
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
StatusBaseText {
|
|
|
|
text: qsTr("Debugging UX until design is ready")
|
|
|
|
}
|
2023-11-15 21:26:12 +00:00
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
StatusInput {
|
|
|
|
id: pairLinkInput
|
2023-11-15 21:26:12 +00:00
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
Layout.fillWidth: true
|
2023-11-15 21:26:12 +00:00
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
placeholderText: "Insert pair link"
|
|
|
|
}
|
2023-11-15 21:26:12 +00:00
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
RowLayout {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
StatusButton {
|
|
|
|
text: "Pair"
|
2023-11-15 21:26:12 +00:00
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
onClicked: {
|
|
|
|
statusText.text = "Pairing..."
|
|
|
|
sdk.pair(pairLinkInput.text)
|
|
|
|
}
|
|
|
|
enabled: pairLinkInput.text.length > 0 && sdk.sdkReady
|
2023-11-15 21:26:12 +00:00
|
|
|
}
|
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
StatusButton {
|
|
|
|
text: "Auth"
|
|
|
|
onClicked: {
|
|
|
|
statusText.text = "Authenticating..."
|
|
|
|
sdk.auth()
|
|
|
|
}
|
|
|
|
enabled: false && pairLinkInput.text.length > 0 && sdk.sdkReady
|
2023-11-15 21:26:12 +00:00
|
|
|
}
|
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
StatusButton {
|
|
|
|
text: "Accept"
|
|
|
|
onClicked: {
|
|
|
|
sdk.approvePairSession(d.sessionProposal, d.supportedNamespaces)
|
|
|
|
// Will trigger an onPairAcceptedResult if successful
|
|
|
|
}
|
|
|
|
visible: d.state === d.waitingPairState
|
2023-11-15 21:26:12 +00:00
|
|
|
}
|
2023-11-24 12:51:36 +00:00
|
|
|
StatusButton {
|
|
|
|
text: "Reject"
|
|
|
|
onClicked: {
|
|
|
|
sdk.rejectPairSession(d.sessionProposal.id)
|
|
|
|
}
|
|
|
|
visible: d.state === d.waitingPairState
|
2023-11-15 21:26:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
ColumnLayout {
|
|
|
|
StatusBaseText {
|
|
|
|
id: statusText
|
|
|
|
text: "-"
|
|
|
|
}
|
|
|
|
StatusBaseText {
|
|
|
|
text: "Pairings"
|
|
|
|
visible: sdk.pairingsModel.count > 0
|
|
|
|
}
|
2023-11-15 21:26:12 +00:00
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
Pairings {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.minimumWidth: count > 0 ? 400 : 0
|
|
|
|
Layout.preferredHeight: contentHeight
|
|
|
|
Layout.maximumHeight: 300
|
2023-11-15 21:26:12 +00:00
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
model: sdk.pairingsModel
|
2023-11-15 21:26:12 +00:00
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
onDisconnect: function (topic) {
|
|
|
|
sdk.disconnectPairing(topic)
|
|
|
|
}
|
|
|
|
}
|
2023-11-15 21:26:12 +00:00
|
|
|
|
|
|
|
StatusBaseText {
|
|
|
|
id: detailsText
|
|
|
|
text: ""
|
|
|
|
visible: text.length > 0
|
|
|
|
|
|
|
|
color: "#FF00FF"
|
|
|
|
}
|
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
RowLayout {
|
|
|
|
StatusButton {
|
|
|
|
text: "Accept"
|
|
|
|
onClicked: {
|
|
|
|
root.controller.sessionRequest(JSON.stringify(d.sessionRequest), passwordInput.text)
|
|
|
|
}
|
|
|
|
visible: d.state === d.waitingUserResponseToSessionRequest
|
2023-11-15 21:26:12 +00:00
|
|
|
}
|
2023-11-24 12:51:36 +00:00
|
|
|
StatusButton {
|
|
|
|
text: "Reject"
|
|
|
|
onClicked: {
|
|
|
|
sdk.rejectSessionRequest(d.sessionRequest.topic, d.sessionRequest.id, false)
|
|
|
|
}
|
|
|
|
visible: d.state === d.waitingUserResponseToSessionRequest
|
2023-11-15 21:26:12 +00:00
|
|
|
}
|
2023-11-24 12:51:36 +00:00
|
|
|
StatusInput {
|
|
|
|
id: passwordInput
|
2023-11-15 21:26:12 +00:00
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
text: "1234567890"
|
|
|
|
placeholderText: "Insert account password"
|
|
|
|
visible: d.state === d.waitingUserResponseToSessionRequest
|
|
|
|
}
|
2023-11-15 21:26:12 +00:00
|
|
|
}
|
2023-11-24 12:51:36 +00:00
|
|
|
|
|
|
|
ColumnLayout { /* spacer */ }
|
2023-11-15 21:26:12 +00:00
|
|
|
}
|
|
|
|
|
2023-11-24 12:51:36 +00:00
|
|
|
// Separator
|
|
|
|
ColumnLayout {}
|
2023-11-15 21:26:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ScrollBar.vertical: ScrollBar {}
|
|
|
|
|
|
|
|
clip: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: root.sdk
|
|
|
|
|
|
|
|
function onSdkInit(success, info) {
|
|
|
|
d.setDetailsText(info)
|
|
|
|
if (success) {
|
|
|
|
d.setStatusText("Ready to pair or auth")
|
|
|
|
d.state = d.sdkReadyState
|
|
|
|
} else {
|
|
|
|
d.setStatusText("SDK Error", "red")
|
|
|
|
d.state = ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onPairSessionProposal(success, sessionProposal) {
|
|
|
|
d.setDetailsText(sessionProposal)
|
|
|
|
if (success) {
|
|
|
|
d.setStatusText("Pair ID: " + sessionProposal.id + "; Topic: " + sessionProposal.params.pairingTopic)
|
|
|
|
root.controller.pairSessionProposal(JSON.stringify(sessionProposal))
|
2023-11-24 12:51:36 +00:00
|
|
|
// Expecting signal onProposeUserPair(..., true, ...) from controller
|
2023-11-15 21:26:12 +00:00
|
|
|
} else {
|
|
|
|
d.setStatusText("Pairing error", "red")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onPairAcceptedResult(sessionProposal, success, result) {
|
|
|
|
d.setDetailsText(result)
|
|
|
|
if (success) {
|
|
|
|
d.setStatusText("Pairing OK")
|
|
|
|
d.state = d.pairedState
|
|
|
|
root.controller.recordSuccessfulPairing(JSON.stringify(sessionProposal))
|
|
|
|
} else {
|
|
|
|
d.setStatusText("Pairing error", "red")
|
|
|
|
d.state = d.sdkReadyState
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onPairRejectedResult(success, result) {
|
|
|
|
d.setDetailsText(result)
|
|
|
|
d.state = d.sdkReadyState
|
|
|
|
if (success) {
|
|
|
|
d.setStatusText("Pairing rejected")
|
|
|
|
} else {
|
|
|
|
d.setStatusText("Rejecting pairing error", "red")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onSessionRequestUserAnswerResult(accept, error) {
|
|
|
|
if (error) {
|
|
|
|
d.setStatusText(`Session Request ${accept ? "Accept" : "Reject"} error`, "red")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
d.state = d.pairedState
|
|
|
|
if (accept) {
|
|
|
|
d.setStatusText(`Session Request accepted`)
|
|
|
|
} else {
|
|
|
|
d.setStatusText(`Session Request rejected`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onPairSessionProposalExpired() {
|
|
|
|
d.setStatusText(`Timeout waiting for response. Reusing URI?`, "red")
|
|
|
|
}
|
|
|
|
|
|
|
|
function onStatusChanged(message) {
|
|
|
|
statusText.text = message
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
id: d
|
|
|
|
|
|
|
|
property var sessionProposal: null
|
|
|
|
property var supportedNamespaces: null
|
|
|
|
|
|
|
|
property var sessionRequest: null
|
|
|
|
property var signedData: null
|
|
|
|
|
|
|
|
property string state: ""
|
|
|
|
readonly property string sdkReadyState: "sdk_ready"
|
|
|
|
readonly property string waitingPairState: "waiting_pairing"
|
|
|
|
readonly property string waitingUserResponseToSessionRequest: "waiting_user_response_to_session_request"
|
|
|
|
readonly property string pairedState: "paired"
|
|
|
|
|
|
|
|
function setStatusText(message, textColor) {
|
|
|
|
statusText.text = message
|
|
|
|
if (textColor === undefined) {
|
|
|
|
textColor = "green"
|
|
|
|
}
|
|
|
|
statusText.color = textColor
|
|
|
|
}
|
|
|
|
function setDetailsText(message) {
|
|
|
|
if (message === undefined) {
|
|
|
|
message = "undefined"
|
|
|
|
} else if (typeof message !== "string") {
|
|
|
|
message = JSON.stringify(message, null, 2)
|
|
|
|
}
|
|
|
|
detailsText.text = message
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: root.controller
|
|
|
|
|
|
|
|
function onProposeUserPair(sessionProposalJson, supportedNamespacesJson) {
|
|
|
|
d.setStatusText("Waiting user accept")
|
|
|
|
|
|
|
|
d.sessionProposal = JSON.parse(sessionProposalJson)
|
|
|
|
d.supportedNamespaces = JSON.parse(supportedNamespacesJson)
|
|
|
|
|
|
|
|
d.setDetailsText(JSON.stringify(d.supportedNamespaces, null, 2))
|
|
|
|
|
|
|
|
d.state = d.waitingPairState
|
|
|
|
}
|
|
|
|
|
|
|
|
function onRespondSessionRequest(sessionRequestJson, signedData, error) {
|
|
|
|
console.log("WC respondSessionRequest", sessionRequestJson, " signedData", signedData, " error: ", error)
|
|
|
|
if (error) {
|
|
|
|
d.setStatusText("Session Request error", "red")
|
|
|
|
sdk.rejectSessionRequest(d.sessionRequest.topic, d.sessionRequest.id, true)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
d.sessionRequest = JSON.parse(sessionRequestJson)
|
|
|
|
d.signedData = signedData
|
|
|
|
|
|
|
|
sdk.acceptSessionRequest(d.sessionRequest.topic, d.sessionRequest.id, d.signedData)
|
|
|
|
|
|
|
|
d.state = d.pairedState
|
|
|
|
|
|
|
|
d.setStatusText("Session Request accepted")
|
|
|
|
d.setDetailsText(d.signedData)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|