2022-03-18 14:47:51 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import StatusQ.Controls.Validators 0.1
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import StatusQ.Popups 0.1
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
2022-06-27 13:41:47 +00:00
|
|
|
import StatusQ.Core.Utils 0.1 as StatusQUtils
|
2022-03-18 14:47:51 +00:00
|
|
|
|
|
|
|
import "../controls"
|
|
|
|
import "../views"
|
|
|
|
|
2022-06-27 13:41:47 +00:00
|
|
|
StatusFloatingButtonsSelector {
|
|
|
|
id: floatingHeader
|
2022-03-18 14:47:51 +00:00
|
|
|
|
2022-06-27 13:41:47 +00:00
|
|
|
property var selectedAccount
|
2022-08-01 17:04:23 +00:00
|
|
|
property var changeSelectedAccount: function(){}
|
2022-03-18 14:47:51 +00:00
|
|
|
|
2022-07-21 12:15:02 +00:00
|
|
|
repeater.objectName: "accountsListFloatingHeader"
|
|
|
|
|
2022-06-27 13:41:47 +00:00
|
|
|
signal updatedSelectedAccount(var account)
|
2022-05-19 08:53:57 +00:00
|
|
|
|
2022-03-18 14:47:51 +00:00
|
|
|
QtObject {
|
2022-06-27 13:41:47 +00:00
|
|
|
id: d
|
|
|
|
property var firstModelData: null
|
2022-03-18 14:47:51 +00:00
|
|
|
}
|
|
|
|
|
2022-06-27 13:41:47 +00:00
|
|
|
delegate: Rectangle {
|
|
|
|
width: button.width
|
|
|
|
height: button.height
|
|
|
|
radius: 8
|
|
|
|
visible: floatingHeader.visibleIndices.includes(index) && walletType !== Constants.watchWalletType
|
2022-07-26 18:14:55 +00:00
|
|
|
color: Theme.palette.baseColor3
|
2022-06-27 13:41:47 +00:00
|
|
|
StatusButton {
|
|
|
|
id: button
|
|
|
|
topPadding: 8
|
|
|
|
bottomPadding: 0
|
|
|
|
implicitHeight: 32
|
2022-09-13 07:37:09 +00:00
|
|
|
leftPadding: 4
|
2022-06-27 13:41:47 +00:00
|
|
|
text: name
|
2022-07-21 12:15:02 +00:00
|
|
|
objectName: name
|
2022-09-13 07:37:09 +00:00
|
|
|
asset.emoji: !!emoji ? emoji: ""
|
|
|
|
asset.emojiSize: StatusQUtils.Emoji.size.middle
|
2022-06-27 13:41:47 +00:00
|
|
|
icon.name: !emoji ? "filled-account": ""
|
|
|
|
normalColor: "transparent"
|
2022-07-26 18:14:55 +00:00
|
|
|
hoverColor: Theme.palette.statusFloatingButtonHighlight
|
2022-06-27 13:41:47 +00:00
|
|
|
highlighted: index === floatingHeader.currentIndex
|
|
|
|
onClicked: {
|
2022-08-01 17:04:23 +00:00
|
|
|
changeSelectedAccount(index)
|
2022-06-27 13:41:47 +00:00
|
|
|
floatingHeader.currentIndex = index
|
2022-03-18 14:47:51 +00:00
|
|
|
}
|
2022-06-27 13:41:47 +00:00
|
|
|
Component.onCompleted: {
|
|
|
|
// On startup make the preseected wallet in the floating menu,
|
|
|
|
// and if the selectedAccount is watch only then select 0th item
|
|
|
|
if(index === 0) {
|
|
|
|
d.firstModelData = model
|
2022-03-18 14:47:51 +00:00
|
|
|
}
|
|
|
|
|
2022-06-27 13:41:47 +00:00
|
|
|
if(name !== floatingHeader.selectedAccount.name) {
|
|
|
|
return
|
2022-03-18 14:47:51 +00:00
|
|
|
}
|
2022-06-27 13:41:47 +00:00
|
|
|
|
|
|
|
if(name === floatingHeader.selectedAccount.name) {
|
|
|
|
if(walletType !== Constants.watchWalletType) {
|
|
|
|
// If the selected index wont be displayed, added it to the visible indices
|
|
|
|
if(index > 2) {
|
|
|
|
visibleIndices = [0, 1, index]
|
2022-03-18 14:47:51 +00:00
|
|
|
}
|
2022-06-27 13:41:47 +00:00
|
|
|
floatingHeader.currentIndex = index
|
2022-03-18 14:47:51 +00:00
|
|
|
}
|
2022-06-27 13:41:47 +00:00
|
|
|
else {
|
2022-08-01 17:04:23 +00:00
|
|
|
changeSelectedAccount(0)
|
2022-06-27 13:41:47 +00:00
|
|
|
floatingHeader.currentIndex = 0
|
2022-03-18 14:47:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-27 13:41:47 +00:00
|
|
|
}
|
|
|
|
popupMenuDelegate: StatusListItem {
|
|
|
|
implicitWidth: 272
|
|
|
|
title: name
|
|
|
|
subTitle: currencyBalance
|
2022-08-11 11:55:08 +00:00
|
|
|
asset.emoji: !!emoji ? emoji: ""
|
|
|
|
asset.color: model.color
|
|
|
|
asset.name: !emoji ? "filled-account": ""
|
|
|
|
asset.letterSize: 14
|
|
|
|
asset.isLetterIdenticon: !!model.emoji
|
|
|
|
asset.bgColor: Theme.palette.indirectColor1
|
2022-06-27 13:41:47 +00:00
|
|
|
onClicked: {
|
2022-08-01 17:04:23 +00:00
|
|
|
changeSelectedAccount(index)
|
2022-06-27 13:41:47 +00:00
|
|
|
floatingHeader.itemSelected(index)
|
2022-03-18 14:47:51 +00:00
|
|
|
}
|
2022-06-27 13:41:47 +00:00
|
|
|
visible: !floatingHeader.visibleIndices.includes(index) && walletType !== Constants.watchWalletType
|
2022-03-18 14:47:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|