2024-07-03 11:47:05 +00:00
|
|
|
|
import QtQuick 2.15
|
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
|
|
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
import StatusQ.Core.Utils 0.1
|
|
|
|
|
|
|
|
|
|
import AppLayouts.Wallet.panels 1.0
|
|
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
|
|
Control {
|
|
|
|
|
id: root
|
|
|
|
|
|
2024-08-30 15:31:53 +00:00
|
|
|
|
/** Expected model structure: see SearchableAssetsPanel::model **/
|
2024-07-03 11:47:05 +00:00
|
|
|
|
property alias assetsModel: tokenSelectorPanel.assetsModel
|
|
|
|
|
|
2024-08-30 15:31:53 +00:00
|
|
|
|
/** Expected model structure: see SearchableCollectiblesPanel::model **/
|
2024-07-03 11:47:05 +00:00
|
|
|
|
property alias collectiblesModel: tokenSelectorPanel.collectiblesModel
|
|
|
|
|
|
2024-09-23 08:15:01 +00:00
|
|
|
|
readonly property bool isTokenSelected: tokenSelectorButton.selected
|
2024-07-31 04:53:43 +00:00
|
|
|
|
|
2024-07-03 11:47:05 +00:00
|
|
|
|
signal assetSelected(string key)
|
|
|
|
|
signal collectionSelected(string key)
|
|
|
|
|
signal collectibleSelected(string key)
|
|
|
|
|
|
|
|
|
|
// Index of the current tab, indexes correspond to the
|
|
|
|
|
// TokensSelectorPanel.Tabs enum values.
|
|
|
|
|
property alias currentTab: tokenSelectorPanel.currentTab
|
|
|
|
|
|
2024-09-23 08:15:01 +00:00
|
|
|
|
function setSelection(name: string, icon: url, key: string) {
|
|
|
|
|
tokenSelectorButton.selected = true
|
2024-09-02 09:35:18 +00:00
|
|
|
|
tokenSelectorButton.name = name
|
|
|
|
|
tokenSelectorButton.icon = icon
|
2024-07-03 11:47:05 +00:00
|
|
|
|
tokenSelectorPanel.highlightedKey = key ?? ""
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-30 12:24:16 +00:00
|
|
|
|
contentItem: TokenSelectorButton {
|
2024-09-02 09:35:18 +00:00
|
|
|
|
id: tokenSelectorButton
|
|
|
|
|
|
2024-08-30 12:24:16 +00:00
|
|
|
|
forceHovered: dropdown.opened
|
2024-07-03 11:47:05 +00:00
|
|
|
|
|
2024-08-30 12:24:16 +00:00
|
|
|
|
onClicked: dropdown.opened ? dropdown.close() : dropdown.open()
|
2024-07-03 11:47:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StatusDropdown {
|
|
|
|
|
id: dropdown
|
|
|
|
|
|
|
|
|
|
y: parent.height + 4
|
2024-09-18 11:03:36 +00:00
|
|
|
|
width: 448
|
2024-07-03 11:47:05 +00:00
|
|
|
|
|
|
|
|
|
closePolicy: Popup.CloseOnPressOutsideParent
|
2024-09-02 09:35:18 +00:00
|
|
|
|
horizontalPadding: 0
|
2024-07-03 11:47:05 +00:00
|
|
|
|
bottomPadding: 0
|
|
|
|
|
|
|
|
|
|
contentItem: TokenSelectorPanel {
|
|
|
|
|
id: tokenSelectorPanel
|
|
|
|
|
|
2024-09-03 14:29:22 +00:00
|
|
|
|
objectName: "tokenSelectorPanel"
|
|
|
|
|
|
2024-07-03 11:47:05 +00:00
|
|
|
|
function findSubitem(key) {
|
|
|
|
|
const count = collectiblesModel.rowCount()
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
|
|
|
const entry = ModelUtils.get(collectiblesModel, i)
|
|
|
|
|
const subitem = ModelUtils.getByKey(
|
|
|
|
|
entry.subitems, "key", key)
|
|
|
|
|
if (subitem)
|
|
|
|
|
return subitem
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setCurrentAndClose(name, icon) {
|
2024-09-02 09:35:18 +00:00
|
|
|
|
tokenSelectorButton.name = name
|
|
|
|
|
tokenSelectorButton.icon = icon
|
2024-09-23 08:15:01 +00:00
|
|
|
|
tokenSelectorButton.selected = true
|
2024-07-03 11:47:05 +00:00
|
|
|
|
dropdown.close()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onAssetSelected: {
|
|
|
|
|
const entry = ModelUtils.getByKey(assetsModel, "tokensKey", key)
|
|
|
|
|
highlightedKey = key
|
|
|
|
|
|
2024-08-01 10:17:36 +00:00
|
|
|
|
setCurrentAndClose(entry.symbol, entry.iconSource)
|
2024-07-03 11:47:05 +00:00
|
|
|
|
root.assetSelected(key)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onCollectibleSelected: {
|
|
|
|
|
highlightedKey = key
|
|
|
|
|
|
|
|
|
|
const subitem = findSubitem(key)
|
|
|
|
|
setCurrentAndClose(subitem.name, subitem.icon)
|
|
|
|
|
|
|
|
|
|
root.collectibleSelected(key)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onCollectionSelected: {
|
|
|
|
|
highlightedKey = key
|
|
|
|
|
|
|
|
|
|
const subitem = findSubitem(key)
|
|
|
|
|
setCurrentAndClose(subitem.name, subitem.icon)
|
|
|
|
|
|
|
|
|
|
root.collectionSelected(key)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|