mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
2ba9680316
Refactor code to use the token identity instead of token code Removed the debugging activity view as now we have the API integrated in the history view Fixed the activity type in the activity entry Closes: #11025
155 lines
4.5 KiB
QML
155 lines
4.5 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Controls 0.1
|
|
|
|
import utils 1.0
|
|
import shared.views 1.0
|
|
import shared.stores 1.0
|
|
|
|
import "./"
|
|
import "../stores"
|
|
import "../panels"
|
|
import "../views/collectibles"
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property alias currentTabIndex: walletTabBar.currentIndex
|
|
property var store
|
|
property var contactsStore
|
|
property var sendModal
|
|
property var networkConnectionStore
|
|
|
|
signal launchShareAddressModal()
|
|
|
|
function resetView() {
|
|
stack.currentIndex = 0
|
|
root.currentTabIndex = 0
|
|
}
|
|
|
|
function resetStack() {
|
|
stack.currentIndex = 0;
|
|
}
|
|
|
|
QtObject {
|
|
id: d
|
|
function getBackButtonText(index) {
|
|
switch(index) {
|
|
case 1:
|
|
return qsTr("Collectibles")
|
|
case 2:
|
|
return qsTr("Assets")
|
|
case 3:
|
|
return qsTr("Activity")
|
|
default:
|
|
return ""
|
|
}
|
|
}
|
|
}
|
|
|
|
StackLayout {
|
|
id: stack
|
|
anchors.fill: parent
|
|
onCurrentIndexChanged: {
|
|
RootStore.backButtonName = d.getBackButtonText(currentIndex)
|
|
}
|
|
|
|
ColumnLayout {
|
|
spacing: 0
|
|
WalletHeader {
|
|
Layout.fillWidth: true
|
|
overview: RootStore.overview
|
|
store: root.store
|
|
walletStore: RootStore
|
|
networkConnectionStore: root.networkConnectionStore
|
|
onLaunchShareAddressModal: root.launchShareAddressModal()
|
|
onSwitchHideWatchOnlyAccounts: RootStore.toggleWatchOnlyAccounts()
|
|
}
|
|
StatusTabBar {
|
|
id: walletTabBar
|
|
objectName: "rightSideWalletTabBar"
|
|
horizontalPadding: Style.current.padding
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: Style.current.padding
|
|
|
|
StatusTabButton {
|
|
leftPadding: 0
|
|
width: implicitWidth
|
|
text: qsTr("Assets")
|
|
}
|
|
StatusTabButton {
|
|
width: implicitWidth
|
|
text: qsTr("Collectibles")
|
|
}
|
|
StatusTabButton {
|
|
rightPadding: 0
|
|
width: implicitWidth
|
|
text: qsTr("Activity")
|
|
}
|
|
}
|
|
StackLayout {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
Layout.topMargin: Style.current.padding
|
|
Layout.bottomMargin: Style.current.padding
|
|
currentIndex: walletTabBar.currentIndex
|
|
|
|
AssetsView {
|
|
assets: RootStore.assets
|
|
networkConnectionStore: root.networkConnectionStore
|
|
assetDetailsLaunched: stack.currentIndex === 2
|
|
onAssetClicked: {
|
|
assetDetailView.token = token
|
|
stack.currentIndex = 2
|
|
}
|
|
}
|
|
CollectiblesView {
|
|
collectiblesModel: RootStore.flatCollectibles
|
|
onCollectibleClicked: {
|
|
RootStore.selectCollectible(address, tokenId)
|
|
stack.currentIndex = 1
|
|
}
|
|
}
|
|
HistoryView {
|
|
overview: RootStore.overview
|
|
onLaunchTransactionDetail: {
|
|
transactionDetailView.transaction = transaction
|
|
stack.currentIndex = 3
|
|
}
|
|
}
|
|
}
|
|
}
|
|
CollectibleDetailView {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
}
|
|
AssetsDetailView {
|
|
id: assetDetailView
|
|
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
visible: (stack.currentIndex === 2)
|
|
|
|
assetsLoading: RootStore.assetsLoading
|
|
address: RootStore.overview.mixedcaseAddress
|
|
|
|
networkConnectionStore: root.networkConnectionStore
|
|
}
|
|
|
|
TransactionDetailView {
|
|
id: transactionDetailView
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
onVisibleChanged: {
|
|
if (!visible)
|
|
transaction = null
|
|
}
|
|
sendModal: root.sendModal
|
|
contactsStore: root.contactsStore
|
|
visible: (stack.currentIndex === 3)
|
|
}
|
|
}
|
|
}
|