168 lines
4.4 KiB
QML
168 lines
4.4 KiB
QML
import QtQuick 2.14
|
|
import QtQuick.Controls 2.14
|
|
import QtQuick.Layouts 1.14
|
|
|
|
import Storybook 1.0
|
|
import Models 1.0
|
|
|
|
import AppLayouts.Communities.popups 1.0
|
|
import AppLayouts.Communities.controls 1.0
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
import utils 1.0
|
|
|
|
SplitView {
|
|
id: root
|
|
|
|
orientation: Qt.Vertical
|
|
|
|
Item {
|
|
id: container
|
|
anchors.fill: parent
|
|
anchors.margins: 50
|
|
|
|
RowLayout {
|
|
|
|
Label {
|
|
text: "Open flow:"
|
|
}
|
|
|
|
Button {
|
|
text: "Add"
|
|
onClicked: {
|
|
holdingsDropdown.close()
|
|
holdingsDropdown.open()
|
|
}
|
|
}
|
|
|
|
Button {
|
|
text: "Update"
|
|
onClicked: {
|
|
holdingsDropdown.close()
|
|
holdingsDropdown.setActiveTab(HoldingTypes.Type.Ens)
|
|
holdingsDropdown.openUpdateFlow()
|
|
}
|
|
}
|
|
}
|
|
|
|
HoldingsDropdown {
|
|
id: holdingsDropdown
|
|
|
|
parent: container
|
|
anchors.centerIn: container
|
|
|
|
allTokensMode: ctrlAllTokensMode.checked
|
|
|
|
CollectiblesModel {
|
|
id: collectiblesModel
|
|
}
|
|
|
|
SortFilterProxyModel {
|
|
id: collectiblesModelWithSupply
|
|
|
|
sourceModel: collectiblesModel
|
|
|
|
proxyRoles: [
|
|
ExpressionRole {
|
|
name: "supply"
|
|
expression: model.index === 1 ? model.index : (model.index + 1) * 115
|
|
},
|
|
ExpressionRole {
|
|
name: "infiniteSupply"
|
|
expression: !((model.index + 1) % 4)
|
|
},
|
|
ExpressionRole {
|
|
name: "chainName"
|
|
expression: model.index ? "Optimism" : "Arbitrum"
|
|
},
|
|
ExpressionRole {
|
|
|
|
readonly property string icon1: "network/Network=Optimism"
|
|
readonly property string icon2: "network/Network=Arbitrum"
|
|
|
|
name: "chainIcon"
|
|
expression: model.index ? icon1 : icon2
|
|
}
|
|
]
|
|
}
|
|
|
|
AssetsModel {
|
|
id: assetsModel
|
|
}
|
|
|
|
SortFilterProxyModel {
|
|
id: assetsModelWithSupply
|
|
|
|
sourceModel: assetsModel
|
|
|
|
proxyRoles: [
|
|
ExpressionRole {
|
|
name: "supply"
|
|
expression: (model.index + 1) * 584
|
|
},
|
|
ExpressionRole {
|
|
name: "infiniteSupply"
|
|
expression: !(model.index % 4)
|
|
},
|
|
ExpressionRole {
|
|
name: "chainName"
|
|
expression: model.index ? "Ethereum Mainnet" : "Goerli"
|
|
},
|
|
ExpressionRole {
|
|
|
|
readonly property string icon1: "network/Network=Ethereum"
|
|
readonly property string icon2: "network/Network=Testnet"
|
|
|
|
name: "chainIcon"
|
|
expression: model.index ? icon1 : icon2
|
|
}
|
|
]
|
|
|
|
filters: ValueFilter {
|
|
roleName: "category"
|
|
value: TokenCategories.Category.Community
|
|
}
|
|
}
|
|
|
|
collectiblesModel: collectiblesModelWithSupply
|
|
|
|
assetsModel: assetsModelWithSupply
|
|
isENSTab: isEnsTabChecker.checked
|
|
|
|
onOpened: contentItem.parent.parent = container
|
|
Component.onCompleted: {
|
|
holdingsDropdown.close()
|
|
holdingsDropdown.open()
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
LogsAndControlsPanel {
|
|
SplitView.minimumHeight: 100
|
|
SplitView.preferredHeight: 250
|
|
|
|
RowLayout {
|
|
CheckBox {
|
|
id: isEnsTabChecker
|
|
text: "ENS tab visible"
|
|
checked: true
|
|
}
|
|
|
|
CheckBox {
|
|
id: isAirdropMode
|
|
text: "Airdrop mode"
|
|
checked: false
|
|
}
|
|
|
|
CheckBox {
|
|
id: ctrlAllTokensMode
|
|
text: "All tokens mode"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// category: Popups
|