2020-08-04 11:10:09 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import QtGraphicalEffects 1.13
|
|
|
|
import "../imports"
|
|
|
|
|
|
|
|
Item {
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Insufficient balance"
|
|
|
|
property string balanceErrorMessage: qsTrId("insufficient-balance")
|
|
|
|
//% "Must be greater than 0"
|
|
|
|
property string greaterThan0ErrorMessage: qsTrId("must-be-greater-than-0")
|
2020-08-12 09:05:12 +00:00
|
|
|
//% "This needs to be a number"
|
|
|
|
property string invalidInputErrorMessage: qsTrId("this-needs-to-be-a-number")
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Please enter an amount"
|
|
|
|
property string noInputErrorMessage: qsTrId("please-enter-an-amount")
|
2020-08-12 09:05:12 +00:00
|
|
|
property string defaultCurrency: "USD"
|
2020-08-13 08:24:51 +00:00
|
|
|
property alias selectedFiatAmount: txtFiatBalance.text
|
|
|
|
property alias selectedAmount: inputAmount.text
|
2020-08-12 09:05:12 +00:00
|
|
|
property var selectedAccount
|
|
|
|
property alias selectedAsset: selectAsset.selectedAsset
|
|
|
|
property var getFiatValue: function () {}
|
|
|
|
property var getCryptoValue: function () {}
|
|
|
|
property bool isDirty: false
|
2020-10-28 07:44:09 +00:00
|
|
|
property bool validateBalance: true
|
2020-09-08 21:22:47 +00:00
|
|
|
property bool isValid: false
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
id: root
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
height: inputAmount.height + (inputAmount.validationError ? -16 - inputAmount.validationErrorTopMargin : 0) + txtFiatBalance.height + txtFiatBalance.anchors.topMargin
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.left: parent.left
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
function validate(checkDirty) {
|
|
|
|
let isValid = true
|
|
|
|
let error = ""
|
|
|
|
const hasTyped = checkDirty ? isDirty : true
|
|
|
|
const balance = parseFloat(txtBalance.text || "0.00")
|
|
|
|
const input = parseFloat(inputAmount.text || "0.00")
|
|
|
|
const noInput = inputAmount.text === ""
|
|
|
|
if (noInput && hasTyped) {
|
|
|
|
error = noInputErrorMessage
|
|
|
|
isValid = false
|
|
|
|
} else if (isNaN(inputAmount.text)) {
|
|
|
|
error = invalidInputErrorMessage
|
|
|
|
isValid = false
|
|
|
|
} else if (input === 0.00 && hasTyped) {
|
|
|
|
error = greaterThan0ErrorMessage
|
|
|
|
isValid = false
|
2020-10-28 07:44:09 +00:00
|
|
|
} else if (validateBalance && input > balance && !noInput) {
|
2020-08-12 09:05:12 +00:00
|
|
|
error = balanceErrorMessage
|
|
|
|
isValid = false
|
|
|
|
}
|
|
|
|
if (!isValid) {
|
|
|
|
inputAmount.validationError = error
|
|
|
|
txtBalanceDesc.color = Style.current.danger
|
|
|
|
txtBalance.color = Style.current.danger
|
|
|
|
} else {
|
|
|
|
inputAmount.validationError = ""
|
|
|
|
txtBalanceDesc.color = Style.current.secondaryText
|
|
|
|
txtBalance.color = Qt.binding(function() { return txtBalance.hovered ? Style.current.textColor : Style.current.secondaryText })
|
|
|
|
}
|
2020-08-20 04:45:29 +00:00
|
|
|
root.isValid = isValid
|
2020-08-12 09:05:12 +00:00
|
|
|
return isValid
|
|
|
|
}
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
onSelectedAccountChanged: {
|
2020-08-20 04:45:29 +00:00
|
|
|
selectAsset.assets = Qt.binding(function() {
|
|
|
|
if (selectedAccount) {
|
|
|
|
return selectedAccount.assets
|
|
|
|
}
|
|
|
|
})
|
|
|
|
txtBalance.text = Qt.binding(function() {
|
|
|
|
return selectAsset.selectedAsset ? Utils.stripTrailingZeros(selectAsset.selectedAsset.value) : ""
|
|
|
|
})
|
2020-08-12 09:05:12 +00:00
|
|
|
}
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
Item {
|
2020-10-28 07:44:09 +00:00
|
|
|
visible: root.validateBalance
|
2020-08-12 09:05:12 +00:00
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.top: parent.top
|
|
|
|
height: txtBalanceDesc.height
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
StyledText {
|
|
|
|
id: txtBalanceDesc
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Balance: "
|
|
|
|
text: qsTrId("balance--")
|
2020-08-12 09:05:12 +00:00
|
|
|
anchors.right: txtBalance.left
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 13
|
|
|
|
color: Style.current.secondaryText
|
|
|
|
}
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
id: txtBalance
|
|
|
|
property bool hovered: false
|
2020-08-13 08:24:51 +00:00
|
|
|
text: selectAsset.selectedAsset ? Utils.stripTrailingZeros(selectAsset.selectedAsset.value) : "0.00"
|
2020-08-12 09:05:12 +00:00
|
|
|
anchors.right: parent.right
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 13
|
|
|
|
color: hovered ? Style.current.textColor : Style.current.secondaryText
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
MouseArea {
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: true
|
|
|
|
onExited: {
|
|
|
|
txtBalance.hovered = false
|
|
|
|
}
|
|
|
|
onEntered: {
|
|
|
|
txtBalance.hovered = true
|
|
|
|
}
|
|
|
|
onClicked: {
|
2020-08-20 04:45:29 +00:00
|
|
|
inputAmount.text = Utils.stripTrailingZeros(selectAsset.selectedAsset.value)
|
2020-08-12 09:05:12 +00:00
|
|
|
txtFiatBalance.text = root.getFiatValue(inputAmount.text, selectAsset.selectedAsset.symbol, root.defaultCurrency)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
Input {
|
|
|
|
id: inputAmount
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Asset & Amount"
|
|
|
|
label: qsTrId("asset---amount")
|
2020-08-12 09:05:12 +00:00
|
|
|
placeholderText: "0.00"
|
|
|
|
anchors.top: parent.top
|
|
|
|
customHeight: 56
|
|
|
|
validationErrorAlignment: TextEdit.AlignRight
|
|
|
|
validationErrorTopMargin: 8
|
|
|
|
Keys.onReleased: {
|
|
|
|
let amount = inputAmount.text.trim()
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
if (isNaN(amount)) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (amount === "") {
|
|
|
|
txtFiatBalance.text = "0.00"
|
|
|
|
} else {
|
|
|
|
txtFiatBalance.text = root.getFiatValue(amount, selectAsset.selectedAsset.symbol, root.defaultCurrency)
|
|
|
|
}
|
2020-08-04 11:10:09 +00:00
|
|
|
}
|
2020-08-12 09:05:12 +00:00
|
|
|
onTextChanged: {
|
2020-08-20 04:45:29 +00:00
|
|
|
root.isDirty = true
|
2020-08-12 09:05:12 +00:00
|
|
|
root.validate(true)
|
2020-08-04 11:10:09 +00:00
|
|
|
}
|
2020-08-12 09:05:12 +00:00
|
|
|
}
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
AssetSelector {
|
|
|
|
id: selectAsset
|
|
|
|
width: 86
|
|
|
|
height: 28
|
|
|
|
anchors.top: inputAmount.top
|
|
|
|
anchors.topMargin: Style.current.bigPadding + 14
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Style.current.smallPadding
|
|
|
|
onSelectedAssetChanged: {
|
2020-08-20 04:45:29 +00:00
|
|
|
if (!selectAsset.selectedAsset) {
|
|
|
|
return
|
|
|
|
}
|
2020-08-13 08:24:51 +00:00
|
|
|
txtBalance.text = Utils.stripTrailingZeros(selectAsset.selectedAsset.value)
|
2020-08-20 11:49:08 +00:00
|
|
|
if (inputAmount.text === "" || isNaN(inputAmount.text)) {
|
2020-08-12 09:05:12 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
txtFiatBalance.text = root.getFiatValue(inputAmount.text, selectAsset.selectedAsset.symbol, root.defaultCurrency)
|
2020-08-20 04:45:29 +00:00
|
|
|
root.validate(true)
|
2020-08-12 09:05:12 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
Item {
|
|
|
|
height: txtFiatBalance.height
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.top: inputAmount.bottom
|
|
|
|
anchors.topMargin: inputAmount.validationError ? -16 : inputAmount.validationErrorTopMargin
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
StyledTextField {
|
|
|
|
id: txtFiatBalance
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.top: parent.top
|
|
|
|
color: txtFiatBalance.activeFocus ? Style.current.textColor : Style.current.secondaryText
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 12
|
|
|
|
inputMethodHints: Qt.ImhFormattedNumbersOnly
|
2020-08-13 08:24:51 +00:00
|
|
|
text: "0.00"
|
2020-08-12 09:05:12 +00:00
|
|
|
selectByMouse: true
|
|
|
|
background: Rectangle {
|
|
|
|
color: Style.current.transparent
|
|
|
|
}
|
|
|
|
padding: 0
|
|
|
|
Keys.onReleased: {
|
|
|
|
let balance = txtFiatBalance.text.trim()
|
|
|
|
if (balance === "" || isNaN(balance)) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
inputAmount.text = root.getCryptoValue(balance, root.defaultCurrency, selectAsset.selectedAsset.symbol)
|
|
|
|
}
|
|
|
|
}
|
2020-08-04 11:10:09 +00:00
|
|
|
|
2020-08-12 09:05:12 +00:00
|
|
|
StyledText {
|
|
|
|
id: txtFiatSymbol
|
|
|
|
text: root.defaultCurrency.toUpperCase()
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 12
|
|
|
|
color: Style.current.secondaryText
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.left: txtFiatBalance.right
|
|
|
|
anchors.leftMargin: 2
|
|
|
|
}
|
|
|
|
}
|
2020-08-04 11:10:09 +00:00
|
|
|
}
|