mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-10 21:56:37 +00:00
152 lines
4.9 KiB
QML
152 lines
4.9 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Dialogs 1.3
|
|
import "../../../../imports"
|
|
import "../../../../shared"
|
|
|
|
Item {
|
|
id: sendModalContent
|
|
property var closePopup: function(){}
|
|
property alias amountInput: txtAmount
|
|
property alias passwordInput: txtPassword
|
|
|
|
property string passwordValidationError: ""
|
|
property string toValidationError: ""
|
|
property string amountValidationError: ""
|
|
|
|
function send() {
|
|
if (!validate()) {
|
|
return;
|
|
}
|
|
let result = walletModel.onSendTransaction(selectFromAccount.selectedAccount.address,
|
|
txtTo.text,
|
|
selectAsset.selectedAsset.address,
|
|
txtAmount.text,
|
|
txtPassword.text)
|
|
|
|
if (!result.startsWith('0x')) {
|
|
// It's an error
|
|
sendingError.text = result
|
|
return sendingError.open()
|
|
}
|
|
|
|
sendingSuccess.text = qsTr("Transaction sent to the blockchain. You can watch the progress on Etherscan: %2/%1").arg(result).arg(walletModel.etherscanLink)
|
|
sendingSuccess.open()
|
|
}
|
|
|
|
function validate() {
|
|
if (txtPassword.text === "") {
|
|
//% "You need to enter a password"
|
|
passwordValidationError = qsTrId("you-need-to-enter-a-password")
|
|
} else if (txtPassword.text.length < 4) {
|
|
//% "Password needs to be 4 characters or more"
|
|
passwordValidationError = qsTrId("password-needs-to-be-4-characters-or-more")
|
|
} else {
|
|
passwordValidationError = ""
|
|
}
|
|
|
|
if (txtTo.text === "") {
|
|
//% "You need to enter a destination address"
|
|
toValidationError = qsTrId("you-need-to-enter-a-destination-address")
|
|
} else if (!Utils.isAddress(txtTo.text)) {
|
|
//% "This needs to be a valid address (starting with 0x)"
|
|
toValidationError = qsTrId("this-needs-to-be-a-valid-address-(starting-with-0x)")
|
|
} else {
|
|
toValidationError = ""
|
|
}
|
|
|
|
if (txtAmount.text === "") {
|
|
//% "You need to enter an amount"
|
|
amountValidationError = qsTrId("you-need-to-enter-an-amount")
|
|
} else if (isNaN(txtAmount.text)) {
|
|
//% "This needs to be a number"
|
|
amountValidationError = qsTrId("this-needs-to-be-a-number")
|
|
} else if (parseFloat(txtAmount.text) > parseFloat(selectAsset.selectedAsset.Value)) {
|
|
//% "Amount needs to be lower than your balance (%1)"
|
|
amountValidationError = qsTrId("amount-needs-to-be-lower-than-your-balance-(%1)").arg(selectedAccountValue)
|
|
} else {
|
|
amountValidationError = ""
|
|
}
|
|
|
|
return passwordValidationError === "" && toValidationError === "" && amountValidationError === ""
|
|
}
|
|
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
|
|
MessageDialog {
|
|
id: sendingError
|
|
title: "Error sending the transaction"
|
|
icon: StandardIcon.Critical
|
|
standardButtons: StandardButton.Ok
|
|
}
|
|
MessageDialog {
|
|
id: sendingSuccess
|
|
//% "Success sending the transaction"
|
|
title: qsTrId("success-sending-the-transaction")
|
|
icon: StandardIcon.NoIcon
|
|
standardButtons: StandardButton.Ok
|
|
onAccepted: {
|
|
closePopup()
|
|
}
|
|
}
|
|
|
|
Input {
|
|
id: txtAmount
|
|
//% "Amount"
|
|
label: qsTrId("amount")
|
|
anchors.top: parent.top
|
|
//% "Enter amount..."
|
|
placeholderText: qsTrId("enter-amount...")
|
|
validationError: amountValidationError
|
|
}
|
|
|
|
AssetSelector {
|
|
id: selectAsset
|
|
assets: walletModel.assets
|
|
anchors.top: txtAmount.bottom
|
|
anchors.topMargin: Style.current.padding
|
|
anchors.right: parent.right
|
|
width: 86
|
|
height: 28
|
|
}
|
|
|
|
AccountSelector {
|
|
id: selectFromAccount
|
|
accounts: walletModel.accounts
|
|
anchors.top: selectAsset.bottom
|
|
anchors.topMargin: Style.current.padding
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
}
|
|
|
|
Input {
|
|
id: txtTo
|
|
//% "Recipient"
|
|
label: qsTrId("recipient")
|
|
//% "Send to"
|
|
placeholderText: qsTrId("send-to")
|
|
anchors.top: selectFromAccount.bottom
|
|
anchors.topMargin: Style.current.padding
|
|
validationError: toValidationError
|
|
}
|
|
|
|
Input {
|
|
id: txtPassword
|
|
//% "Password"
|
|
label: qsTrId("password")
|
|
//% "Enter Password"
|
|
placeholderText: qsTrId("biometric-auth-login-ios-fallback-label")
|
|
anchors.top: txtTo.bottom
|
|
anchors.topMargin: Style.current.padding
|
|
textField.echoMode: TextInput.Password
|
|
validationError: passwordValidationError
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;autoSize:true;formeditorColor:"#ffffff";height:480;width:640}
|
|
}
|
|
##^##*/
|