2023-07-04 15:11:41 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
|
2024-01-24 16:35:53 +00:00
|
|
|
import StatusQ 0.1
|
2023-07-04 15:11:41 +00:00
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import StatusQ.Core.Utils 0.1
|
|
|
|
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
StatusListView {
|
|
|
|
id: root
|
|
|
|
|
2024-03-19 08:41:41 +00:00
|
|
|
required property var selectedSharedAddressesMap // Map[address, [selected, isAirdrop]]
|
|
|
|
|
2024-01-24 16:35:53 +00:00
|
|
|
property var walletAssetsModel
|
2023-07-04 15:11:41 +00:00
|
|
|
property bool hasPermissions
|
|
|
|
property var uniquePermissionTokenKeys
|
|
|
|
|
2024-01-24 16:35:53 +00:00
|
|
|
property var getCurrencyAmount: function (balance, symbol){}
|
|
|
|
|
2024-03-19 08:41:41 +00:00
|
|
|
signal toggleAddressSelection(string keyUid, string address)
|
|
|
|
signal airdropAddressSelected (string address)
|
2023-07-04 15:11:41 +00:00
|
|
|
|
|
|
|
leftMargin: d.absLeftMargin
|
|
|
|
topMargin: Style.current.padding
|
|
|
|
rightMargin: Style.current.padding
|
|
|
|
bottomMargin: Style.current.padding
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
id: d
|
|
|
|
|
2024-03-19 08:41:41 +00:00
|
|
|
readonly property int selectedSharedAddressesCount: root.selectedSharedAddressesMap.size
|
|
|
|
|
2023-07-04 15:11:41 +00:00
|
|
|
// UI
|
|
|
|
readonly property int absLeftMargin: 12
|
|
|
|
|
|
|
|
readonly property ButtonGroup airdropGroup: ButtonGroup {
|
|
|
|
exclusive: true
|
|
|
|
}
|
|
|
|
|
|
|
|
readonly property ButtonGroup addressesGroup: ButtonGroup {
|
|
|
|
exclusive: false
|
|
|
|
}
|
|
|
|
|
2024-01-24 16:35:53 +00:00
|
|
|
function getTotalBalance(balances, decimals, symbol) {
|
|
|
|
let totalBalance = 0
|
|
|
|
for(let i=0; i<balances.count; i++) {
|
|
|
|
let balancePerAddressPerChain = ModelUtils.get(balances, i)
|
|
|
|
totalBalance += AmountsArithmetic.toNumber(balancePerAddressPerChain.balance, decimals)
|
|
|
|
}
|
|
|
|
return totalBalance
|
|
|
|
}
|
2023-07-04 15:11:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
spacing: Style.current.halfPadding
|
|
|
|
delegate: StatusListItem {
|
2023-08-24 20:36:38 +00:00
|
|
|
readonly property string address: model.address.toLowerCase()
|
|
|
|
|
|
|
|
id: listItem
|
2023-07-04 15:11:41 +00:00
|
|
|
width: ListView.view.width - ListView.view.leftMargin - ListView.view.rightMargin
|
|
|
|
statusListItemTitle.font.weight: Font.Medium
|
|
|
|
title: model.name
|
|
|
|
tertiaryTitle: !walletAccountAssetsModel.count && root.hasPermissions ? qsTr("No relevant tokens") : ""
|
2024-01-24 16:35:53 +00:00
|
|
|
|
|
|
|
SubmodelProxyModel {
|
|
|
|
id: filteredBalances
|
|
|
|
sourceModel: root.walletAssetsModel
|
|
|
|
submodelRoleName: "balances"
|
|
|
|
delegateModel: SortFilterProxyModel {
|
|
|
|
sourceModel: submodel
|
|
|
|
filters: FastExpressionFilter {
|
2024-03-27 12:48:17 +00:00
|
|
|
expression: listItem.address === model.account.toLowerCase()
|
2024-01-24 16:35:53 +00:00
|
|
|
expectedRoles: ["account"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-07-04 15:11:41 +00:00
|
|
|
tagsModel: SortFilterProxyModel {
|
|
|
|
id: walletAccountAssetsModel
|
2024-01-24 16:35:53 +00:00
|
|
|
sourceModel: filteredBalances
|
2023-07-04 15:11:41 +00:00
|
|
|
|
2024-01-24 16:35:53 +00:00
|
|
|
function filterPredicate(symbol) {
|
|
|
|
return root.uniquePermissionTokenKeys.includes(symbol.toUpperCase())
|
2023-07-04 15:11:41 +00:00
|
|
|
}
|
|
|
|
|
2024-01-24 16:35:53 +00:00
|
|
|
proxyRoles: FastExpressionRole {
|
|
|
|
name: "enabledNetworkBalance"
|
|
|
|
expression: d.getTotalBalance(model.balances, model.decimals, model.symbol)
|
|
|
|
expectedRoles: ["balances", "decimals", "symbol"]
|
|
|
|
}
|
|
|
|
filters: FastExpressionFilter {
|
|
|
|
expression: walletAccountAssetsModel.filterPredicate(model.symbol)
|
|
|
|
expectedRoles: ["symbol"]
|
2023-07-04 15:11:41 +00:00
|
|
|
}
|
2024-01-24 16:35:53 +00:00
|
|
|
sorters: FastExpressionSorter {
|
2023-07-04 15:11:41 +00:00
|
|
|
expression: {
|
2024-01-29 19:49:59 +00:00
|
|
|
if (modelLeft.enabledNetworkBalance > modelRight.enabledNetworkBalance)
|
|
|
|
return -1 // descending, biggest first
|
|
|
|
else if (modelLeft.enabledNetworkBalance < modelRight.enabledNetworkBalance)
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
return 0
|
2023-07-04 15:11:41 +00:00
|
|
|
}
|
2024-01-24 16:35:53 +00:00
|
|
|
expectedRoles: ["enabledNetworkBalance"]
|
2023-07-04 15:11:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
statusListItemInlineTagsSlot.spacing: Style.current.padding
|
|
|
|
tagsDelegate: Row {
|
|
|
|
spacing: 4
|
|
|
|
StatusRoundedImage {
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
width: 16
|
|
|
|
height: 16
|
|
|
|
image.source: Constants.tokenIcon(model.symbol.toUpperCase())
|
|
|
|
}
|
|
|
|
StatusBaseText {
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
font.pixelSize: Theme.tertiaryTextFontSize
|
2024-01-24 16:35:53 +00:00
|
|
|
text: LocaleUtils.currencyAmountToLocaleString(root.getCurrencyAmount(model.enabledNetworkBalance, model.symbol))
|
2023-07-04 15:11:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-09 12:31:58 +00:00
|
|
|
asset.color: !!model.color ? model.color : ""
|
2023-07-04 15:11:41 +00:00
|
|
|
asset.emoji: model.emoji
|
|
|
|
asset.name: !model.emoji ? "filled-account": ""
|
|
|
|
asset.letterSize: 14
|
|
|
|
asset.isLetterIdenticon: !!model.emoji
|
|
|
|
asset.isImage: asset.isLetterIdenticon
|
|
|
|
|
|
|
|
components: [
|
|
|
|
StatusFlatButton {
|
|
|
|
ButtonGroup.group: d.airdropGroup
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
icon.name: "airdrop"
|
|
|
|
icon.color: hovered ? Theme.palette.primaryColor3 :
|
|
|
|
checked ? Theme.palette.primaryColor1 : disabledTextColor
|
|
|
|
checkable: true
|
2024-03-19 08:41:41 +00:00
|
|
|
checked: {
|
|
|
|
let obj = root.selectedSharedAddressesMap.get(listItem.address)
|
|
|
|
if (!!obj) {
|
|
|
|
return obj.isAirdrop
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
enabled: shareAddressCheckbox.checked && d.selectedSharedAddressesCount > 1 // last cannot be unchecked
|
2023-07-04 15:11:41 +00:00
|
|
|
visible: shareAddressCheckbox.checked
|
|
|
|
opacity: enabled ? 1.0 : 0.3
|
2024-03-19 08:41:41 +00:00
|
|
|
|
|
|
|
onToggled: {
|
|
|
|
root.airdropAddressSelected(listItem.address)
|
|
|
|
}
|
2023-07-04 15:11:41 +00:00
|
|
|
|
|
|
|
StatusToolTip {
|
|
|
|
text: qsTr("Use this address for any Community airdrops")
|
|
|
|
visible: parent.hovered
|
|
|
|
delay: 500
|
|
|
|
}
|
|
|
|
},
|
|
|
|
StatusCheckBox {
|
|
|
|
id: shareAddressCheckbox
|
|
|
|
ButtonGroup.group: d.addressesGroup
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
checkable: true
|
2024-03-19 08:41:41 +00:00
|
|
|
checked: root.selectedSharedAddressesMap.has(listItem.address)
|
|
|
|
enabled: !(d.selectedSharedAddressesCount === 1 && checked) // last cannot be unchecked
|
2023-07-04 15:11:41 +00:00
|
|
|
|
2024-03-19 08:41:41 +00:00
|
|
|
onToggled: {
|
|
|
|
root.toggleAddressSelection(model.keyUid, listItem.address)
|
2023-07-04 15:11:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|