mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-03 10:14:04 +00:00
423882df89
I noticed that the 1:1 chat commands were not able to send token transactions due to "intrinsic gas too low" error. I quickly realised there there were a few components missing, which have been fixed. *feat: update the 1:1 chat commands transaction modal to allow editing of the from account and network fee* The TransactionStackGroup was updated slightly to allow manual control of back/next actions. Fixes #870. *fix: Create distinct modal transaction actions* Previously, adding `Connection`s for the `walletModel.transactionWasSent` signal in different dialogs would cause the signal to be handled in the wrong dialog. The solution was to pass a `uuid` from the requesting dialog, and include the `uuid` in the response, so that only requests that were requested from the dialog would be handled. *fix: update 1:1 translations* All the translations were not being translated for me. I noticed that they did not exist in the `.ts` translation files either.
76 lines
2.1 KiB
QML
76 lines
2.1 KiB
QML
import QtQuick 2.3
|
|
import "../../../../../../shared"
|
|
import "../../../../../../imports"
|
|
import "../../ChatComponents"
|
|
|
|
Item {
|
|
width: parent.width
|
|
height: childrenRect.height + Style.current.halfPadding
|
|
|
|
Separator {
|
|
id: separator
|
|
}
|
|
|
|
StyledText {
|
|
id: signText
|
|
color: Style.current.blue
|
|
text: qsTr("Sign and send")
|
|
horizontalAlignment: Text.AlignHCenter
|
|
wrapMode: Text.WordWrap
|
|
font.weight: Font.Medium
|
|
anchors.right: parent.right
|
|
anchors.left: parent.left
|
|
topPadding: Style.current.halfPadding
|
|
anchors.top: separator.bottom
|
|
font.pixelSize: 15
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
walletModel.setFocusedAccountByAddress(commandParametersObject.fromAddress)
|
|
var acc = walletModel.focusedAccount
|
|
signTransactionModal.selectedAccount = {
|
|
name: acc.name,
|
|
address: commandParametersObject.fromAddress,
|
|
iconColor: acc.iconColor,
|
|
assets: acc.assets
|
|
}
|
|
signTransactionModal.open()
|
|
}
|
|
}
|
|
}
|
|
|
|
SignTransactionModal {
|
|
id: signTransactionModal
|
|
onOpened: {
|
|
walletModel.getGasPricePredictions()
|
|
}
|
|
selectedAccount: {}
|
|
selectedRecipient: {
|
|
return {
|
|
address: commandParametersObject.address,
|
|
identicon: chatsModel.activeChannel.identicon,
|
|
name: chatsModel.activeChannel.name,
|
|
type: RecipientSelector.Type.Contact
|
|
}
|
|
}
|
|
selectedAsset: {
|
|
return {
|
|
name: token.name,
|
|
symbol: token.symbol,
|
|
address: commandParametersObject.contract
|
|
}
|
|
}
|
|
selectedAmount: tokenAmount
|
|
selectedFiatAmount: fiatValue
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;formeditorColor:"#ffffff";formeditorZoom:1.25}
|
|
}
|
|
##^##*/
|
|
|