2020-09-14 19:13:26 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import QtQuick.Dialogs 1.3
|
2021-07-27 14:04:05 +00:00
|
|
|
import "../../imports"
|
|
|
|
import "../../shared"
|
|
|
|
import "../../shared/status"
|
2020-09-14 19:13:26 +00:00
|
|
|
|
|
|
|
ModalPopup {
|
|
|
|
id: root
|
2021-07-19 21:57:57 +00:00
|
|
|
readonly property var asset: JSON.parse(walletModel.tokensView.getStatusToken())
|
2021-07-27 14:04:05 +00:00
|
|
|
property string assetPrice
|
|
|
|
property string contractAddress
|
|
|
|
property var estimateGasFunction: (function(userAddress, uuid) { return 0; })
|
|
|
|
property var onSendTransaction: (function(userAddress, gasLimit, gasPrice, password){ return ""; })
|
|
|
|
property var onSuccess: (function(){})
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
|
|
|
walletModel.gasView.getGasPricePredictions()
|
|
|
|
}
|
2020-09-14 19:13:26 +00:00
|
|
|
|
2020-09-18 06:33:20 +00:00
|
|
|
//% "Authorize %1 %2"
|
2021-07-27 14:04:05 +00:00
|
|
|
title: qsTrId("authorize--1--2").arg(Utils.stripTrailingZeros(assetPrice)).arg(asset.symbol)
|
2020-09-14 19:13:26 +00:00
|
|
|
|
|
|
|
property MessageDialog sendingError: MessageDialog {
|
|
|
|
id: sendingError
|
2020-09-18 06:33:20 +00:00
|
|
|
//% "Error sending the transaction"
|
|
|
|
title: qsTrId("error-sending-the-transaction")
|
2020-09-14 19:13:26 +00:00
|
|
|
icon: StandardIcon.Critical
|
|
|
|
standardButtons: StandardButton.Ok
|
|
|
|
}
|
|
|
|
|
2021-07-27 14:04:05 +00:00
|
|
|
function setAsyncGasLimitResult(uuid, value) {
|
|
|
|
if (uuid === gasSelector.uuid) {
|
|
|
|
gasSelector.selectedGasLimit = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-14 19:13:26 +00:00
|
|
|
function sendTransaction() {
|
2021-07-27 14:04:05 +00:00
|
|
|
let responseStr = onSendTransaction(selectFromAccount.selectedAccount.address,
|
|
|
|
gasSelector.selectedGasLimit,
|
|
|
|
gasSelector.selectedGasPrice,
|
|
|
|
transactionSigner.enteredPassword);
|
|
|
|
|
2020-09-14 19:13:26 +00:00
|
|
|
let response = JSON.parse(responseStr)
|
|
|
|
|
2020-09-15 08:53:56 +00:00
|
|
|
if (!response.success) {
|
fix: prevent crash on generate account wrong password
Fixes #2448.
Currently, if a wrong password is entered when generating a wallet account, the app will crash due to attempting to decode a `GeneratedAccount ` from an rpc response containing only an error.
With this PR, we are detecting if an error is returned in the response, and if so, raising a StatusGoException. This exception is caught in the call chain, and translated in to a `StatusGoError` which is serialised and sent to the QML view, where it is parsed and displayed as an invalid password error in the input box.
refactor: remove string return values as error messages in wallet model
In the wallet model, we were passing back empty strings for no error, or an error as a string. This is not only confusing, but does not benefit from leaning on the compiler and strong types. One has to read the entire code to understand if a string result is returned when there is no error instead of implicitly being able to understand there is no return type.
To alleviate this, account creation fundtions that do not need to return a value have been changed to a void return type, and raise `StatusGoException` if there is an error encountered. This can be caught in the call chain and used as necessary (ie to pass to QML).
refactor: move invalid password string detection to Utils
Currently, we are reading returned view model values and checking to see if they include a known string from Status Go that means there was an invalid password used. This string was placed in the codebased in mulitple locations.
This PR moves the string check to a Utils function and updates all the references to use the function in Utils.
2021-05-13 04:41:48 +00:00
|
|
|
if (Utils.isInvalidPasswordMessage(response.result)){
|
2020-09-18 06:33:20 +00:00
|
|
|
//% "Wrong password"
|
|
|
|
transactionSigner.validationError = qsTrId("wrong-password")
|
2020-09-14 19:13:26 +00:00
|
|
|
return
|
|
|
|
}
|
2020-09-15 08:53:56 +00:00
|
|
|
sendingError.text = response.result
|
2020-09-14 19:13:26 +00:00
|
|
|
return sendingError.open()
|
|
|
|
}
|
|
|
|
|
2021-07-27 14:04:05 +00:00
|
|
|
onSuccess();
|
|
|
|
root.close();
|
2020-09-14 19:13:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TransactionStackView {
|
|
|
|
id: stack
|
|
|
|
height: parent.height
|
|
|
|
anchors.fill: parent
|
2021-07-27 14:04:05 +00:00
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
anchors.rightMargin: Style.current.padding
|
2021-07-19 21:57:57 +00:00
|
|
|
initialItem: group1
|
|
|
|
isLastGroup: stack.currentGroup === group4
|
2020-09-14 19:13:26 +00:00
|
|
|
onGroupActivated: {
|
|
|
|
root.title = group.headerText
|
2020-09-17 09:08:31 +00:00
|
|
|
btnNext.text = group.footerText
|
2020-09-14 19:13:26 +00:00
|
|
|
}
|
|
|
|
TransactionFormGroup {
|
|
|
|
id: group1
|
2020-09-18 06:33:20 +00:00
|
|
|
//% "Authorize %1 %2"
|
2021-07-27 14:04:05 +00:00
|
|
|
headerText: qsTrId("authorize--1--2").arg(Utils.stripTrailingZeros(root.assetPrice)).arg(root.asset.symbol)
|
2020-09-18 06:33:20 +00:00
|
|
|
//% "Continue"
|
|
|
|
footerText: qsTrId("continue")
|
2021-07-19 21:57:57 +00:00
|
|
|
showBackBtn: false
|
2020-09-14 19:13:26 +00:00
|
|
|
AccountSelector {
|
|
|
|
id: selectFromAccount
|
2021-06-08 12:48:31 +00:00
|
|
|
accounts: walletModel.accountsView.accounts
|
2021-04-22 04:03:46 +00:00
|
|
|
selectedAccount: {
|
2021-06-08 12:48:31 +00:00
|
|
|
const currAcc = walletModel.accountsView.currentAccount
|
2021-04-22 04:03:46 +00:00
|
|
|
if (currAcc.walletType !== Constants.watchWalletType) {
|
|
|
|
return currAcc
|
|
|
|
}
|
|
|
|
return null
|
|
|
|
}
|
2021-06-08 12:48:31 +00:00
|
|
|
currency: walletModel.balanceView.defaultCurrency
|
2020-09-14 19:13:26 +00:00
|
|
|
width: stack.width
|
2020-09-18 06:33:20 +00:00
|
|
|
//% "Choose account"
|
|
|
|
label: qsTrId("choose-account")
|
2020-09-14 19:13:26 +00:00
|
|
|
showBalanceForAssetSymbol: root.asset.symbol
|
2021-07-27 14:04:05 +00:00
|
|
|
minRequiredAssetBalance: root.assetPrice
|
2020-10-07 02:47:21 +00:00
|
|
|
onSelectedAccountChanged: if (isValid) { gasSelector.estimateGas() }
|
2020-09-14 19:13:26 +00:00
|
|
|
}
|
|
|
|
RecipientSelector {
|
|
|
|
id: selectRecipient
|
|
|
|
visible: false
|
2021-06-08 12:48:31 +00:00
|
|
|
accounts: walletModel.accountsView.accounts
|
2020-12-06 22:15:51 +00:00
|
|
|
contacts: profileModel.contacts.addedContacts
|
2021-07-27 14:04:05 +00:00
|
|
|
selectedRecipient: { "address": contractAddress, "type": RecipientSelector.Type.Address }
|
2020-09-14 19:13:26 +00:00
|
|
|
readOnly: true
|
2020-10-07 02:47:21 +00:00
|
|
|
onSelectedRecipientChanged: if (isValid) { gasSelector.estimateGas() }
|
2020-09-14 19:13:26 +00:00
|
|
|
}
|
|
|
|
GasSelector {
|
|
|
|
id: gasSelector
|
2021-07-19 21:57:57 +00:00
|
|
|
anchors.top: selectFromAccount.bottom
|
|
|
|
anchors.topMargin: Style.current.bigPadding * 2
|
2021-06-08 12:48:31 +00:00
|
|
|
slowestGasPrice: parseFloat(walletModel.gasView.safeLowGasPrice)
|
|
|
|
fastestGasPrice: parseFloat(walletModel.gasView.fastestGasPrice)
|
|
|
|
getGasEthValue: walletModel.gasView.getGasEthValue
|
|
|
|
getFiatValue: walletModel.balanceView.getFiatValue
|
|
|
|
defaultCurrency: walletModel.balanceView.defaultCurrency
|
2021-07-19 21:57:57 +00:00
|
|
|
width: stack.width
|
2020-09-14 19:13:26 +00:00
|
|
|
property var estimateGas: Backpressure.debounce(gasSelector, 600, function() {
|
2021-08-09 22:23:52 +00:00
|
|
|
let estimatedGas = root.estimateGasFunction(selectFromAccount.selectedAccount, uuid);
|
|
|
|
gasSelector.selectedGasLimit = estimatedGas
|
|
|
|
return estimatedGas;
|
2020-09-14 19:13:26 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
GasValidator {
|
|
|
|
id: gasValidator
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: 8
|
|
|
|
selectedAccount: selectFromAccount.selectedAccount
|
|
|
|
selectedAsset: root.asset
|
2021-07-27 14:04:05 +00:00
|
|
|
selectedAmount: parseFloat(root.assetPrice)
|
2020-09-14 19:13:26 +00:00
|
|
|
selectedGasEthValue: gasSelector.selectedGasEthValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TransactionFormGroup {
|
|
|
|
id: group3
|
2020-09-18 06:33:20 +00:00
|
|
|
//% "Authorize %1 %2"
|
2021-07-27 14:04:05 +00:00
|
|
|
headerText: qsTrId("authorize--1--2").arg(Utils.stripTrailingZeros(root.assetPrice)).arg(root.asset.symbol)
|
2020-09-18 06:33:20 +00:00
|
|
|
//% "Sign with password"
|
|
|
|
footerText: qsTrId("sign-with-password")
|
2020-09-14 19:13:26 +00:00
|
|
|
|
|
|
|
TransactionPreview {
|
|
|
|
id: pvwTransaction
|
|
|
|
width: stack.width
|
|
|
|
fromAccount: selectFromAccount.selectedAccount
|
|
|
|
gas: {
|
|
|
|
"value": gasSelector.selectedGasEthValue,
|
|
|
|
"symbol": "ETH",
|
|
|
|
"fiatValue": gasSelector.selectedGasFiatValue
|
|
|
|
}
|
2020-09-16 12:45:35 +00:00
|
|
|
toAccount: selectRecipient.selectedRecipient
|
2020-09-14 19:13:26 +00:00
|
|
|
asset: root.asset
|
2021-06-08 12:48:31 +00:00
|
|
|
currency: walletModel.balanceView.defaultCurrency
|
2020-09-14 19:13:26 +00:00
|
|
|
amount: {
|
2021-07-27 14:04:05 +00:00
|
|
|
const fiatValue = walletModel.balanceView.getFiatValue(root.assetPrice || 0, root.asset.symbol, currency)
|
|
|
|
return { "value": root.assetPrice, "fiatValue": fiatValue }
|
2020-09-14 19:13:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TransactionFormGroup {
|
|
|
|
id: group4
|
2020-09-18 06:33:20 +00:00
|
|
|
//% "Send %1 %2"
|
2021-07-27 14:04:05 +00:00
|
|
|
headerText: qsTrId("send--1--2").arg(Utils.stripTrailingZeros(root.assetPrice)).arg(root.asset.symbol)
|
2020-09-18 06:33:20 +00:00
|
|
|
//% "Sign with password"
|
|
|
|
footerText: qsTrId("sign-with-password")
|
2020-09-14 19:13:26 +00:00
|
|
|
|
|
|
|
TransactionSigner {
|
|
|
|
id: transactionSigner
|
|
|
|
width: stack.width
|
2021-06-08 12:48:31 +00:00
|
|
|
signingPhrase: walletModel.utilsView.signingPhrase
|
2020-09-14 19:13:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: Item {
|
2021-01-13 19:15:52 +00:00
|
|
|
width: parent.width
|
|
|
|
height: btnNext.height
|
2021-07-19 21:57:57 +00:00
|
|
|
|
|
|
|
StatusRoundButton {
|
|
|
|
id: btnBack
|
|
|
|
anchors.left: parent.left
|
|
|
|
icon.name: "arrow-right"
|
|
|
|
icon.width: 20
|
|
|
|
icon.height: 16
|
|
|
|
rotation: 180
|
|
|
|
visible: stack.currentGroup.showBackBtn
|
|
|
|
enabled: stack.currentGroup.isValid || stack.isLastGroup
|
|
|
|
onClicked: {
|
|
|
|
if (typeof stack.currentGroup.onBackClicked === "function") {
|
|
|
|
return stack.currentGroup.onBackClicked()
|
|
|
|
}
|
|
|
|
stack.back()
|
|
|
|
}
|
|
|
|
}
|
2020-09-17 09:08:31 +00:00
|
|
|
StatusButton {
|
2020-09-14 19:13:26 +00:00
|
|
|
id: btnNext
|
|
|
|
anchors.right: parent.right
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Next"
|
|
|
|
text: qsTrId("next")
|
2020-09-17 09:08:31 +00:00
|
|
|
enabled: stack.currentGroup.isValid && !stack.currentGroup.isPending
|
2021-07-27 14:04:05 +00:00
|
|
|
state: stack.currentGroup.isPending ? "pending" : "default"
|
2020-09-14 19:13:26 +00:00
|
|
|
onClicked: {
|
2020-09-16 12:58:08 +00:00
|
|
|
const validity = stack.currentGroup.validate()
|
|
|
|
if (validity.isValid && !validity.isPending) {
|
2020-09-14 19:13:26 +00:00
|
|
|
if (stack.isLastGroup) {
|
|
|
|
return root.sendTransaction()
|
|
|
|
}
|
|
|
|
stack.next()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
|
|
}
|
|
|
|
##^##*/
|