chore: adjust storybook pages to address changes in stores
This commit is contained in:
parent
2af0d6668b
commit
152fac2e3c
|
@ -9,7 +9,7 @@ import Storybook 1.0
|
||||||
import Models 1.0
|
import Models 1.0
|
||||||
|
|
||||||
import AppLayouts.stores 1.0 as AppLayoutStores
|
import AppLayouts.stores 1.0 as AppLayoutStores
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
id: root
|
id: root
|
||||||
|
@ -23,8 +23,9 @@ SplitView {
|
||||||
|
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
rootStore: AppLayoutStores.RootStore {}
|
rootStore: AppLayoutStores.RootStore {}
|
||||||
communityTokensStore: CommunityTokensStore {}
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
}
|
}
|
||||||
|
|
||||||
QtObject {
|
QtObject {
|
||||||
|
|
|
@ -7,14 +7,9 @@ import utils 1.0
|
||||||
|
|
||||||
import Storybook 1.0
|
import Storybook 1.0
|
||||||
|
|
||||||
import Qt.labs.settings 1.1
|
|
||||||
|
|
||||||
import Models 1.0
|
|
||||||
|
|
||||||
import AppLayouts.Wallet.controls 1.0
|
import AppLayouts.Wallet.controls 1.0
|
||||||
import AppLayouts.stores 1.0 as AppLayoutStores
|
|
||||||
import AppLayouts.Wallet.views 1.0
|
import Qt.labs.settings 1.1
|
||||||
import AppLayouts.Wallet.stores 1.0
|
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
id: root
|
id: root
|
||||||
|
|
|
@ -17,7 +17,7 @@ import AppLayouts.Communities.stores 1.0 as CommunitiesStore
|
||||||
import AppLayouts.Wallet.views 1.0
|
import AppLayouts.Wallet.views 1.0
|
||||||
import AppLayouts.Wallet.stores 1.0
|
import AppLayouts.Wallet.stores 1.0
|
||||||
|
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
import shared.views 1.0
|
import shared.views 1.0
|
||||||
|
|
||||||
import Storybook 1.0
|
import Storybook 1.0
|
||||||
|
@ -50,8 +50,9 @@ SplitView {
|
||||||
|
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
rootStore: AppLayoutStores.RootStore
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
communityTokensStore: CommunityTokensStore {}
|
rootStore: AppLayoutStores.RootStore {}
|
||||||
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
walletCollectiblesStore: CollectiblesStore {
|
walletCollectiblesStore: CollectiblesStore {
|
||||||
collectiblesController: collectiblesView.controller
|
collectiblesController: collectiblesView.controller
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ import Models 1.0
|
||||||
|
|
||||||
import utils 1.0
|
import utils 1.0
|
||||||
import mainui 1.0
|
import mainui 1.0
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
id: root
|
id: root
|
||||||
|
@ -21,8 +21,9 @@ SplitView {
|
||||||
|
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
rootStore: AppLayoutStores.RootStore
|
rootStore: AppLayoutStores.RootStore
|
||||||
communityTokensStore: CommunityTokensStore {}
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
}
|
}
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
|
|
|
@ -12,7 +12,7 @@ import utils 1.0
|
||||||
|
|
||||||
import Storybook 1.0
|
import Storybook 1.0
|
||||||
import Models 1.0
|
import Models 1.0
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
id: root
|
id: root
|
||||||
|
@ -25,12 +25,13 @@ SplitView {
|
||||||
assetsWithFilteredBalances: walletAssetStore.groupedAccountsAssetsModel
|
assetsWithFilteredBalances: walletAssetStore.groupedAccountsAssetsModel
|
||||||
}
|
}
|
||||||
|
|
||||||
readonly property var currencyStore: CurrenciesStore {}
|
readonly property var currencyStore: SharedStores.CurrenciesStore {}
|
||||||
|
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
rootStore: AppLayoutsStores.RootStore
|
rootStore: AppLayoutsStores.RootStore
|
||||||
communityTokensStore: CommunityTokensStore {}
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
}
|
}
|
||||||
|
|
||||||
ListModel {
|
ListModel {
|
||||||
|
|
|
@ -29,7 +29,7 @@ import AppLayouts.Wallet.stores 1.0 as WalletStore
|
||||||
import AppLayouts.stores 1.0 as AppLayoutStores
|
import AppLayouts.stores 1.0 as AppLayoutStores
|
||||||
|
|
||||||
import mainui 1.0
|
import mainui 1.0
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
import utils 1.0
|
import utils 1.0
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
|
@ -38,8 +38,9 @@ Item {
|
||||||
// Needed for DAppsWorkflow->PairWCModal to open its instructions popup
|
// Needed for DAppsWorkflow->PairWCModal to open its instructions popup
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
rootStore: AppLayoutStores.RootStore {}
|
rootStore: AppLayoutStores.RootStore {}
|
||||||
communityTokensStore: CommunityTokensStore {}
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
}
|
}
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
|
@ -303,7 +304,7 @@ Item {
|
||||||
projectId: projectIdText.projectId
|
projectId: projectIdText.projectId
|
||||||
}
|
}
|
||||||
|
|
||||||
store: DAppsStore {
|
store: SharedStores.DAppsStore {
|
||||||
signal dappsListReceived(string dappsJson)
|
signal dappsListReceived(string dappsJson)
|
||||||
signal userAuthenticated(string topic, string id, string password, string pin)
|
signal userAuthenticated(string topic, string id, string password, string pin)
|
||||||
signal userAuthenticationFailed(string topic, string id)
|
signal userAuthenticationFailed(string topic, string id)
|
||||||
|
@ -421,7 +422,7 @@ Item {
|
||||||
function getNetworkShortNames(chainIds) {
|
function getNetworkShortNames(chainIds) {
|
||||||
return "eth:oeth:arb"
|
return "eth:oeth:arb"
|
||||||
}
|
}
|
||||||
readonly property CurrenciesStore currencyStore: CurrenciesStore {}
|
readonly property SharedStores.CurrenciesStore currencyStore: SharedStores.CurrenciesStore {}
|
||||||
readonly property WalletStore.WalletAssetsStore walletAssetsStore: WalletStore.WalletAssetsStore {
|
readonly property WalletStore.WalletAssetsStore walletAssetsStore: WalletStore.WalletAssetsStore {
|
||||||
// Silence warnings
|
// Silence warnings
|
||||||
assetsWithFilteredBalances: ListModel {}
|
assetsWithFilteredBalances: ListModel {}
|
||||||
|
|
|
@ -3,7 +3,7 @@ import QtQuick.Controls 2.15
|
||||||
import QtQuick.Layouts 1.15
|
import QtQuick.Layouts 1.15
|
||||||
|
|
||||||
import mainui 1.0
|
import mainui 1.0
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
import AppLayouts.stores 1.0 as AppLayoutsStores
|
import AppLayouts.stores 1.0 as AppLayoutsStores
|
||||||
import AppLayouts.Communities.panels 1.0
|
import AppLayouts.Communities.panels 1.0
|
||||||
|
|
||||||
|
@ -15,8 +15,9 @@ SplitView {
|
||||||
|
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
rootStore: AppLayoutsStores.RootStore {}
|
rootStore: AppLayoutsStores.RootStore {}
|
||||||
communityTokensStore: CommunityTokensStore {}
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
}
|
}
|
||||||
|
|
||||||
EditSettingsPanel {
|
EditSettingsPanel {
|
||||||
|
|
|
@ -11,7 +11,7 @@ import Storybook 1.0
|
||||||
import utils 1.0
|
import utils 1.0
|
||||||
import mainui 1.0
|
import mainui 1.0
|
||||||
|
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
id: root
|
id: root
|
||||||
|
@ -20,8 +20,9 @@ SplitView {
|
||||||
|
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
rootStore: AppLayoutStores.RootStore {}
|
rootStore: AppLayoutStores.RootStore {}
|
||||||
communityTokensStore: CommunityTokensStore {}
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
}
|
}
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
|
@ -70,7 +71,7 @@ SplitView {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
currencyStore: CurrenciesStore {
|
currencyStore: SharedStores.CurrenciesStore {
|
||||||
property string currentCurrency: "USD"
|
property string currentCurrency: "USD"
|
||||||
|
|
||||||
function updateCurrency(currencyKey) {
|
function updateCurrency(currencyKey) {
|
||||||
|
|
|
@ -6,7 +6,7 @@ import mainui 1.0
|
||||||
import AppLayouts.stores 1.0 as AppLayoutStores
|
import AppLayouts.stores 1.0 as AppLayoutStores
|
||||||
import AppLayouts.Communities.panels 1.0
|
import AppLayouts.Communities.panels 1.0
|
||||||
|
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
id: root
|
id: root
|
||||||
|
@ -14,8 +14,9 @@ SplitView {
|
||||||
|
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
rootStore: AppLayoutStores.RootStore {}
|
rootStore: AppLayoutStores.RootStore {}
|
||||||
communityTokensStore: CommunityTokensStore {}
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
}
|
}
|
||||||
|
|
||||||
OverviewSettingsPanel {
|
OverviewSettingsPanel {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import QtQuick.Layouts 1.14
|
||||||
|
|
||||||
import utils 1.0
|
import utils 1.0
|
||||||
import shared.views 1.0
|
import shared.views 1.0
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
import mainui 1.0
|
import mainui 1.0
|
||||||
|
|
||||||
import StatusQ 0.1
|
import StatusQ 0.1
|
||||||
|
@ -172,6 +172,7 @@ SplitView {
|
||||||
|
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
rootStore: AppLayoutStores.RootStore {
|
rootStore: AppLayoutStores.RootStore {
|
||||||
property var contactStore: QtObject {
|
property var contactStore: QtObject {
|
||||||
property var contactsModule: null
|
property var contactsModule: null
|
||||||
|
@ -304,7 +305,7 @@ SplitView {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
communityTokensStore: CommunityTokensStore {}
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
}
|
}
|
||||||
|
|
||||||
WalletAssetsStore {
|
WalletAssetsStore {
|
||||||
|
|
|
@ -7,7 +7,7 @@ import StatusQ.Core.Utils 0.1 as CoreUtils
|
||||||
import mainui 1.0
|
import mainui 1.0
|
||||||
import AppLayouts.stores 1.0 as AppLayoutStores
|
import AppLayouts.stores 1.0 as AppLayoutStores
|
||||||
import AppLayouts.Profile.panels 1.0
|
import AppLayouts.Profile.panels 1.0
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
|
|
||||||
import utils 1.0
|
import utils 1.0
|
||||||
|
|
||||||
|
@ -22,8 +22,9 @@ SplitView {
|
||||||
|
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
rootStore: AppLayoutStores.RootStore {}
|
rootStore: AppLayoutStores.RootStore {}
|
||||||
communityTokensStore: CommunityTokensStore {}
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
}
|
}
|
||||||
|
|
||||||
ListModel {
|
ListModel {
|
||||||
|
|
|
@ -18,7 +18,7 @@ import mainui 1.0
|
||||||
import AppLayouts.Wallet.popups.swap 1.0
|
import AppLayouts.Wallet.popups.swap 1.0
|
||||||
import AppLayouts.Wallet.stores 1.0
|
import AppLayouts.Wallet.stores 1.0
|
||||||
import AppLayouts.stores 1.0 as AppLayoutStores
|
import AppLayouts.stores 1.0 as AppLayoutStores
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
id: root
|
id: root
|
||||||
|
@ -50,8 +50,9 @@ SplitView {
|
||||||
|
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
rootStore: AppLayoutStores.RootStore {}
|
rootStore: AppLayoutStores.RootStore {}
|
||||||
communityTokensStore: CommunityTokensStore {}
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
}
|
}
|
||||||
|
|
||||||
PopupBackground {
|
PopupBackground {
|
||||||
|
@ -131,7 +132,7 @@ SplitView {
|
||||||
readonly property var baseGroupedAccountAssetModel: GroupedAccountsAssetsModel {}
|
readonly property var baseGroupedAccountAssetModel: GroupedAccountsAssetsModel {}
|
||||||
assetsWithFilteredBalances: thisWalletAssetStore.groupedAccountsAssetsModel
|
assetsWithFilteredBalances: thisWalletAssetStore.groupedAccountsAssetsModel
|
||||||
}
|
}
|
||||||
currencyStore: CurrenciesStore {
|
currencyStore: SharedStores.CurrenciesStore {
|
||||||
function formatBigNumber(number: string, symbol: string, noSymbolOption: bool) {
|
function formatBigNumber(number: string, symbol: string, noSymbolOption: bool) {
|
||||||
if (!number)
|
if (!number)
|
||||||
return "N/A"
|
return "N/A"
|
||||||
|
|
|
@ -6,7 +6,7 @@ import Storybook 1.0
|
||||||
|
|
||||||
import mainui 1.0
|
import mainui 1.0
|
||||||
import shared.views 1.0
|
import shared.views 1.0
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
|
|
||||||
import AppLayouts.stores 1.0 as AppLayoutStores
|
import AppLayouts.stores 1.0 as AppLayoutStores
|
||||||
|
|
||||||
|
@ -18,8 +18,9 @@ SplitView {
|
||||||
|
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
rootStore: AppLayoutStores.RootStore {}
|
rootStore: AppLayoutStores.RootStore {}
|
||||||
communityTokensStore: CommunityTokensStore {}
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
|
|
|
@ -10,7 +10,7 @@ import utils 1.0
|
||||||
import AppLayouts.stores 1.0 as AppLayoutStores
|
import AppLayouts.stores 1.0 as AppLayoutStores
|
||||||
import AppLayouts.Profile.views 1.0
|
import AppLayouts.Profile.views 1.0
|
||||||
import AppLayouts.Profile.stores 1.0 as ProfileStores
|
import AppLayouts.Profile.stores 1.0 as ProfileStores
|
||||||
import shared.stores 1.0
|
import shared.stores 1.0 as SharedStores
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
id: root
|
id: root
|
||||||
|
@ -20,8 +20,9 @@ SplitView {
|
||||||
|
|
||||||
Popups {
|
Popups {
|
||||||
popupParent: root
|
popupParent: root
|
||||||
|
sharedRootStore: SharedStores.RootStore {}
|
||||||
rootStore: AppLayoutStores.RootStore {}
|
rootStore: AppLayoutStores.RootStore {}
|
||||||
communityTokensStore: CommunityTokensStore {}
|
communityTokensStore: SharedStores.CommunityTokensStore {}
|
||||||
}
|
}
|
||||||
|
|
||||||
SyncingView {
|
SyncingView {
|
||||||
|
|
Loading…
Reference in New Issue