2023-04-05 11:42:12 +00:00
|
|
|
|
import QtQuick 2.15
|
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
|
import QtQml 2.15
|
2022-09-01 15:34:27 +00:00
|
|
|
|
|
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
|
import StatusQ.Core 0.1
|
2023-01-12 23:26:48 +00:00
|
|
|
|
import StatusQ.Controls 0.1
|
2024-03-13 17:38:16 +00:00
|
|
|
|
import StatusQ.Core.Utils 0.1 as SQUtils
|
2021-10-05 20:50:22 +00:00
|
|
|
|
|
2023-09-04 10:19:02 +00:00
|
|
|
|
import AppLayouts.Wallet 1.0
|
2024-05-22 08:13:39 +00:00
|
|
|
|
import AppLayouts.Wallet.stores 1.0 as WalletStores
|
2023-09-04 10:19:02 +00:00
|
|
|
|
|
2021-10-05 20:50:22 +00:00
|
|
|
|
import utils 1.0
|
2021-10-27 21:27:49 +00:00
|
|
|
|
import shared 1.0
|
2024-05-22 08:13:39 +00:00
|
|
|
|
import shared.stores 1.0 as SharedStores
|
2023-05-10 11:54:06 +00:00
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\qmltype TransactionDelegate
|
|
|
|
|
\inherits StatusListItem
|
|
|
|
|
\inqmlmodule shared.controls
|
|
|
|
|
\since shared.controls 1.0
|
|
|
|
|
\brief Delegate for transaction activity list
|
|
|
|
|
|
|
|
|
|
Delegate to display transaction activity data.
|
|
|
|
|
|
|
|
|
|
\qml
|
|
|
|
|
TransactionDelegate {
|
|
|
|
|
id: delegate
|
|
|
|
|
width: ListView.view.width
|
2023-06-30 15:07:53 +00:00
|
|
|
|
modelData: model.activityEntry
|
2024-09-24 11:51:22 +00:00
|
|
|
|
flatNetworks: root.flatNetworks
|
|
|
|
|
currenciesStore: root.currencyStore
|
2024-05-22 08:13:39 +00:00
|
|
|
|
walletRootStore: WalletStores.RootStore
|
2023-06-30 15:07:53 +00:00
|
|
|
|
loading: isModelDataValid
|
2023-05-10 11:54:06 +00:00
|
|
|
|
}
|
|
|
|
|
\endqml
|
|
|
|
|
|
|
|
|
|
Additional usages should be handled using states.
|
|
|
|
|
*/
|
2021-10-05 20:50:22 +00:00
|
|
|
|
|
2022-09-01 15:34:27 +00:00
|
|
|
|
StatusListItem {
|
|
|
|
|
id: root
|
|
|
|
|
|
2023-05-10 11:54:06 +00:00
|
|
|
|
signal retryClicked()
|
2023-01-12 23:26:48 +00:00
|
|
|
|
|
2022-09-01 15:34:27 +00:00
|
|
|
|
property var modelData
|
2023-06-30 15:07:53 +00:00
|
|
|
|
property string timeStampText: isModelDataValid ? LocaleUtils.formatRelativeTimestamp(modelData.timestamp * 1000) : ""
|
2023-07-26 11:50:27 +00:00
|
|
|
|
property bool showAllAccounts: false
|
2024-02-19 08:40:16 +00:00
|
|
|
|
property bool displayValues: true
|
2023-06-30 15:07:53 +00:00
|
|
|
|
|
2024-09-24 11:51:22 +00:00
|
|
|
|
required property var flatNetworks
|
|
|
|
|
|
|
|
|
|
required property SharedStores.CurrenciesStore currenciesStore
|
2024-05-22 08:13:39 +00:00
|
|
|
|
required property WalletStores.RootStore walletRootStore
|
2022-09-01 15:34:27 +00:00
|
|
|
|
|
2023-02-28 17:15:22 +00:00
|
|
|
|
readonly property bool isModelDataValid: modelData !== undefined && !!modelData
|
2023-06-30 15:07:53 +00:00
|
|
|
|
|
2024-02-29 14:53:08 +00:00
|
|
|
|
readonly property string txID: isModelDataValid ? modelData.id : "INVALID"
|
2023-06-30 15:07:53 +00:00
|
|
|
|
readonly property int transactionStatus: isModelDataValid ? modelData.status : Constants.TransactionStatus.Pending
|
|
|
|
|
readonly property bool isMultiTransaction: isModelDataValid && modelData.isMultiTransaction
|
2024-09-24 11:51:22 +00:00
|
|
|
|
readonly property string currentCurrency: currenciesStore.currentCurrency
|
2023-10-26 08:01:52 +00:00
|
|
|
|
readonly property double cryptoValue: isModelDataValid ? modelData.amount : 0.0
|
2024-11-22 18:07:25 +00:00
|
|
|
|
readonly property double fiatValue: isModelDataValid ? currenciesStore.getFiatValue(cryptoValue, modelData.symbol) : 0.0
|
2023-06-30 15:07:53 +00:00
|
|
|
|
readonly property double inCryptoValue: isModelDataValid ? modelData.inAmount : 0.0
|
2024-09-24 11:51:22 +00:00
|
|
|
|
readonly property double inFiatValue: isModelDataValid && isMultiTransaction ? currenciesStore.getFiatValue(inCryptoValue, modelData.inSymbol): 0.0
|
2023-06-30 15:07:53 +00:00
|
|
|
|
readonly property double outCryptoValue: isModelDataValid ? modelData.outAmount : 0.0
|
2024-09-24 11:51:22 +00:00
|
|
|
|
readonly property double outFiatValue: isModelDataValid && isMultiTransaction ? currenciesStore.getFiatValue(outCryptoValue, modelData.outSymbol): 0.0
|
|
|
|
|
readonly property string networkColor: isModelDataValid ? SQUtils.ModelUtils.getByKey(flatNetworks, "chainId", modelData.chainId, "chainColor") : ""
|
|
|
|
|
readonly property string networkName: isModelDataValid ? SQUtils.ModelUtils.getByKey(flatNetworks, "chainId", modelData.chainId, "chainName") : ""
|
|
|
|
|
readonly property string networkNameIn: isMultiTransaction ? SQUtils.ModelUtils.getByKey(flatNetworks, "chainId", modelData.chainIdIn, "chainName") : ""
|
|
|
|
|
readonly property string networkNameOut: isMultiTransaction ? SQUtils.ModelUtils.getByKey(flatNetworks, "chainId", modelData.chainIdOut, "chainName") : ""
|
2023-06-30 15:07:53 +00:00
|
|
|
|
readonly property string addressNameTo: isModelDataValid ? walletRootStore.getNameForAddress(modelData.recipient) : ""
|
|
|
|
|
readonly property string addressNameFrom: isModelDataValid ? walletRootStore.getNameForAddress(modelData.sender) : ""
|
2023-02-28 17:15:22 +00:00
|
|
|
|
readonly property bool isNFT: isModelDataValid && modelData.isNFT
|
2024-07-08 08:28:04 +00:00
|
|
|
|
readonly property bool isCommunityAssetViaAirdrop: isModelDataValid && !!communityId && d.txType === Constants.TransactionType.Mint
|
2024-02-22 14:41:19 +00:00
|
|
|
|
readonly property string communityId: isModelDataValid && modelData.communityId ? modelData.communityId : ""
|
|
|
|
|
property var community: null
|
|
|
|
|
readonly property bool isCommunityToken: !!community && Object.keys(community).length > 0
|
|
|
|
|
readonly property string communityImage: isCommunityToken ? community.image : ""
|
|
|
|
|
readonly property string communityName: isCommunityToken ? community.name : ""
|
2023-06-30 15:07:53 +00:00
|
|
|
|
|
2024-07-17 08:16:02 +00:00
|
|
|
|
readonly property var dAppDetails: {
|
|
|
|
|
if (!isModelDataValid) {
|
|
|
|
|
return null
|
|
|
|
|
}
|
|
|
|
|
if (modelData.txType === Constants.TransactionType.Approve) {
|
|
|
|
|
return walletRootStore.getDappDetails(modelData.chainId, modelData.approvalSpender)
|
|
|
|
|
}
|
|
|
|
|
if (modelData.txType === Constants.TransactionType.Swap) {
|
|
|
|
|
return walletRootStore.getDappDetails(modelData.chainId, modelData.interactedContractAddress)
|
|
|
|
|
}
|
|
|
|
|
return null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
readonly property string dAppIcon: dAppDetails ? dAppDetails.icon : ""
|
|
|
|
|
readonly property string dAppUrl: dAppDetails ? dAppDetails.url : ""
|
|
|
|
|
readonly property string dAppName: dAppDetails ? dAppDetails.name : ""
|
|
|
|
|
|
2023-05-10 11:54:06 +00:00
|
|
|
|
readonly property string transactionValue: {
|
|
|
|
|
if (!isModelDataValid) {
|
|
|
|
|
return qsTr("N/A")
|
2023-06-30 15:07:53 +00:00
|
|
|
|
} else if (root.isNFT) {
|
2024-07-24 19:19:51 +00:00
|
|
|
|
let value = ""
|
|
|
|
|
if (d.txType === Constants.TransactionType.Mint) {
|
|
|
|
|
value += modelData.amount + " "
|
|
|
|
|
}
|
|
|
|
|
value += (modelData.nftName ? modelData.nftName : "#" + modelData.tokenID)
|
|
|
|
|
return value
|
2023-08-02 04:36:54 +00:00
|
|
|
|
} else if (!modelData.symbol && !!modelData.tokenAddress) {
|
2024-09-24 11:51:22 +00:00
|
|
|
|
return "%1 (%2)".arg(root.currenciesStore.formatCurrencyAmount(cryptoValue, "")).arg(Utils.compactAddress(modelData.tokenAddress, 4))
|
2023-05-10 11:54:06 +00:00
|
|
|
|
}
|
2024-09-24 11:51:22 +00:00
|
|
|
|
return root.currenciesStore.formatCurrencyAmount(cryptoValue, modelData.symbol)
|
2023-05-10 11:54:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-08-02 04:36:54 +00:00
|
|
|
|
readonly property string inTransactionValue: {
|
|
|
|
|
if (!isModelDataValid || !isMultiTransaction) {
|
|
|
|
|
return qsTr("N/A")
|
|
|
|
|
} else if (!modelData.inSymbol && !!modelData.tokenInAddress) {
|
2024-09-24 11:51:22 +00:00
|
|
|
|
return "%1 (%2)".arg(root.currenciesStore.formatCurrencyAmount(inCryptoValue, "")).arg(Utils.compactAddress(modelData.tokenInAddress, 4))
|
2023-08-02 04:36:54 +00:00
|
|
|
|
}
|
2024-09-24 11:51:22 +00:00
|
|
|
|
return currenciesStore.formatCurrencyAmount(inCryptoValue, modelData.inSymbol)
|
2023-08-02 04:36:54 +00:00
|
|
|
|
}
|
|
|
|
|
readonly property string outTransactionValue: {
|
|
|
|
|
if (!isModelDataValid || !isMultiTransaction) {
|
|
|
|
|
return qsTr("N/A")
|
|
|
|
|
} else if (!modelData.outSymbol && !!modelData.tokenOutAddress) {
|
2024-09-24 11:51:22 +00:00
|
|
|
|
return "%1 (%2)".arg(root.currenciesStore.formatCurrencyAmount(outCryptoValue, "")).arg(Utils.compactAddress(modelData.tokenOutAddress, 4))
|
2023-08-02 04:36:54 +00:00
|
|
|
|
}
|
2024-09-24 11:51:22 +00:00
|
|
|
|
return currenciesStore.formatCurrencyAmount(outCryptoValue, modelData.outSymbol)
|
2023-08-02 04:36:54 +00:00
|
|
|
|
}
|
2023-06-30 15:07:53 +00:00
|
|
|
|
|
2023-05-10 11:54:06 +00:00
|
|
|
|
readonly property string tokenImage: {
|
2024-07-08 08:28:04 +00:00
|
|
|
|
if (!isModelDataValid || d.txType === Constants.TransactionType.ContractDeployment)
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return ""
|
|
|
|
|
if (root.isNFT) {
|
|
|
|
|
return modelData.nftImageUrl ? modelData.nftImageUrl : ""
|
|
|
|
|
} else {
|
2023-06-30 15:07:53 +00:00
|
|
|
|
return Constants.tokenIcon(isMultiTransaction ? modelData.outSymbol : modelData.symbol)
|
2023-05-10 11:54:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-30 15:07:53 +00:00
|
|
|
|
readonly property string inTokenImage: isModelDataValid ? Constants.tokenIcon(modelData.inSymbol) : ""
|
2023-05-10 11:54:06 +00:00
|
|
|
|
|
|
|
|
|
readonly property string toAddress: !!addressNameTo ?
|
|
|
|
|
addressNameTo :
|
2023-02-28 17:15:22 +00:00
|
|
|
|
isModelDataValid ?
|
2023-06-15 13:09:35 +00:00
|
|
|
|
Utils.compactAddress(modelData.recipient, 4) :
|
2023-02-28 17:15:22 +00:00
|
|
|
|
""
|
|
|
|
|
|
2023-05-10 11:54:06 +00:00
|
|
|
|
readonly property string fromAddress: !!addressNameFrom ?
|
|
|
|
|
addressNameFrom :
|
2023-02-28 17:15:22 +00:00
|
|
|
|
isModelDataValid ?
|
2023-06-15 13:09:35 +00:00
|
|
|
|
Utils.compactAddress(modelData.sender, 4) :
|
2023-02-28 17:15:22 +00:00
|
|
|
|
""
|
2024-11-18 18:50:26 +00:00
|
|
|
|
|
|
|
|
|
readonly property string interactedContractAddress: isModelDataValid ? Utils.compactAddress(modelData.interactedContractAddress, 4) : ""
|
|
|
|
|
readonly property string approvalSpender: isModelDataValid ? Utils.compactAddress(modelData.approvalSpender, 4) : ""
|
2023-05-10 11:54:06 +00:00
|
|
|
|
|
|
|
|
|
property StatusAssetSettings statusIconAsset: StatusAssetSettings {
|
|
|
|
|
width: 12
|
|
|
|
|
height: 12
|
|
|
|
|
bgWidth: width + 2
|
|
|
|
|
bgHeight: bgWidth
|
|
|
|
|
bgRadius: bgWidth / 2
|
|
|
|
|
bgColor: root.color
|
|
|
|
|
color: "transparent"
|
|
|
|
|
name: {
|
|
|
|
|
switch(root.transactionStatus) {
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionStatus.Pending:
|
2024-10-15 19:26:12 +00:00
|
|
|
|
return Theme.svg("transaction/pending")
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionStatus.Complete:
|
2023-09-04 10:19:02 +00:00
|
|
|
|
case Constants.TransactionStatus.Finalised:
|
2024-11-18 18:50:26 +00:00
|
|
|
|
return Theme.svg("transaction/confirmed")
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionStatus.Failed:
|
2024-10-15 19:26:12 +00:00
|
|
|
|
return Theme.svg("transaction/failed")
|
2023-05-10 11:54:06 +00:00
|
|
|
|
default:
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
property StatusAssetSettings tokenIconAsset: StatusAssetSettings {
|
2023-08-30 12:10:59 +00:00
|
|
|
|
width: 20
|
|
|
|
|
height: 20
|
|
|
|
|
bgWidth: width + 2
|
|
|
|
|
bgHeight: height + 2
|
|
|
|
|
bgRadius: bgWidth / 2
|
2024-02-08 12:49:12 +00:00
|
|
|
|
bgColor: d.lightTheme && Constants.isDefaultTokenIcon(root.tokenImage) ?
|
2023-08-30 12:10:59 +00:00
|
|
|
|
Theme.palette.white : "transparent"
|
2023-05-10 11:54:06 +00:00
|
|
|
|
color: "transparent"
|
|
|
|
|
isImage: !loading
|
|
|
|
|
name: root.tokenImage
|
|
|
|
|
isLetterIdenticon: loading
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
|
id: d
|
|
|
|
|
|
|
|
|
|
property int loadingPixelSize: 13
|
|
|
|
|
property int datePixelSize: 12
|
|
|
|
|
property int titlePixelSize: 15
|
|
|
|
|
property int subtitlePixelSize: 13
|
2023-08-02 04:36:54 +00:00
|
|
|
|
property bool showRetryButton: false
|
2024-02-08 12:49:12 +00:00
|
|
|
|
|
2024-10-15 19:26:12 +00:00
|
|
|
|
readonly property bool isLightTheme: Theme.palette.name === Constants.lightThemeName
|
2024-02-08 12:49:12 +00:00
|
|
|
|
property color animatedBgColor
|
2024-11-18 18:50:26 +00:00
|
|
|
|
property int txType: walletRootStore.getTransactionType(root.modelData)
|
2024-07-08 08:28:04 +00:00
|
|
|
|
|
2024-07-17 08:16:02 +00:00
|
|
|
|
readonly property var secondIconAsset: StatusAssetSettings {
|
|
|
|
|
width: root.tokenIconAsset.width
|
|
|
|
|
height: root.tokenIconAsset.height
|
|
|
|
|
bgWidth: width + 2
|
|
|
|
|
bgHeight: height + 2
|
|
|
|
|
bgRadius: bgWidth / 2
|
|
|
|
|
bgColor: Theme.palette.white
|
|
|
|
|
isImage: root.tokenIconAsset.isImage
|
|
|
|
|
color: root.tokenIconAsset.color
|
|
|
|
|
name: d.secondIconSource
|
|
|
|
|
isLetterIdenticon: root.tokenIconAsset.isLetterIdenticon
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
readonly property string secondIconSource: {
|
|
|
|
|
if (!root.isModelDataValid || root.isNFT) {
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (modelData.txType === Constants.TransactionType.Swap) {
|
|
|
|
|
return root.inTokenImage
|
|
|
|
|
} else if (modelData.txType === Constants.TransactionType.Approve) {
|
|
|
|
|
return root.dAppIcon
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
readonly property bool isSecondIconVisible: secondIconSource !== ""
|
2023-05-10 11:54:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-22 14:41:19 +00:00
|
|
|
|
function getSubtitle(allAccounts, description) {
|
|
|
|
|
if (root.isCommunityAssetViaAirdrop) {
|
|
|
|
|
let communityInfo = ""
|
|
|
|
|
if (!description) {
|
|
|
|
|
// Showing image only in delegate. In description url shouldn't be showed
|
|
|
|
|
communityInfo += "<img src='" + root.communityImage + "' width='18' height='18' </img> "
|
|
|
|
|
}
|
|
|
|
|
communityInfo += root.communityName
|
2024-11-18 18:50:26 +00:00
|
|
|
|
return qsTr("%1 (community asset) from %2 on %3").arg(root.transactionValue).arg(communityInfo).arg(root.networkName)
|
2024-02-22 14:41:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 08:28:04 +00:00
|
|
|
|
switch(d.txType) {
|
2024-11-18 18:50:26 +00:00
|
|
|
|
case Constants.TransactionType.Send:
|
|
|
|
|
// Cross chain send. Use bridge pattern
|
|
|
|
|
if (root.networkNameIn != root.networkNameOut && root.networkNameIn && root.networkNameOut) {
|
|
|
|
|
if (allAccounts)
|
|
|
|
|
return qsTr("%1 from %2 to %3 on %4 and %5").arg(inTransactionValue).arg(fromAddress).arg(toAddress).arg(networkNameOut).arg(networkNameIn)
|
|
|
|
|
return qsTr("%1 to %2 on %3 and %4").arg(inTransactionValue).arg(toAddress).arg(networkNameOut).arg(networkNameIn)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (allAccounts)
|
|
|
|
|
return qsTr("%1 from %2 to %3 on %4").arg(transactionValue).arg(fromAddress).arg(toAddress).arg(networkName)
|
|
|
|
|
return qsTr("%1 to %2 on %3").arg(transactionValue).arg(toAddress).arg(networkName)
|
|
|
|
|
|
2023-07-26 11:50:27 +00:00
|
|
|
|
case Constants.TransactionType.Receive:
|
2024-07-08 08:28:04 +00:00
|
|
|
|
// Cross chain receive. Use bridge pattern
|
2024-07-23 09:51:11 +00:00
|
|
|
|
if (root.networkNameIn != root.networkNameOut && root.networkNameIn && root.networkNameOut) {
|
2024-07-08 08:28:04 +00:00
|
|
|
|
if (allAccounts)
|
2024-11-18 18:50:26 +00:00
|
|
|
|
return qsTr("%1 from %2 to %3 on %4 and %5").arg(inTransactionValue).arg(fromAddress).arg(toAddress).arg(networkNameOut).arg(networkNameIn)
|
|
|
|
|
return qsTr("%1 from %2 on %3 and %4").arg(inTransactionValue).arg(toAddress).arg(networkNameOut).arg(networkNameIn)
|
2024-07-08 08:28:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-07-26 11:50:27 +00:00
|
|
|
|
if (allAccounts)
|
2024-11-18 18:50:26 +00:00
|
|
|
|
return qsTr("%1 from %2 to %3 on %4").arg(transactionValue).arg(fromAddress).arg(toAddress).arg(networkName)
|
|
|
|
|
return qsTr("%1 from %2 on %3").arg(transactionValue).arg(fromAddress).arg(networkName)
|
2023-07-26 11:50:27 +00:00
|
|
|
|
case Constants.TransactionType.Destroy:
|
|
|
|
|
if (allAccounts)
|
2024-11-18 18:50:26 +00:00
|
|
|
|
return qsTr("%1 at %2 on %3 in %4").arg(inTransactionValue).arg(toAddress).arg(networkName).arg(toAddress)
|
|
|
|
|
return qsTr("%1 at %2 on %3").arg(inTransactionValue).arg(toAddress).arg(networkName)
|
2023-07-26 11:50:27 +00:00
|
|
|
|
case Constants.TransactionType.Swap:
|
|
|
|
|
if (allAccounts)
|
2024-11-18 18:50:26 +00:00
|
|
|
|
return qsTr("%1 to %2 in %3 on %4").arg(outTransactionValue).arg(inTransactionValue).arg(fromAddress).arg(networkName)
|
2024-07-17 08:16:02 +00:00
|
|
|
|
return qsTr("%1 to %2 on %3").arg(outTransactionValue).arg(inTransactionValue).arg(networkName)
|
2023-07-26 11:50:27 +00:00
|
|
|
|
case Constants.TransactionType.Bridge:
|
|
|
|
|
if (allAccounts)
|
2024-08-21 12:49:12 +00:00
|
|
|
|
return qsTr("%1 from %2 to %3 in %4").arg(outTransactionValue).arg(networkNameOut).arg(networkNameIn).arg(fromAddress)
|
|
|
|
|
return qsTr("%1 from %2 to %3").arg(outTransactionValue).arg(networkNameOut).arg(networkNameIn)
|
2023-07-26 11:50:27 +00:00
|
|
|
|
case Constants.TransactionType.ContractDeployment:
|
|
|
|
|
const name = addressNameTo || addressNameFrom
|
2023-08-30 12:10:59 +00:00
|
|
|
|
return qsTr("Via %1 on %2").arg(name).arg(networkName)
|
2023-08-04 10:47:45 +00:00
|
|
|
|
case Constants.TransactionType.Mint:
|
|
|
|
|
if (allAccounts)
|
2023-09-21 06:58:44 +00:00
|
|
|
|
return qsTr("%1 via %2 in %3").arg(transactionValue).arg(networkName).arg(toAddress)
|
|
|
|
|
return qsTr("%1 via %2").arg(transactionValue).arg(networkName)
|
2024-07-17 08:16:02 +00:00
|
|
|
|
case Constants.TransactionType.Approve:
|
|
|
|
|
if (root.dAppUrl !== "") {
|
|
|
|
|
if (allAccounts)
|
|
|
|
|
return qsTr("%1 in %2 for %3 on %4").arg(transactionValue).arg(toAddress).arg(dAppUrl).arg(networkName)
|
|
|
|
|
return qsTr("%1 for %2 on %3").arg(transactionValue).arg(dAppUrl).arg(networkName)
|
2024-11-18 18:50:26 +00:00
|
|
|
|
}
|
2024-07-17 08:16:02 +00:00
|
|
|
|
if (allAccounts)
|
2024-11-18 18:50:26 +00:00
|
|
|
|
return qsTr("%1 in %2 for %3 on %4").arg(transactionValue).arg(fromAddress).arg(approvalSpender).arg(networkName)
|
|
|
|
|
return qsTr("%1 for %2 on %3").arg(transactionValue).arg(approvalSpender).arg(networkName)
|
2023-07-26 11:50:27 +00:00
|
|
|
|
default:
|
2024-11-18 18:50:26 +00:00
|
|
|
|
// Unknown contract interaction
|
2023-07-26 11:50:27 +00:00
|
|
|
|
if (allAccounts)
|
2024-11-18 18:50:26 +00:00
|
|
|
|
return qsTr("Between %1 and %2 on %3").arg(fromAddress).arg(interactedContractAddress).arg(networkName)
|
|
|
|
|
return qsTr("With %1 on %2").arg(interactedContractAddress).arg(networkName)
|
2023-07-26 11:50:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-10 11:54:06 +00:00
|
|
|
|
rightPadding: 16
|
2023-04-07 11:03:59 +00:00
|
|
|
|
enabled: !loading
|
2023-06-30 15:07:53 +00:00
|
|
|
|
loading: !isModelDataValid
|
2024-02-08 12:49:12 +00:00
|
|
|
|
color: {
|
|
|
|
|
if (bgColorAnimation.running) {
|
|
|
|
|
return d.animatedBgColor
|
|
|
|
|
}
|
2024-10-15 19:26:12 +00:00
|
|
|
|
return sensor.containsMouse ? Theme.palette.baseColor5 : Theme.palette.transparent
|
2024-02-08 12:49:12 +00:00
|
|
|
|
}
|
2023-05-10 11:54:06 +00:00
|
|
|
|
|
|
|
|
|
statusListItemIcon.active: (loading || root.asset.name)
|
|
|
|
|
asset {
|
|
|
|
|
width: 24
|
|
|
|
|
height: 24
|
|
|
|
|
isImage: false
|
|
|
|
|
imgIsIdenticon: true
|
|
|
|
|
isLetterIdenticon: loading
|
|
|
|
|
name: {
|
2023-06-15 13:09:35 +00:00
|
|
|
|
if (!root.isModelDataValid)
|
|
|
|
|
return ""
|
|
|
|
|
|
2024-07-08 08:28:04 +00:00
|
|
|
|
switch(d.txType) {
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Send:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return "send"
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Receive:
|
2023-06-07 08:38:44 +00:00
|
|
|
|
return "receive"
|
2023-08-04 10:47:45 +00:00
|
|
|
|
case Constants.TransactionType.Mint:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return "token"
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Destroy:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return "destroy"
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Swap:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return "swap"
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Bridge:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return "bridge"
|
2023-07-24 11:18:42 +00:00
|
|
|
|
case Constants.TransactionType.ContractDeployment:
|
|
|
|
|
return "contract_deploy"
|
2024-07-17 08:16:02 +00:00
|
|
|
|
case Constants.TransactionType.Approve:
|
|
|
|
|
return "approve"
|
2023-05-10 11:54:06 +00:00
|
|
|
|
default:
|
2024-11-18 18:50:26 +00:00
|
|
|
|
return "contract_deploy"
|
2023-01-12 23:26:48 +00:00
|
|
|
|
}
|
2021-10-05 20:50:22 +00:00
|
|
|
|
}
|
2023-05-10 11:54:06 +00:00
|
|
|
|
bgColor: "transparent"
|
2023-05-16 08:25:40 +00:00
|
|
|
|
color: Theme.palette.directColor1
|
2023-05-10 11:54:06 +00:00
|
|
|
|
bgBorderWidth: 1
|
|
|
|
|
bgBorderColor: Theme.palette.primaryColor3
|
2023-01-12 23:26:48 +00:00
|
|
|
|
}
|
2023-05-10 11:54:06 +00:00
|
|
|
|
|
|
|
|
|
sensor.children: [
|
|
|
|
|
StatusRoundIcon {
|
|
|
|
|
id: leftIconStatusIcon
|
|
|
|
|
visible: !root.loading
|
|
|
|
|
anchors {
|
|
|
|
|
right: root.statusListItemIcon.right
|
|
|
|
|
bottom: root.statusListItemIcon.bottom
|
|
|
|
|
}
|
|
|
|
|
asset: root.statusIconAsset
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
// Title
|
|
|
|
|
title: {
|
|
|
|
|
if (root.loading) {
|
|
|
|
|
return "dummmy"
|
|
|
|
|
} else if (!root.isModelDataValid) {
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-12 13:04:39 +00:00
|
|
|
|
const isPending = root.transactionStatus === Constants.TransactionStatus.Pending
|
|
|
|
|
const failed = root.transactionStatus === Constants.TransactionStatus.Failed
|
2024-07-08 08:28:04 +00:00
|
|
|
|
switch(d.txType) {
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Send:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return failed ? qsTr("Send failed") : (isPending ? qsTr("Sending") : qsTr("Sent"))
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Receive:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return failed ? qsTr("Receive failed") : (isPending ? qsTr("Receiving") : qsTr("Received"))
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Destroy:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return failed ? qsTr("Destroy failed") : (isPending ? qsTr("Destroying") : qsTr("Destroyed"))
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Swap:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return failed ? qsTr("Swap failed") : (isPending ? qsTr("Swapping") : qsTr("Swapped"))
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Bridge:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return failed ? qsTr("Bridge failed") : (isPending ? qsTr("Bridging") : qsTr("Bridged"))
|
2023-07-24 11:18:42 +00:00
|
|
|
|
case Constants.TransactionType.ContractDeployment:
|
|
|
|
|
return failed ? qsTr("Contract deployment failed") : (isPending ? qsTr("Deploying contract") : qsTr("Contract deployed"))
|
2023-08-04 10:47:45 +00:00
|
|
|
|
case Constants.TransactionType.Mint:
|
|
|
|
|
if (isNFT)
|
|
|
|
|
return failed ? qsTr("Collectible minting failed") : (isPending ? qsTr("Minting collectible") : qsTr("Collectible minted"))
|
|
|
|
|
return failed ? qsTr("Token minting failed") : (isPending ? qsTr("Minting token") : qsTr("Token minted"))
|
2024-07-17 08:16:02 +00:00
|
|
|
|
case Constants.TransactionType.Approve:
|
|
|
|
|
return failed ? qsTr("Failed to set spending cap") : (isPending ? qsTr("Setting spending cap") : qsTr("Spending cap set"))
|
2023-05-10 11:54:06 +00:00
|
|
|
|
default:
|
2024-11-18 18:50:26 +00:00
|
|
|
|
return qsTr("Interaction")
|
2023-05-10 11:54:06 +00:00
|
|
|
|
}
|
2021-10-05 20:50:22 +00:00
|
|
|
|
}
|
2023-05-10 11:54:06 +00:00
|
|
|
|
statusListItemTitleArea.anchors.rightMargin: root.rightPadding
|
|
|
|
|
statusListItemTitle.font.weight: Font.DemiBold
|
|
|
|
|
statusListItemTitle.font.pixelSize: root.loading ? d.loadingPixelSize : d.titlePixelSize
|
|
|
|
|
|
|
|
|
|
// title icons and date
|
|
|
|
|
statusListItemTitleIcons.sourceComponent: Row {
|
|
|
|
|
spacing: 8
|
|
|
|
|
Row {
|
2023-07-24 11:18:42 +00:00
|
|
|
|
id: tokenImagesRow
|
|
|
|
|
visible: !root.loading && !!root.tokenIconAsset.name
|
2023-06-30 15:07:53 +00:00
|
|
|
|
spacing: secondTokenImage.visible ? -tokenImage.width * 0.2 : 0
|
2023-05-10 11:54:06 +00:00
|
|
|
|
StatusRoundIcon {
|
|
|
|
|
id: tokenImage
|
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
|
asset: root.tokenIconAsset
|
|
|
|
|
}
|
|
|
|
|
StatusRoundIcon {
|
2023-06-30 15:07:53 +00:00
|
|
|
|
id: secondTokenImage
|
2024-07-17 08:16:02 +00:00
|
|
|
|
visible: d.isSecondIconVisible
|
2023-05-10 11:54:06 +00:00
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2024-07-17 08:16:02 +00:00
|
|
|
|
asset: d.secondIconAsset
|
2023-05-10 11:54:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
StatusTextWithLoadingState {
|
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
|
text: root.loading ? root.title : root.timeStampText
|
|
|
|
|
verticalAlignment: Qt.AlignVCenter
|
|
|
|
|
font.pixelSize: root.loading ? d.loadingPixelSize : d.datePixelSize
|
|
|
|
|
visible: !!text
|
|
|
|
|
loading: root.loading
|
|
|
|
|
customColor: Theme.palette.baseColor1
|
2023-07-24 11:18:42 +00:00
|
|
|
|
leftPadding: tokenImagesRow.visible ? 0 : parent.spacing
|
2023-05-10 11:54:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// subtitle
|
|
|
|
|
subTitle: {
|
2023-06-30 13:50:06 +00:00
|
|
|
|
if (root.loading) {
|
|
|
|
|
return "dummy text dummy text dummy text dummy text dummy text dummy text"
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-10 11:54:06 +00:00
|
|
|
|
if (!root.isModelDataValid) {
|
|
|
|
|
return ""
|
|
|
|
|
}
|
2023-07-26 11:50:27 +00:00
|
|
|
|
|
2024-02-22 14:41:19 +00:00
|
|
|
|
return getSubtitle(root.showAllAccounts, false)
|
2023-05-10 11:54:06 +00:00
|
|
|
|
}
|
2024-02-22 14:41:19 +00:00
|
|
|
|
statusListItemSubTitle.textFormat: root.isCommunityAssetViaAirdrop ? Text.RichText : Text.AutoText
|
2023-06-30 13:50:06 +00:00
|
|
|
|
statusListItemSubTitle.maximumLoadingStateWidth: 400
|
2023-05-10 11:54:06 +00:00
|
|
|
|
statusListItemSubTitle.customColor: Theme.palette.directColor1
|
|
|
|
|
statusListItemSubTitle.font.pixelSize: root.loading ? d.loadingPixelSize : d.subtitlePixelSize
|
|
|
|
|
statusListItemTagsRowLayout.anchors.topMargin: 4 // Spacing between title row nad subtitle row
|
|
|
|
|
|
|
|
|
|
// Right side components
|
|
|
|
|
components: [
|
|
|
|
|
Loader {
|
2024-02-19 08:40:16 +00:00
|
|
|
|
active: root.displayValues && !headerStatusLoader.active
|
2023-05-10 11:54:06 +00:00
|
|
|
|
visible: active
|
|
|
|
|
sourceComponent: ColumnLayout {
|
2023-01-12 23:26:48 +00:00
|
|
|
|
StatusTextWithLoadingState {
|
2022-09-05 09:15:47 +00:00
|
|
|
|
id: cryptoValueText
|
2023-05-10 11:54:06 +00:00
|
|
|
|
text: {
|
|
|
|
|
if (root.loading) {
|
|
|
|
|
return "dummy text"
|
|
|
|
|
} else if (!root.isModelDataValid || root.isNFT) {
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 08:28:04 +00:00
|
|
|
|
switch(d.txType) {
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Send:
|
2023-06-13 08:18:53 +00:00
|
|
|
|
return "−" + root.transactionValue
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Receive:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return "+" + root.transactionValue
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Swap:
|
2023-06-30 15:07:53 +00:00
|
|
|
|
let outValue = root.outTransactionValue
|
|
|
|
|
outValue = outValue.replace('<', '<')
|
|
|
|
|
let inValue = root.inTransactionValue
|
|
|
|
|
inValue = inValue.replace('<', '<')
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return "<font color=\"%1\">-%2</font> <font color=\"%3\">/</font> <font color=\"%4\">+%5</font>"
|
|
|
|
|
.arg(Theme.palette.directColor1)
|
2023-06-30 15:07:53 +00:00
|
|
|
|
.arg(outValue)
|
2023-05-10 11:54:06 +00:00
|
|
|
|
.arg(Theme.palette.baseColor1)
|
|
|
|
|
.arg(Theme.palette.successColor1)
|
2023-06-30 15:07:53 +00:00
|
|
|
|
.arg(inValue)
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Bridge:
|
2024-07-17 08:16:02 +00:00
|
|
|
|
case Constants.TransactionType.Approve:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
default:
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
horizontalAlignment: Qt.AlignRight
|
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
|
font.pixelSize: root.loading ? d.loadingPixelSize : 13
|
|
|
|
|
customColor: {
|
2023-06-15 13:09:35 +00:00
|
|
|
|
if (!root.isModelDataValid)
|
|
|
|
|
return ""
|
|
|
|
|
|
2024-07-08 08:28:04 +00:00
|
|
|
|
switch(d.txType) {
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Receive:
|
|
|
|
|
case Constants.TransactionType.Swap:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return Theme.palette.successColor1
|
|
|
|
|
default:
|
|
|
|
|
return Theme.palette.directColor1
|
|
|
|
|
}
|
2023-04-05 11:42:12 +00:00
|
|
|
|
}
|
2023-01-12 23:26:48 +00:00
|
|
|
|
loading: root.loading
|
2021-10-05 20:50:22 +00:00
|
|
|
|
}
|
2023-05-10 11:54:06 +00:00
|
|
|
|
StatusTextWithLoadingState {
|
|
|
|
|
id: fiatValueText
|
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
|
horizontalAlignment: Qt.AlignRight
|
|
|
|
|
text: {
|
|
|
|
|
if (root.loading) {
|
|
|
|
|
return "dummy text"
|
2023-07-18 14:05:22 +00:00
|
|
|
|
} else if (!root.isModelDataValid || root.isNFT || !modelData.symbol) {
|
2023-05-10 11:54:06 +00:00
|
|
|
|
return ""
|
|
|
|
|
}
|
2023-01-12 23:26:48 +00:00
|
|
|
|
|
2024-07-08 08:28:04 +00:00
|
|
|
|
switch(d.txType) {
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Send:
|
2024-09-24 11:51:22 +00:00
|
|
|
|
return "−" + root.currenciesStore.formatCurrencyAmount(root.fiatValue, root.currentCurrency)
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Receive:
|
2024-09-24 11:51:22 +00:00
|
|
|
|
return "+" + root.currenciesStore.formatCurrencyAmount(root.fiatValue, root.currentCurrency)
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Swap:
|
2024-09-24 11:51:22 +00:00
|
|
|
|
return "-%1 / +%2".arg(root.currenciesStore.formatCurrencyAmount(root.outFiatValue, root.currentCurrency))
|
|
|
|
|
.arg(root.currenciesStore.formatCurrencyAmount(root.inFiatValue, root.currentCurrency))
|
2023-06-12 13:04:39 +00:00
|
|
|
|
case Constants.TransactionType.Bridge:
|
2024-07-17 08:16:02 +00:00
|
|
|
|
case Constants.TransactionType.Approve:
|
2023-05-10 11:54:06 +00:00
|
|
|
|
default:
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
font.pixelSize: root.loading ? d.loadingPixelSize : 12
|
|
|
|
|
customColor: Theme.palette.baseColor1
|
|
|
|
|
loading: root.loading
|
|
|
|
|
}
|
2021-10-05 20:50:22 +00:00
|
|
|
|
}
|
2023-05-10 11:54:06 +00:00
|
|
|
|
},
|
|
|
|
|
Loader {
|
|
|
|
|
id: headerStatusLoader
|
|
|
|
|
active: false
|
|
|
|
|
visible: active
|
|
|
|
|
sourceComponent: Rectangle {
|
|
|
|
|
id: statusRect
|
|
|
|
|
width: transactionTypeIcon.width + (retryButton.visible ? retryButton.width + 5 : 0)
|
|
|
|
|
height: transactionTypeIcon.height
|
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
|
color: "transparent"
|
|
|
|
|
radius: 100
|
|
|
|
|
border {
|
|
|
|
|
width: retryButton.visible ? 1 : 0
|
|
|
|
|
color: root.asset.bgBorderColor
|
|
|
|
|
}
|
2021-10-05 20:50:22 +00:00
|
|
|
|
|
2023-05-10 11:54:06 +00:00
|
|
|
|
StatusButton {
|
|
|
|
|
id: retryButton
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
|
anchors.leftMargin: 10
|
|
|
|
|
radius: height / 2
|
|
|
|
|
height: parent.height * 0.7
|
|
|
|
|
verticalPadding: 0
|
|
|
|
|
horizontalPadding: radius
|
|
|
|
|
text: qsTr("Retry")
|
|
|
|
|
size: StatusButton.Small
|
|
|
|
|
type: StatusButton.Primary
|
2023-08-02 04:36:54 +00:00
|
|
|
|
visible: d.showRetryButton
|
2023-05-10 11:54:06 +00:00
|
|
|
|
onClicked: root.retryClicked()
|
|
|
|
|
}
|
2021-10-05 20:50:22 +00:00
|
|
|
|
|
2023-05-10 11:54:06 +00:00
|
|
|
|
StatusSmartIdenticon {
|
|
|
|
|
id: transactionTypeIcon
|
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
enabled: false
|
|
|
|
|
asset: root.asset
|
|
|
|
|
active: !!root.asset.name
|
|
|
|
|
loading: root.loading
|
|
|
|
|
name: root.title
|
|
|
|
|
}
|
2023-08-02 04:36:54 +00:00
|
|
|
|
|
2023-05-10 11:54:06 +00:00
|
|
|
|
StatusRoundIcon {
|
|
|
|
|
visible: !root.loading
|
|
|
|
|
anchors {
|
|
|
|
|
right: transactionTypeIcon.right
|
|
|
|
|
bottom: transactionTypeIcon.bottom
|
|
|
|
|
}
|
|
|
|
|
asset: root.statusIconAsset
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-05 20:50:22 +00:00
|
|
|
|
}
|
2023-05-10 11:54:06 +00:00
|
|
|
|
]
|
2022-09-05 09:15:47 +00:00
|
|
|
|
|
|
|
|
|
states: [
|
|
|
|
|
State {
|
2023-05-10 11:54:06 +00:00
|
|
|
|
name: "header"
|
2022-09-05 09:15:47 +00:00
|
|
|
|
PropertyChanges {
|
2023-05-10 11:54:06 +00:00
|
|
|
|
target: headerStatusLoader
|
|
|
|
|
active: true
|
2022-09-05 09:15:47 +00:00
|
|
|
|
}
|
|
|
|
|
PropertyChanges {
|
2023-05-10 11:54:06 +00:00
|
|
|
|
target: leftIconStatusIcon
|
|
|
|
|
visible: false
|
2022-09-05 09:15:47 +00:00
|
|
|
|
}
|
|
|
|
|
PropertyChanges {
|
2023-05-10 11:54:06 +00:00
|
|
|
|
target: root.statusListItemIcon
|
|
|
|
|
active: false
|
|
|
|
|
}
|
|
|
|
|
PropertyChanges {
|
|
|
|
|
target: root.asset
|
2023-08-02 04:36:54 +00:00
|
|
|
|
bgBorderWidth: d.showRetryButton ? 0 : 1
|
2023-05-10 11:54:06 +00:00
|
|
|
|
width: 34
|
|
|
|
|
height: 34
|
|
|
|
|
bgWidth: 56
|
|
|
|
|
bgHeight: 56
|
2022-09-05 09:15:47 +00:00
|
|
|
|
}
|
|
|
|
|
PropertyChanges {
|
2023-05-10 11:54:06 +00:00
|
|
|
|
target: root.statusIconAsset
|
|
|
|
|
width: 17
|
|
|
|
|
height: 17
|
2022-09-05 09:15:47 +00:00
|
|
|
|
}
|
2024-04-25 10:01:26 +00:00
|
|
|
|
// PropertyChanges { // TODO uncomment when retry failed tx is implemented
|
|
|
|
|
// target: d
|
|
|
|
|
// titlePixelSize: 17
|
|
|
|
|
// datePixelSize: 13
|
|
|
|
|
// subtitlePixelSize: 15
|
|
|
|
|
// loadingPixelSize: 14
|
|
|
|
|
// showRetryButton: (!root.loading && root.transactionStatus === Constants.TransactionStatus.Failed && walletRootStore.isOwnedAccount(modelData.sender))
|
|
|
|
|
// }
|
2022-09-05 09:15:47 +00:00
|
|
|
|
}
|
|
|
|
|
]
|
2024-02-08 12:49:12 +00:00
|
|
|
|
|
|
|
|
|
ColorAnimation {
|
|
|
|
|
id: bgColorAnimation
|
|
|
|
|
|
|
|
|
|
target: d
|
|
|
|
|
property: "animatedBgColor"
|
|
|
|
|
from: d.isLightTheme ? "#33869eff" : "#1a4360df"
|
|
|
|
|
to: "transparent"
|
|
|
|
|
duration: 1000
|
|
|
|
|
alwaysRunToEnd: true
|
|
|
|
|
|
|
|
|
|
onStopped: {
|
|
|
|
|
modelData.doneHighlighting()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// Add a delay before the animation to make it easier to notice when scrolling
|
|
|
|
|
Timer {
|
|
|
|
|
id: delayAnimation
|
|
|
|
|
interval: 250
|
|
|
|
|
running: root.visible && isModelDataValid && modelData.highlight
|
|
|
|
|
repeat: false
|
|
|
|
|
onTriggered: {
|
|
|
|
|
bgColorAnimation.start()
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-05 20:50:22 +00:00
|
|
|
|
}
|