diff --git a/pages/History.qml b/pages/History.qml index f2cb860b..542b5576 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -651,7 +651,7 @@ Rectangle { MoneroComponents.TextPlain { font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: 15 - text: _amount + " XMR" + text: displayAmount color: MoneroComponents.Style.defaultFontColor anchors.verticalCenter: parent.verticalCenter @@ -870,7 +870,7 @@ Rectangle { MoneroComponents.TextPlain { font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: 15 - text: persistentSettings.historyHumanDates ? dateHuman : date + " " + time + text: persistentSettings.historyHumanDates ? dateHuman : dateTime color: MoneroComponents.Style.defaultFontColor anchors.verticalCenter: parent.verticalCenter @@ -882,7 +882,7 @@ Rectangle { onEntered: { parent.color = MoneroComponents.Style.orange if (persistentSettings.historyHumanDates) { - parent.text = date + " " + time; + parent.text = dateTime; } } onExited: { @@ -1197,7 +1197,7 @@ Rectangle { if(res[i].state === 'copyable_address') root.toClipboard(address); if(res[i].state === 'copyable_txkey') root.getTxKey(hash, res[i]); if(res[i].state === 'set_tx_note') root.editDescription(hash); - if(res[i].state === 'details') root.showTxDetails(hash, paymentId, destinations, subaddrAccount, subaddrIndex); + if(res[i].state === 'details') root.showTxDetails(hash, paymentId, destinations, subaddrAccount, subaddrIndex, dateTime, displayAmount, isout); if(res[i].state === 'proof') root.showTxProof(hash, paymentId, destinations, subaddrAccount, subaddrIndex); doCollapse = false; break; @@ -1480,12 +1480,12 @@ Rectangle { var timestamp = new Date(date + " " + time).getTime() / 1000; var dateHuman = Utils.ago(timestamp); - var _amount = amount; - if(_amount === 0){ + var displayAmount = amount; + if(displayAmount === 0){ // *sometimes* amount is 0, while the 'destinations string' // has the correct amount, so we try to fetch it from that instead. - _amount = TxUtils.destinationsToAmount(destinations); - _amount = Number(_amount *1); + displayAmount = TxUtils.destinationsToAmount(destinations); + displayAmount = Number(displayAmount *1); } var tx_note = currentWallet.getUserNote(hash); @@ -1503,15 +1503,14 @@ Rectangle { "i": i, "isout": isout, "amount": Number(amount), - "_amount": _amount, + "displayAmount": displayAmount + " XMR", "hash": hash, "paymentId": paymentId, "address": address, "destinations": destinations, "tx_note": tx_note, - "time": time, - "date": date, "dateHuman": dateHuman, + "dateTime": date + " " + time, "blockheight": blockheight, "address": address, "timestamp": timestamp, @@ -1588,17 +1587,20 @@ Rectangle { } } - function showTxDetails(hash, paymentId, destinations, subaddrAccount, subaddrIndex){ + function showTxDetails(hash, paymentId, destinations, subaddrAccount, subaddrIndex, dateTime, amount, isout) { var tx_note = currentWallet.getUserNote(hash) var rings = currentWallet.getRings(hash) var address_label = subaddrIndex == 0 ? (qsTr("Primary address") + translationManager.emptyString) : currentWallet.getSubaddressLabel(subaddrAccount, subaddrIndex) var address = currentWallet.address(subaddrAccount, subaddrIndex) + const hasPaymentId = parseInt(paymentId, 16); + const integratedAddress = !isout && hasPaymentId ? currentWallet.integratedAddress(paymentId) : null; + if (rings) rings = rings.replace(/\|/g, '\n') currentWallet.getTxKeyAsync(hash, function(hash, tx_key) { informationPopup.title = qsTr("Transaction details") + translationManager.emptyString; - informationPopup.content = buildTxDetailsString(hash, paymentId, tx_key, tx_note, destinations, rings, address, address_label); + informationPopup.content = buildTxDetailsString(hash, paymentId, tx_key, tx_note, destinations, rings, address, address_label, integratedAddress, dateTime, amount); informationPopup.onCloseCallback = null informationPopup.open(); }); @@ -1626,16 +1628,18 @@ Rectangle { appWindow.showStatusMessage(qsTr("Copied to clipboard"),3); } - function buildTxDetailsString(tx_id, paymentId, tx_key,tx_note, destinations, rings, address, address_label) { - var trStart = '', + function buildTxDetailsString(tx_id, paymentId, tx_key,tx_note, destinations, rings, address, address_label, integratedAddress, dateTime, amount) { + var trStart = '', trMiddle = '', trEnd = ""; return '' + (tx_id ? trStart + qsTr("Tx ID:") + trMiddle + tx_id + trEnd : "") - + (address_label ? trStart + qsTr("Address label:") + trMiddle + address_label + trEnd : "") + + (dateTime ? trStart + qsTr("Date:") + trMiddle + dateTime + trEnd : "") + + (amount ? trStart + qsTr("Amount:") + trMiddle + amount + trEnd : "") + (address ? trStart + qsTr("Address:") + trMiddle + address + trEnd : "") + (paymentId ? trStart + qsTr("Payment ID:") + trMiddle + paymentId + trEnd : "") + + (integratedAddress ? trStart + qsTr("Integrated address:") + trMiddle + integratedAddress + trEnd : "") + (tx_key ? trStart + qsTr("Tx key:") + trMiddle + tx_key + trEnd : "") + (tx_note ? trStart + qsTr("Tx note:") + trMiddle + tx_note + trEnd : "") + (destinations ? trStart + qsTr("Destinations:") + trMiddle + destinations + trEnd : "")