2022-08-30 16:27:00 +00:00
|
|
|
import QtQuick 2.14
|
2022-06-09 15:27:14 +00:00
|
|
|
import QtQuick.Layouts 1.14
|
|
|
|
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import StatusQ.Controls 0.1
|
2022-11-25 17:35:30 +00:00
|
|
|
import StatusQ.Core.Utils 0.1
|
2022-06-09 15:27:14 +00:00
|
|
|
|
2022-12-06 11:19:20 +00:00
|
|
|
import AppLayouts.Chat.helpers 1.0
|
|
|
|
|
2022-06-09 15:27:14 +00:00
|
|
|
StatusDropdown {
|
|
|
|
id: root
|
|
|
|
|
2022-08-23 08:46:37 +00:00
|
|
|
property var store
|
|
|
|
|
2023-01-12 13:18:52 +00:00
|
|
|
property string assetKey: ""
|
|
|
|
property real assetAmount: 0
|
2022-09-15 10:12:38 +00:00
|
|
|
|
|
|
|
property string collectibleKey: ""
|
2022-08-23 08:46:37 +00:00
|
|
|
property real collectibleAmount: 1
|
2022-08-30 16:27:00 +00:00
|
|
|
|
2022-08-31 12:35:28 +00:00
|
|
|
property string ensDomainName: ""
|
|
|
|
|
2023-01-12 13:18:52 +00:00
|
|
|
signal addAsset(string key, real amount)
|
2023-01-12 11:31:08 +00:00
|
|
|
signal addCollectible(string key, real amount)
|
2023-01-17 23:03:08 +00:00
|
|
|
signal addEns(string domain)
|
2022-06-09 15:27:14 +00:00
|
|
|
|
2023-01-12 13:18:52 +00:00
|
|
|
signal updateAsset(string key, real amount)
|
2022-09-07 09:40:25 +00:00
|
|
|
signal updateCollectible(string key, real amount)
|
2023-01-17 23:03:08 +00:00
|
|
|
signal updateEns(string domain)
|
2022-09-07 09:40:25 +00:00
|
|
|
|
|
|
|
signal removeClicked
|
2022-06-09 15:27:14 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
enum FlowType {
|
|
|
|
Selected, List_Deep1, List_Deep2
|
|
|
|
}
|
|
|
|
|
|
|
|
function openUpdateFlow() {
|
|
|
|
d.currentHoldingMode = HoldingTypes.Mode.Update
|
|
|
|
if(d.currentHoldingType !== HoldingTypes.Type.Ens) {
|
|
|
|
if(statesStack.size === 0)
|
|
|
|
statesStack.push(HoldingsDropdown.FlowType.List_Deep1)
|
|
|
|
|
|
|
|
statesStack.push(HoldingsDropdown.FlowType.Selected)
|
|
|
|
}
|
|
|
|
open()
|
|
|
|
}
|
|
|
|
|
|
|
|
function setActiveTab(holdingType) {
|
|
|
|
d.currentHoldingType = holdingType
|
|
|
|
}
|
|
|
|
|
2022-06-09 15:27:14 +00:00
|
|
|
function reset() {
|
2023-01-12 13:18:52 +00:00
|
|
|
d.currentHoldingType = HoldingTypes.Type.Asset
|
2023-01-18 19:54:14 +00:00
|
|
|
d.currentHoldingMode = HoldingTypes.Mode.Add
|
|
|
|
|
2023-01-12 13:18:52 +00:00
|
|
|
d.assetAmountText = ""
|
2022-09-15 10:12:38 +00:00
|
|
|
d.collectibleAmountText = ""
|
2023-01-12 13:18:52 +00:00
|
|
|
root.assetKey = ""
|
2022-09-07 09:40:25 +00:00
|
|
|
root.collectibleKey = ""
|
2023-01-12 13:18:52 +00:00
|
|
|
root.assetAmount = 0
|
2022-08-23 08:46:37 +00:00
|
|
|
root.collectibleAmount = 1
|
2022-08-31 12:35:28 +00:00
|
|
|
root.ensDomainName = ""
|
2022-09-07 09:40:25 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
d.setInitialFlow()
|
2022-09-07 09:40:25 +00:00
|
|
|
}
|
2022-08-30 16:27:00 +00:00
|
|
|
|
2022-06-09 15:27:14 +00:00
|
|
|
QtObject {
|
|
|
|
id: d
|
|
|
|
|
2022-09-07 09:40:25 +00:00
|
|
|
// Internal management properties and signals:
|
2023-01-18 19:54:14 +00:00
|
|
|
readonly property var holdingTypes: [
|
|
|
|
HoldingTypes.Type.Asset, HoldingTypes.Type.Collectible, HoldingTypes.Type.Ens
|
|
|
|
]
|
2023-01-12 13:18:52 +00:00
|
|
|
readonly property bool assetsReady: root.assetAmount > 0 && root.assetKey
|
2022-09-07 09:40:25 +00:00
|
|
|
readonly property bool collectiblesReady: root.collectibleAmount > 0 && root.collectibleKey
|
2023-01-17 23:03:08 +00:00
|
|
|
readonly property bool ensReady: d.ensDomainNameValid
|
2022-08-30 16:27:00 +00:00
|
|
|
|
2023-01-12 13:18:52 +00:00
|
|
|
property int extendedDropdownType: ExtendedDropdownContent.Type.Assets
|
|
|
|
property int currentHoldingType: HoldingTypes.Type.Asset
|
2023-01-18 19:54:14 +00:00
|
|
|
property int currentHoldingMode: HoldingTypes.Mode.Add
|
|
|
|
property bool extendedDeepNavigation: false
|
|
|
|
property var currentSubItems
|
|
|
|
property string currentItemKey: ""
|
2022-09-07 09:40:25 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
property string assetAmountText: ""
|
|
|
|
property string collectibleAmountText: "1"
|
2022-09-07 09:40:25 +00:00
|
|
|
property bool ensDomainNameValid: false
|
|
|
|
|
2022-06-09 15:27:14 +00:00
|
|
|
// By design values:
|
2022-08-30 16:27:00 +00:00
|
|
|
readonly property int padding: 8
|
2022-06-09 15:27:14 +00:00
|
|
|
readonly property int defaultWidth: 289
|
2022-09-07 09:40:25 +00:00
|
|
|
readonly property int extendedContentHeight: 380
|
2023-01-18 19:54:14 +00:00
|
|
|
readonly property int tabBarHeigh: 36
|
|
|
|
readonly property int tabBarTextSize: 13
|
2022-09-07 09:40:25 +00:00
|
|
|
readonly property int backButtonWidth: 56
|
|
|
|
readonly property int backButtonHeight: 24
|
|
|
|
readonly property int backButtonToContentSpace: 8
|
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
function setInitialFlow() {
|
|
|
|
statesStack.clear()
|
|
|
|
if(d.currentHoldingType !== HoldingTypes.Type.Ens)
|
|
|
|
statesStack.push(HoldingsDropdown.FlowType.List_Deep1)
|
|
|
|
else
|
|
|
|
statesStack.push(HoldingsDropdown.FlowType.Selected)
|
|
|
|
}
|
2022-09-07 09:40:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
id: statesStack
|
|
|
|
|
|
|
|
property alias currentState: content.state
|
|
|
|
property int size: 0
|
|
|
|
property var states: []
|
|
|
|
|
|
|
|
function push(state) {
|
|
|
|
states.push(state)
|
|
|
|
currentState = state
|
|
|
|
size++
|
|
|
|
}
|
2022-08-30 16:27:00 +00:00
|
|
|
|
2022-09-07 09:40:25 +00:00
|
|
|
function pop() {
|
|
|
|
states.pop()
|
|
|
|
currentState = states.length ? states[states.length - 1] : ""
|
|
|
|
size--
|
|
|
|
}
|
|
|
|
|
|
|
|
function clear() {
|
|
|
|
currentState = ""
|
|
|
|
size = 0
|
|
|
|
states = []
|
2022-06-09 15:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
width: d.defaultWidth
|
|
|
|
padding: d.padding
|
|
|
|
margins: 0 // force keeping within the bounds of the enclosing window
|
2022-08-30 16:27:00 +00:00
|
|
|
contentItem: ColumnLayout {
|
|
|
|
id: content
|
|
|
|
|
2022-09-07 09:40:25 +00:00
|
|
|
spacing: d.backButtonToContentSpace
|
2022-08-30 16:27:00 +00:00
|
|
|
|
|
|
|
StatusIconTextButton {
|
|
|
|
id: backButton
|
|
|
|
|
2022-09-07 09:40:25 +00:00
|
|
|
Layout.preferredWidth: d.backButtonWidth
|
|
|
|
Layout.preferredHeight: d.backButtonHeight
|
|
|
|
visible: statesStack.size > 1
|
2022-08-30 16:27:00 +00:00
|
|
|
spacing: 0
|
2022-09-07 09:40:25 +00:00
|
|
|
leftPadding: 4
|
2022-08-30 16:27:00 +00:00
|
|
|
statusIcon: "next"
|
|
|
|
icon.width: 12
|
|
|
|
icon.height: 12
|
|
|
|
iconRotation: 180
|
|
|
|
text: qsTr("Back")
|
2022-06-09 15:27:14 +00:00
|
|
|
}
|
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
StatusSwitchTabBar {
|
|
|
|
id: tabBar
|
|
|
|
|
|
|
|
visible: !backButton.visible
|
|
|
|
Layout.preferredHeight: d.tabBarHeigh
|
|
|
|
Layout.fillWidth: true
|
|
|
|
currentIndex: d.holdingTypes.indexOf(d.currentHoldingType)
|
|
|
|
state: d.currentHoldingType
|
|
|
|
states: [
|
|
|
|
State {
|
|
|
|
name: HoldingTypes.Type.Asset
|
|
|
|
PropertyChanges {target: loader; sourceComponent: listLayout}
|
|
|
|
PropertyChanges {target: root; height: d.extendedContentHeight}
|
|
|
|
PropertyChanges {target: d; extendedDropdownType: ExtendedDropdownContent.Type.Assets}
|
|
|
|
},
|
|
|
|
State {
|
|
|
|
name: HoldingTypes.Type.Collectible
|
|
|
|
PropertyChanges {target: loader; sourceComponent: listLayout}
|
|
|
|
PropertyChanges {target: root; height: d.extendedContentHeight}
|
|
|
|
PropertyChanges {target: d; extendedDropdownType: ExtendedDropdownContent.Type.Collectibles}
|
|
|
|
},
|
|
|
|
State {
|
|
|
|
name: HoldingTypes.Type.Ens
|
|
|
|
PropertyChanges {target: loader; sourceComponent: ensLayout}
|
|
|
|
PropertyChanges {target: root; height: undefined} // use implicit height
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
onCurrentIndexChanged: {
|
|
|
|
d.currentHoldingType = d.holdingTypes[currentIndex]
|
|
|
|
d.setInitialFlow()
|
|
|
|
}
|
|
|
|
|
|
|
|
Repeater {
|
|
|
|
id: tabLabelsRepeater
|
|
|
|
model: [qsTr("Asset"), qsTr("Collectible"), qsTr("ENS")]
|
|
|
|
|
|
|
|
StatusSwitchTabButton {
|
|
|
|
text: modelData
|
|
|
|
fontPixelSize: d.tabBarTextSize
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 16:27:00 +00:00
|
|
|
Loader {
|
|
|
|
id: loader
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
2022-06-09 15:27:14 +00:00
|
|
|
|
2022-08-30 16:27:00 +00:00
|
|
|
states: [
|
|
|
|
State {
|
2023-01-18 19:54:14 +00:00
|
|
|
name: HoldingsDropdown.FlowType.Selected
|
|
|
|
PropertyChanges {target: loader; sourceComponent: (d.currentHoldingType === HoldingTypes.Type.Asset) ? assetLayout :
|
|
|
|
((d.currentHoldingType === HoldingTypes.Type.Collectible) ? collectibleLayout : ensLayout) }
|
2022-09-07 09:40:25 +00:00
|
|
|
PropertyChanges {target: root; height: undefined} // use implicit height
|
|
|
|
},
|
|
|
|
State {
|
2023-01-18 19:54:14 +00:00
|
|
|
name: HoldingsDropdown.FlowType.List_Deep1
|
|
|
|
PropertyChanges {target: loader; sourceComponent: listLayout}
|
|
|
|
PropertyChanges {target: root; height: d.extendedContentHeight}
|
|
|
|
PropertyChanges {target: d; extendedDeepNavigation: false}
|
2022-08-30 16:27:00 +00:00
|
|
|
},
|
|
|
|
State {
|
2023-01-18 19:54:14 +00:00
|
|
|
name: HoldingsDropdown.FlowType.List_Deep2
|
|
|
|
extend: HoldingsDropdown.FlowType.List_Deep1
|
|
|
|
PropertyChanges {target: d; extendedDeepNavigation: true}
|
2022-08-23 08:46:37 +00:00
|
|
|
}
|
2022-08-30 16:27:00 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
onClosed: root.reset()
|
2022-08-30 16:27:00 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
Component {
|
|
|
|
id: listLayout
|
2022-09-07 09:40:25 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
ExtendedDropdownContent {
|
|
|
|
id: listPanel
|
2022-09-07 09:40:25 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
store: root.store
|
|
|
|
type: d.extendedDropdownType
|
2022-09-07 09:40:25 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
onItemClicked: {
|
|
|
|
if(d.extendedDropdownType === ExtendedDropdownContent.Type.Assets)
|
|
|
|
root.assetKey = key
|
|
|
|
else
|
|
|
|
root.collectibleKey = key
|
2022-08-30 16:27:00 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
statesStack.push(HoldingsDropdown.FlowType.Selected)
|
|
|
|
}
|
2022-08-30 16:27:00 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
onNavigateDeep: {
|
|
|
|
d.currentSubItems = subItems
|
|
|
|
d.currentItemKey = key
|
|
|
|
statesStack.push(HoldingsDropdown.FlowType.List_Deep2)
|
|
|
|
}
|
2022-08-30 16:27:00 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
Component.onCompleted: {
|
|
|
|
if(d.extendedDeepNavigation)
|
|
|
|
listPanel.goForward(d.currentItemKey,
|
|
|
|
CommunityPermissionsHelpers.getTokenNameByKey(store.collectiblesModel, d.currentItemKey),
|
|
|
|
CommunityPermissionsHelpers.getTokenIconByKey(store.collectiblesModel, d.currentItemKey),
|
|
|
|
d.currentSubItems)
|
|
|
|
}
|
2022-08-30 16:27:00 +00:00
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: backButton
|
|
|
|
|
|
|
|
function onClicked() {
|
2023-01-18 19:54:14 +00:00
|
|
|
if (listPanel.canGoBack)
|
|
|
|
listPanel.goBack()
|
2022-09-07 09:40:25 +00:00
|
|
|
statesStack.pop()
|
2022-06-09 15:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
2023-01-18 19:54:14 +00:00
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: root
|
|
|
|
|
|
|
|
function onClosed() { listPanel.goBack() }
|
|
|
|
}
|
2022-06-09 15:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
2023-01-18 19:54:14 +00:00
|
|
|
id: assetLayout
|
2022-08-23 08:46:37 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
TokenPanel {
|
|
|
|
id: assetPanel
|
2022-09-15 10:12:38 +00:00
|
|
|
|
|
|
|
readonly property real effectiveAmount: amountValid ? amount : 0
|
2022-08-30 16:27:00 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
tokenName: CommunityPermissionsHelpers.getTokenNameByKey(store.assetsModel, root.assetKey)
|
|
|
|
tokenShortName: CommunityPermissionsHelpers.getTokenShortNameByKey(store.assetsModel, root.assetKey)
|
|
|
|
tokenImage: CommunityPermissionsHelpers.getTokenIconByKey(store.assetsModel, root.assetKey)
|
|
|
|
amountText: d.assetAmountText
|
|
|
|
tokenCategoryText: qsTr("Asset")
|
|
|
|
addOrUpdateButtonEnabled: d.assetsReady
|
|
|
|
mode: d.currentHoldingMode
|
2022-09-07 09:40:25 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
onEffectiveAmountChanged: root.assetAmount = effectiveAmount
|
|
|
|
onAmountTextChanged: d.assetAmountText = amountText
|
|
|
|
onAddClicked: root.addAsset(root.assetKey, root.assetAmount)
|
|
|
|
onUpdateClicked: root.updateAsset(root.assetKey, root.assetAmount)
|
|
|
|
onRemoveClicked: root.removeClicked()
|
2022-09-15 10:12:38 +00:00
|
|
|
|
|
|
|
Component.onCompleted: {
|
2023-01-12 13:18:52 +00:00
|
|
|
if (d.assetAmountText.length === 0 && root.assetAmount)
|
2023-01-18 19:54:14 +00:00
|
|
|
assetPanel.setAmount(root.assetAmount)
|
2022-09-15 10:12:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
2023-01-18 19:54:14 +00:00
|
|
|
target: backButton
|
2022-09-15 10:12:38 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
function onClicked() { statesStack.pop() }
|
2022-09-15 10:12:38 +00:00
|
|
|
}
|
2022-08-30 16:27:00 +00:00
|
|
|
}
|
|
|
|
}
|
2022-08-23 08:46:37 +00:00
|
|
|
|
2022-08-30 16:27:00 +00:00
|
|
|
Component {
|
2023-01-18 19:54:14 +00:00
|
|
|
id: collectibleLayout
|
2022-09-07 09:40:25 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
TokenPanel {
|
|
|
|
id: collectiblePanel
|
2022-09-07 09:40:25 +00:00
|
|
|
|
2022-09-15 10:12:38 +00:00
|
|
|
readonly property real effectiveAmount: amountValid ? amount : 0
|
2022-08-30 16:27:00 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
tokenName: CommunityPermissionsHelpers.getTokenNameByKey(store.collectiblesModel, root.collectibleKey)
|
|
|
|
tokenShortName: ""
|
|
|
|
tokenImage: CommunityPermissionsHelpers.getTokenIconByKey(store.collectiblesModel, root.collectibleKey)
|
|
|
|
amountText: d.collectibleAmountText
|
|
|
|
tokenCategoryText: qsTr("Collectible")
|
|
|
|
addOrUpdateButtonEnabled: d.collectiblesReady
|
|
|
|
allowDecimals: false
|
|
|
|
mode: d.currentHoldingMode
|
2022-08-30 16:27:00 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
onEffectiveAmountChanged: root.collectibleAmount = effectiveAmount
|
|
|
|
onAmountTextChanged: d.collectibleAmountText = amountText
|
|
|
|
onAddClicked: root.addCollectible(root.collectibleKey, root.collectibleAmount)
|
|
|
|
onUpdateClicked: root.updateCollectible(root.collectibleKey, root.collectibleAmount)
|
|
|
|
onRemoveClicked: root.removeClicked()
|
2022-08-23 08:46:37 +00:00
|
|
|
|
2022-09-15 10:12:38 +00:00
|
|
|
Component.onCompleted: {
|
2023-01-18 19:54:14 +00:00
|
|
|
if (d.collectibleAmountText.length === 0 && root.collectibleAmount)
|
|
|
|
collectiblePanel.setAmount(root.collectibleAmount)
|
2022-09-15 10:12:38 +00:00
|
|
|
}
|
|
|
|
|
2022-08-30 16:27:00 +00:00
|
|
|
Connections {
|
2023-01-18 19:54:14 +00:00
|
|
|
target: backButton
|
2022-09-07 09:40:25 +00:00
|
|
|
|
2023-01-18 19:54:14 +00:00
|
|
|
function onClicked() { statesStack.pop() }
|
2022-06-09 15:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
2022-08-23 08:46:37 +00:00
|
|
|
id: ensLayout
|
2022-08-31 12:35:28 +00:00
|
|
|
|
|
|
|
EnsPanel {
|
2023-01-18 19:54:14 +00:00
|
|
|
addButtonEnabled: d.ensReady
|
2022-08-31 12:35:28 +00:00
|
|
|
domainName: root.ensDomainName
|
2023-01-18 19:54:14 +00:00
|
|
|
mode: d.currentHoldingMode
|
|
|
|
|
2022-08-31 12:35:28 +00:00
|
|
|
onDomainNameChanged: root.ensDomainName = domainName
|
2022-09-07 09:40:25 +00:00
|
|
|
onDomainNameValidChanged: d.ensDomainNameValid = domainNameValid
|
2023-01-18 19:54:14 +00:00
|
|
|
onAddClicked: root.addEns(root.ensDomainName)
|
|
|
|
onUpdateClicked: root.updateEns(root.ensDomainName)
|
|
|
|
onRemoveClicked: root.removeClicked()
|
2022-06-09 15:27:14 +00:00
|
|
|
}
|
2022-09-15 10:12:38 +00:00
|
|
|
}
|
2022-06-09 15:27:14 +00:00
|
|
|
}
|