2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-05 20:50:22 +00:00
|
|
|
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared 1.0
|
|
|
|
import shared.panels 1.0
|
|
|
|
import shared.popups 1.0
|
|
|
|
import shared.status 1.0
|
2021-10-05 20:50:22 +00:00
|
|
|
import "../popups"
|
|
|
|
import "../controls"
|
2021-11-11 17:25:54 +00:00
|
|
|
import "../stores"
|
2020-05-28 13:49:28 +00:00
|
|
|
|
|
|
|
Item {
|
2021-10-05 20:50:22 +00:00
|
|
|
id: walletHeader
|
|
|
|
|
2021-12-06 21:10:54 +00:00
|
|
|
property string locale: ""
|
2021-10-21 08:22:05 +00:00
|
|
|
property string currency: ""
|
2021-10-05 20:50:22 +00:00
|
|
|
property var currentAccount
|
2020-06-10 20:21:23 +00:00
|
|
|
property var changeSelectedAccount
|
2020-06-03 19:59:18 +00:00
|
|
|
|
2020-05-28 13:49:28 +00:00
|
|
|
height: walletAddress.y + walletAddress.height
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 0
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 0
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 0
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-28 13:49:28 +00:00
|
|
|
id: title
|
2020-06-03 19:59:18 +00:00
|
|
|
text: currentAccount.name
|
2020-05-28 13:49:28 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 56
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 24
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 28
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: separatorDot
|
|
|
|
width: 8
|
|
|
|
height: 8
|
2021-03-16 19:19:48 +00:00
|
|
|
color: Style.current.primary
|
2020-05-28 13:49:28 +00:00
|
|
|
anchors.top: title.verticalCenter
|
|
|
|
anchors.topMargin: -3
|
|
|
|
anchors.left: title.right
|
|
|
|
anchors.leftMargin: 8
|
|
|
|
radius: 50
|
|
|
|
}
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-28 13:49:28 +00:00
|
|
|
id: walletBalance
|
2021-10-21 08:22:05 +00:00
|
|
|
text: {
|
2021-12-06 21:10:54 +00:00
|
|
|
Utils.toLocaleString(currentAccount.currencyBalance.toFixed(2), locale, {"currency": true}) + " " + walletHeader.currency.toUpperCase()
|
2021-10-21 08:22:05 +00:00
|
|
|
}
|
2020-05-28 13:49:28 +00:00
|
|
|
anchors.left: separatorDot.right
|
|
|
|
anchors.leftMargin: 8
|
|
|
|
anchors.verticalCenter: title.verticalCenter
|
|
|
|
font.pixelSize: 22
|
|
|
|
}
|
|
|
|
|
2021-01-19 14:34:41 +00:00
|
|
|
StatusExpandableAddress {
|
2020-05-28 13:49:28 +00:00
|
|
|
id: walletAddress
|
2021-01-19 14:34:41 +00:00
|
|
|
address: currentAccount.address
|
2020-05-28 13:49:28 +00:00
|
|
|
anchors.top: title.bottom
|
|
|
|
anchors.left: title.left
|
2021-01-19 14:34:41 +00:00
|
|
|
addressWidth: 180
|
2020-05-28 13:49:28 +00:00
|
|
|
anchors.leftMargin: 0
|
2021-01-19 14:34:41 +00:00
|
|
|
anchors.topMargin: 0
|
2020-05-28 13:49:28 +00:00
|
|
|
}
|
|
|
|
|
2021-01-20 20:04:23 +00:00
|
|
|
Component {
|
|
|
|
id: receiveModalComponent
|
2021-10-05 20:50:22 +00:00
|
|
|
ReceiveModal {
|
2021-01-22 14:00:25 +00:00
|
|
|
onClosed: {
|
|
|
|
destroy();
|
|
|
|
}
|
2021-11-11 17:25:54 +00:00
|
|
|
selectedAccount: RootStore.currentAccount
|
2021-01-20 20:04:23 +00:00
|
|
|
}
|
2020-08-14 19:19:08 +00:00
|
|
|
}
|
|
|
|
|
2021-01-20 20:04:23 +00:00
|
|
|
Component {
|
|
|
|
id: setCurrencyModalComponent
|
2021-10-05 20:50:22 +00:00
|
|
|
SetCurrencyModal {
|
2021-01-22 14:00:25 +00:00
|
|
|
onClosed: {
|
|
|
|
destroy();
|
|
|
|
}
|
2021-01-20 20:04:23 +00:00
|
|
|
}
|
2020-06-02 01:02:50 +00:00
|
|
|
}
|
|
|
|
|
2021-01-20 20:04:23 +00:00
|
|
|
Component {
|
|
|
|
id: tokenSettingsModalComponent
|
2021-10-05 20:50:22 +00:00
|
|
|
TokenSettingsModal {
|
2021-01-22 14:00:25 +00:00
|
|
|
onClosed: {
|
|
|
|
destroy();
|
|
|
|
}
|
2021-12-06 21:10:54 +00:00
|
|
|
onAddCustomTokenTriggered: {
|
|
|
|
addCustomTokenModal.openEditable();
|
|
|
|
}
|
|
|
|
onTokenDetailsTriggered: {
|
|
|
|
addCustomTokenModal.openWithData(address, name, symbol, decimals);
|
|
|
|
}
|
2021-01-20 20:04:23 +00:00
|
|
|
}
|
2020-06-03 16:49:18 +00:00
|
|
|
}
|
|
|
|
|
2021-01-20 20:04:23 +00:00
|
|
|
Component {
|
|
|
|
id: accountSettingsModalComponent
|
2021-10-05 20:50:22 +00:00
|
|
|
AccountSettingsModal {
|
|
|
|
onClosed: destroy()
|
2021-01-20 20:04:23 +00:00
|
|
|
changeSelectedAccount: walletHeader.changeSelectedAccount
|
|
|
|
}
|
2020-06-10 20:32:04 +00:00
|
|
|
}
|
|
|
|
|
2021-01-20 20:04:23 +00:00
|
|
|
AddCustomTokenModal{
|
2020-06-11 19:52:54 +00:00
|
|
|
id: addCustomTokenModal
|
|
|
|
}
|
|
|
|
|
2020-05-28 13:49:28 +00:00
|
|
|
Item {
|
2020-07-15 19:38:03 +00:00
|
|
|
property int btnOuterMargin: Style.current.bigPadding
|
2020-05-28 13:49:28 +00:00
|
|
|
id: walletMenu
|
|
|
|
width: sendBtn.width + receiveBtn.width + settingsBtn.width
|
|
|
|
+ walletMenu.btnOuterMargin * 2
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 16
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 16
|
|
|
|
|
2020-07-15 19:38:03 +00:00
|
|
|
HeaderButton {
|
2020-05-28 13:49:28 +00:00
|
|
|
id: sendBtn
|
2021-09-28 15:04:06 +00:00
|
|
|
imageSource: Style.svg("send")
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Send"
|
|
|
|
text: qsTrId("command-button-send")
|
2021-01-20 20:04:23 +00:00
|
|
|
onClicked: function() {
|
2020-07-15 19:38:03 +00:00
|
|
|
sendModal.open()
|
2020-05-29 15:43:37 +00:00
|
|
|
}
|
2020-05-28 13:49:28 +00:00
|
|
|
}
|
2020-07-15 19:38:03 +00:00
|
|
|
|
|
|
|
HeaderButton {
|
2020-05-28 13:49:28 +00:00
|
|
|
id: receiveBtn
|
2021-09-28 15:04:06 +00:00
|
|
|
imageSource: Style.svg("send")
|
2020-07-15 19:38:03 +00:00
|
|
|
flipImage: true
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Receive"
|
|
|
|
text: qsTrId("receive")
|
2020-07-15 19:38:03 +00:00
|
|
|
onClicked: function () {
|
2021-12-07 20:33:12 +00:00
|
|
|
Global.openPopup(receiveModalComponent);
|
2020-07-15 19:38:03 +00:00
|
|
|
}
|
2020-05-28 13:49:28 +00:00
|
|
|
anchors.left: sendBtn.right
|
|
|
|
anchors.leftMargin: walletMenu.btnOuterMargin
|
|
|
|
}
|
2020-07-15 19:38:03 +00:00
|
|
|
|
|
|
|
HeaderButton {
|
2020-05-28 13:49:28 +00:00
|
|
|
id: settingsBtn
|
2021-09-28 15:04:06 +00:00
|
|
|
imageSource: Style.svg("settings")
|
2020-07-15 19:38:03 +00:00
|
|
|
flipImage: true
|
|
|
|
text: ""
|
|
|
|
onClicked: function () {
|
2021-04-01 18:22:08 +00:00
|
|
|
if (newSettingsMenu.opened) {
|
|
|
|
newSettingsMenu.close()
|
|
|
|
} else {
|
|
|
|
let x = settingsBtn.x + settingsBtn.width / 2 - newSettingsMenu.width / 2
|
|
|
|
newSettingsMenu.popup(x, settingsBtn.height)
|
|
|
|
}
|
2020-07-15 19:38:03 +00:00
|
|
|
}
|
2020-05-28 13:49:28 +00:00
|
|
|
anchors.left: receiveBtn.right
|
|
|
|
anchors.leftMargin: walletMenu.btnOuterMargin
|
2020-06-03 15:18:39 +00:00
|
|
|
|
2021-10-14 11:48:03 +00:00
|
|
|
// TODO: replace with StatusPopupMenu
|
2020-07-15 19:38:03 +00:00
|
|
|
PopupMenu {
|
|
|
|
id: newSettingsMenu
|
2021-04-01 18:22:08 +00:00
|
|
|
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
|
2020-12-01 18:21:44 +00:00
|
|
|
width: 176
|
2020-07-15 19:38:03 +00:00
|
|
|
Action {
|
|
|
|
//% "Account Settings"
|
|
|
|
text: qsTrId("account-settings")
|
2021-09-28 15:04:06 +00:00
|
|
|
icon.source: Style.svg("manage-wallet")
|
2020-12-01 18:21:44 +00:00
|
|
|
icon.width: 16
|
|
|
|
icon.height: 16
|
2021-12-07 20:33:12 +00:00
|
|
|
onTriggered: Global.openPopup(accountSettingsModalComponent)
|
2020-07-15 19:38:03 +00:00
|
|
|
}
|
|
|
|
Action {
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Manage Assets"
|
|
|
|
text: qsTrId("manage-assets")
|
2021-09-28 15:04:06 +00:00
|
|
|
icon.source: Style.svg("add_remove_token")
|
2020-12-01 18:21:44 +00:00
|
|
|
icon.width: 16
|
|
|
|
icon.height: 16
|
2020-07-15 19:38:03 +00:00
|
|
|
onTriggered: {
|
2021-12-07 20:33:12 +00:00
|
|
|
Global.openPopup(tokenSettingsModalComponent)
|
2020-06-03 15:18:39 +00:00
|
|
|
}
|
2020-07-15 19:38:03 +00:00
|
|
|
}
|
|
|
|
Action {
|
|
|
|
//% "Set Currency"
|
|
|
|
text: qsTrId("set-currency")
|
2021-09-28 15:04:06 +00:00
|
|
|
icon.source: Style.svg("currency")
|
2020-12-01 18:21:44 +00:00
|
|
|
icon.width: 16
|
|
|
|
icon.height: 16
|
2021-02-02 11:50:20 +00:00
|
|
|
onTriggered: {
|
2021-12-07 20:33:12 +00:00
|
|
|
Global.openPopup(setCurrencyModalComponent)
|
2021-02-02 11:50:20 +00:00
|
|
|
}
|
2020-06-03 15:18:39 +00:00
|
|
|
}
|
2020-06-02 01:02:50 +00:00
|
|
|
}
|
2020-05-28 13:49:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|