2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
2020-06-23 18:51:10 +00:00
|
|
|
import QtQuick.Controls 2.13
|
2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick.Layouts 1.13
|
2020-05-14 16:16:01 +00:00
|
|
|
import "../../../imports"
|
|
|
|
import "../../../shared"
|
2021-06-17 18:41:11 +00:00
|
|
|
import "../Profile/Sections"
|
2020-05-14 16:16:01 +00:00
|
|
|
import "."
|
2021-06-11 13:57:43 +00:00
|
|
|
import StatusQ.Layout 0.1
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: walletView
|
|
|
|
|
2020-11-27 16:21:15 +00:00
|
|
|
property bool hideSignPhraseModal: false
|
|
|
|
|
|
|
|
function showSigningPhrasePopup(){
|
|
|
|
if(!hideSignPhraseModal && !appSettings.hideSignPhraseModal){
|
|
|
|
signPhrasePopup.open();
|
|
|
|
}
|
|
|
|
}
|
2021-04-20 18:52:09 +00:00
|
|
|
|
2021-06-11 13:57:43 +00:00
|
|
|
SignPhraseModal {
|
|
|
|
id: signPhrasePopup
|
2021-04-20 18:52:09 +00:00
|
|
|
}
|
2020-11-27 17:32:48 +00:00
|
|
|
|
2021-09-20 12:06:14 +00:00
|
|
|
SeedPhraseBackupWarning {
|
|
|
|
id: seedPhraseWarning
|
|
|
|
width: parent.width
|
|
|
|
anchors.top: parent.top
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-06-11 13:57:43 +00:00
|
|
|
StatusAppTwoPanelLayout {
|
2021-09-20 12:06:14 +00:00
|
|
|
anchors.top: seedPhraseWarning.bottom
|
|
|
|
height: walletView.height - seedPhraseWarning.height
|
|
|
|
width: walletView.width
|
2020-05-14 16:16:01 +00:00
|
|
|
|
2021-06-11 13:57:43 +00:00
|
|
|
Component.onCompleted: {
|
|
|
|
if(onboardingModel.firstTimeLogin){
|
|
|
|
onboardingModel.firstTimeLogin = false
|
|
|
|
walletModel.setInitialRange()
|
2020-11-27 17:32:48 +00:00
|
|
|
}
|
2020-05-27 20:50:39 +00:00
|
|
|
}
|
2020-05-14 16:16:01 +00:00
|
|
|
|
2021-06-11 13:57:43 +00:00
|
|
|
Timer {
|
|
|
|
id: recentHistoryTimer
|
|
|
|
interval: Constants.walletFetchRecentHistoryInterval
|
|
|
|
running: true
|
|
|
|
repeat: true
|
|
|
|
onTriggered: walletModel.transactionsView.checkRecentHistory()
|
|
|
|
}
|
|
|
|
|
|
|
|
leftPanel: LeftTab {
|
2020-11-27 17:32:48 +00:00
|
|
|
id: leftTab
|
2021-06-11 13:57:43 +00:00
|
|
|
anchors.fill: parent
|
2020-11-27 17:32:48 +00:00
|
|
|
}
|
2021-06-11 13:57:43 +00:00
|
|
|
|
|
|
|
rightPanel: Item {
|
2020-11-27 17:32:48 +00:00
|
|
|
|
2021-06-11 13:57:43 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
|
2020-11-27 17:32:48 +00:00
|
|
|
id: walletContainer
|
2020-05-14 16:16:01 +00:00
|
|
|
|
2020-11-27 17:32:48 +00:00
|
|
|
WalletHeader {
|
|
|
|
id: walletHeader
|
|
|
|
changeSelectedAccount: leftTab.changeSelectedAccount
|
|
|
|
}
|
2020-05-27 20:50:39 +00:00
|
|
|
|
2020-11-27 17:32:48 +00:00
|
|
|
RowLayout {
|
|
|
|
id: walletInfoContainer
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: 0
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 0
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 0
|
|
|
|
anchors.top: walletHeader.bottom
|
|
|
|
anchors.topMargin: 23
|
2020-05-27 20:50:39 +00:00
|
|
|
|
2020-11-27 17:32:48 +00:00
|
|
|
Item {
|
|
|
|
id: walletInfoContent
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
2020-05-28 14:32:58 +00:00
|
|
|
|
2020-11-27 17:32:48 +00:00
|
|
|
TabBar {
|
|
|
|
id: walletTabBar
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Style.current.bigPadding
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Style.current.bigPadding
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Style.current.padding
|
|
|
|
height: assetBtn.height
|
|
|
|
background: Rectangle {
|
|
|
|
color: Style.current.transparent
|
|
|
|
}
|
|
|
|
StatusTabButton {
|
|
|
|
id: assetBtn
|
|
|
|
//% "Assets"
|
|
|
|
btnText: qsTrId("wallet-assets")
|
|
|
|
}
|
|
|
|
StatusTabButton {
|
|
|
|
id: collectiblesBtn
|
|
|
|
anchors.left: assetBtn.right
|
|
|
|
anchors.leftMargin: 32
|
|
|
|
//% "Collectibles"
|
|
|
|
btnText: qsTrId("wallet-collectibles")
|
|
|
|
}
|
|
|
|
StatusTabButton {
|
|
|
|
id: historyBtn
|
|
|
|
anchors.left: collectiblesBtn.right
|
|
|
|
anchors.leftMargin: 32
|
|
|
|
//% "History"
|
|
|
|
btnText: qsTrId("history")
|
|
|
|
}
|
2020-05-28 14:54:42 +00:00
|
|
|
}
|
2020-11-27 17:32:48 +00:00
|
|
|
|
|
|
|
StackLayout {
|
|
|
|
id: stackLayout
|
|
|
|
anchors.rightMargin: Style.current.bigPadding
|
|
|
|
anchors.leftMargin: Style.current.bigPadding
|
|
|
|
anchors.top: walletTabBar.bottom
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.topMargin: Style.current.bigPadding
|
|
|
|
currentIndex: walletTabBar.currentIndex
|
|
|
|
|
|
|
|
AssetsTab {
|
|
|
|
id: assetsTab
|
|
|
|
}
|
|
|
|
CollectiblesTab {
|
|
|
|
id: collectiblesTab
|
|
|
|
}
|
|
|
|
HistoryTab {
|
|
|
|
id: historyTab
|
|
|
|
}
|
2020-05-27 15:41:40 +00:00
|
|
|
}
|
2020-05-28 14:32:58 +00:00
|
|
|
}
|
2020-05-27 20:50:39 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-14 16:16:01 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-27 17:32:48 +00:00
|
|
|
|
|
|
|
|
2020-05-14 16:16:01 +00:00
|
|
|
/*##^##
|
|
|
|
Designer {
|
2020-05-28 14:32:58 +00:00
|
|
|
D{i:0;autoSize:true;formeditorColor:"#ffffff";height:770;width:1152}
|
2020-05-14 16:16:01 +00:00
|
|
|
}
|
|
|
|
##^##*/
|