249 lines
8.9 KiB
QML
249 lines
8.9 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
import Qt.labs.settings 1.0
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
import StatusQ 0.1
|
|
import StatusQ.Models 0.1
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Utils 0.1 as SQUtils
|
|
|
|
import mainui 1.0
|
|
import utils 1.0
|
|
|
|
import shared.controls 1.0
|
|
import shared.views 1.0
|
|
import shared.stores 1.0
|
|
|
|
import Storybook 1.0
|
|
import Models 1.0
|
|
|
|
import AppLayouts.Wallet.views 1.0
|
|
import AppLayouts.Wallet.stores 1.0
|
|
|
|
|
|
SplitView {
|
|
id: root
|
|
|
|
Logs { id: logs }
|
|
|
|
orientation: Qt.Horizontal
|
|
|
|
QtObject {
|
|
id: d
|
|
|
|
readonly property string networksChainsCurrentlySelected: {
|
|
let supportedNwChains = []
|
|
for (let i = 0; i< networksRepeater.count; i++) {
|
|
if (networksRepeater.itemAt(i).checked && networksRepeater.itemAt(i).visible)
|
|
supportedNwChains.push(networksRepeater.itemAt(i).chainID)
|
|
}
|
|
return supportedNwChains.join(":")
|
|
}
|
|
|
|
readonly property string addressesSelected: {
|
|
let supportedAddresses = []
|
|
for (let i = 0; i< accountsRepeater.count; i++) {
|
|
if (accountsRepeater.itemAt(i).checked && accountsRepeater.itemAt(i).visible)
|
|
supportedAddresses.push(accountsRepeater.itemAt(i).address)
|
|
}
|
|
return supportedAddresses.join(":")
|
|
}
|
|
|
|
readonly property var currencyStore: CurrenciesStore {}
|
|
|
|
property WalletAssetsStore walletAssetStore: WalletAssetsStore {
|
|
assetsWithFilteredBalances: d.assetsWithFilteredBalances
|
|
assetsController: assetsView.controller
|
|
}
|
|
|
|
// Added this here simply because the network and address filtering wont work in Storybook applied in AssetsView
|
|
readonly property SubmodelProxyModel assetsWithFilteredBalances: SubmodelProxyModel {
|
|
sourceModel: d.walletAssetStore.groupedAccountsAssetsModel
|
|
submodelRoleName: "balances"
|
|
delegateModel: SortFilterProxyModel {
|
|
sourceModel: submodel
|
|
filters: FastExpressionFilter {
|
|
expression: {
|
|
d.networksChainsCurrentlySelected
|
|
return d.networksChainsCurrentlySelected.split(":").includes(model.chainId+"")
|
|
}
|
|
expectedRoles: ["chainId"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Popups {
|
|
popupParent: root
|
|
rootStore: QtObject {}
|
|
communityTokensStore: QtObject {}
|
|
walletAssetsStore: d.walletAssetStore
|
|
}
|
|
|
|
StackLayout {
|
|
id: stack
|
|
SplitView.fillWidth: true
|
|
SplitView.fillHeight: true
|
|
|
|
currentIndex: 0
|
|
|
|
AssetsView {
|
|
id: assetsView
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
areAssetsLoading: loadingCheckbox.checked
|
|
controller: ManageTokensController {
|
|
sourceModel: d.walletAssetStore.groupedAccountAssetsModel
|
|
settingsKey: "WalletAssets"
|
|
serializeAsCollectibles: false
|
|
|
|
onRequestSaveSettings: (jsonData) => {
|
|
savingStarted()
|
|
settingsStore.setValue(settingsKey, jsonData)
|
|
savingFinished()
|
|
}
|
|
onRequestLoadSettings: {
|
|
loadingStarted()
|
|
const jsonData = settingsStore.value(settingsKey, null)
|
|
loadingFinished(jsonData)
|
|
}
|
|
onRequestClearSettings: {
|
|
settingsStore.setValue(settingsKey, null)
|
|
}
|
|
|
|
onTokenHidden: (symbol, name) => Global.displayToastMessage(
|
|
qsTr("%1 (%2) was successfully hidden").arg(name).arg(symbol), "", "checkmark-circle",
|
|
false, Constants.ephemeralNotificationType.success, "")
|
|
onCommunityTokenGroupHidden: (communityName) => Global.displayToastMessage(
|
|
qsTr("%1 community assets successfully hidden").arg(communityName), "", "checkmark-circle",
|
|
false, Constants.ephemeralNotificationType.success, "")
|
|
onTokenShown: (symbol, name) => Global.displayToastMessage(qsTr("%1 is now visible").arg(name), "", "checkmark-circle",
|
|
false, Constants.ephemeralNotificationType.success, "")
|
|
onCommunityTokenGroupShown: (communityName) => Global.displayToastMessage(
|
|
qsTr("%1 community assets are now visible").arg(communityName), "", "checkmark-circle",
|
|
false, Constants.ephemeralNotificationType.success, "")
|
|
}
|
|
filterVisible: ctrlFilterVisible.checked
|
|
currencyStore: d.currencyStore
|
|
tokensStore: TokensStore {
|
|
displayAssetsBelowBalance: ctrlBalanceThresholdSwitch.checked
|
|
getDisplayAssetsBelowBalanceThresholdDisplayAmount: () => ctrlBalanceThreshold.value
|
|
}
|
|
networkFilters: d.networksChainsCurrentlySelected
|
|
addressFilters: d.addressesSelected
|
|
onAssetClicked: {
|
|
stack.currentIndex = 1
|
|
detailsView.token = token
|
|
logs.logEvent("onAssetClicked", ["token"], [token.symbol, token.communityId])
|
|
}
|
|
onSendRequested: logs.logEvent("onSendRequested", ["symbol"], arguments)
|
|
onReceiveRequested: logs.logEvent("onReceiveRequested", ["symbol"], arguments)
|
|
onSwitchToCommunityRequested: logs.logEvent("onSwitchToCommunityRequested", ["communityId"], arguments)
|
|
onManageTokensRequested: logs.logEvent("onManageTokensRequested")
|
|
|
|
Settings {
|
|
id: settingsStore
|
|
category: "ManageTokens-" + assetsView.controller.settingsKey
|
|
}
|
|
}
|
|
|
|
ColumnLayout {
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
Button {
|
|
text: "go back"
|
|
onClicked: stack.currentIndex = 0
|
|
}
|
|
AssetsDetailView {
|
|
id: detailsView
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
currencyStore: d.currencyStore
|
|
allNetworksModel: NetworksModel.flatNetworks
|
|
networkFilters: d.networksChainsCurrentlySelected
|
|
}
|
|
}
|
|
}
|
|
|
|
Pane {
|
|
SplitView.preferredWidth: 250
|
|
|
|
ColumnLayout {
|
|
spacing: 12
|
|
anchors.fill: parent
|
|
|
|
Switch {
|
|
id: ctrlFilterVisible
|
|
text: "Filter visible"
|
|
checked: true
|
|
}
|
|
|
|
CheckBox {
|
|
id: loadingCheckbox
|
|
checked: false
|
|
text: "loading"
|
|
}
|
|
|
|
ColumnLayout {
|
|
Layout.fillWidth: true
|
|
Text {
|
|
text: "select supported network(s)"
|
|
}
|
|
Repeater {
|
|
id: networksRepeater
|
|
model: NetworksModel.flatNetworks
|
|
delegate: CheckBox {
|
|
readonly property int chainID: chainId
|
|
width: parent.width
|
|
text: chainName
|
|
visible: isTest
|
|
checked: true
|
|
onToggled: {
|
|
isEnabled = checked
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
ColumnLayout {
|
|
Layout.fillWidth: true
|
|
Text {
|
|
text: "select account(s)"
|
|
}
|
|
Repeater {
|
|
id: accountsRepeater
|
|
model: WalletAccountsModel {}
|
|
delegate: CheckBox {
|
|
readonly property string address: model.address
|
|
checked: true
|
|
visible: index<2
|
|
width: parent.width
|
|
text: name
|
|
}
|
|
}
|
|
}
|
|
|
|
ColumnLayout {
|
|
Layout.fillWidth: true
|
|
Switch {
|
|
id: ctrlBalanceThresholdSwitch
|
|
text: qsTr("Currency balance threshold")
|
|
checked: false
|
|
}
|
|
CurrencyAmountInput {
|
|
id: ctrlBalanceThreshold
|
|
value: 10.1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// category: Views
|
|
// https://www.figma.com/file/FkFClTCYKf83RJWoifWgoX/Wallet-v2?type=design&node-id=17159-67977&mode=design&t=s5EXsh6Vi4nTNYUh-0
|
|
// https://www.figma.com/file/FkFClTCYKf83RJWoifWgoX/Wallet-v2?type=design&node-id=17171-285559&mode=design&t=s5EXsh6Vi4nTNYUh-0
|