import QtQuick 2.13 import StatusQ.Core 0.1 import utils 1.0 QtObject { id: root readonly property var networkConnectionModuleInst: networkConnectionModule readonly property bool isOnline: mainModule.isOnline readonly property bool balanceCache: walletSectionCurrent.hasBalanceCache readonly property bool marketValuesCache: walletSectionCurrent.hasMarketValuesCache readonly property bool collectiblesCache: walletSectionCurrent.getHasCollectiblesCache() readonly property var blockchainNetworksDown: networkConnectionModule.blockchainNetworkConnection.chainIds.split(";") readonly property bool atleastOneBlockchainNetworkAvailable: blockchainNetworksDown.length < networksModule.all.count readonly property bool sendBuyBridgeEnabled: localAppSettings.testEnvironment || (isOnline && (!networkConnectionModule.blockchainNetworkConnection.completelyDown && atleastOneBlockchainNetworkAvailable) && !networkConnectionModule.marketValuesNetworkConnection.completelyDown) readonly property string sendBuyBridgeToolTipText: !isOnline ? qsTr("Requires internet connection") : networkConnectionModule.blockchainNetworkConnection.completelyDown || (!networkConnectionModule.blockchainNetworkConnection.completelyDown && !atleastOneBlockchainNetworkAvailable) ? qsTr("Requires Pocket Network(POKT) or Infura, both of which are currently unavailable") : networkConnectionModule.marketValuesNetworkConnection.completelyDown ? qsTr("Requires CryptoCompare or CoinGecko, both of which are currently unavailable"): qsTr("Requires POKT/ Infura and CryptoCompare/CoinGecko, which are all currently unavailable") readonly property bool notOnlineWithNoCache: !isOnline && !walletSectionCurrent.hasBalanceCache && !walletSectionCurrent.hasMarketValuesCache readonly property string notOnlineWithNoCacheText: qsTr("Internet connection lost. Data could not be retrieved.") readonly property bool noBlockchainConnectionAndNoCache: networkConnectionModule.blockchainNetworkConnection.completelyDown && !walletSectionCurrent.hasBalanceCache readonly property string noBlockchainConnectionAndNoCacheText: qsTr("Token balances are fetched from Pocket Network (POKT) and Infura which are both curently unavailable") readonly property bool noMarketConnectionAndNoCache: networkConnectionModule.marketValuesNetworkConnection.completelyDown && !walletSectionCurrent.hasMarketValuesCache readonly property string noMarketConnectionAndNoCacheText: qsTr("Market values are fetched from CryptoCompare and CoinGecko which are both currently unavailable") readonly property bool noBlockchainAndMarketConnectionAndNoCache: noBlockchainConnectionAndNoCache && noMarketConnectionAndNoCache readonly property string noBlockchainAndMarketConnectionAndNoCacheText: qsTr("Market values and token balances use CryptoCompare/CoinGecko and POKT/Infura which are all currently unavailable.") readonly property bool accountBalanceNotAvailable: notOnlineWithNoCache || noBlockchainConnectionAndNoCache || noMarketConnectionAndNoCache readonly property string accountBalanceNotAvailableText: !isOnline ? notOnlineWithNoCacheText : noBlockchainAndMarketConnectionAndNoCache ? noBlockchainAndMarketConnectionAndNoCacheText : networkConnectionModule.blockchainNetworkConnection.completelyDown ? noBlockchainConnectionAndNoCacheText : networkConnectionModule.marketValuesNetworkConnection.completelyDown ? noBlockchainAndMarketConnectionAndNoCacheText : "" property bool noTokenBalanceAvailable: networkConnectionStore.notOnlineWithNoCache || networkConnectionStore.noBlockchainConnectionAndNoCache function getBlockchainNetworkDownTextForToken(balances) { if(!!balances && !networkConnectionModule.blockchainNetworkConnection.completelyDown && !networkConnectionStore.notOnlineWithNoCache) { let chainIdsDown = [] for (var i =0; i 0) { return qsTr("Pocket Network (POKT) & Infura are currently both unavailable for %1. %1 balances are as of %2.") .arg(getChainIdsJointString(chainIdsDown)) .arg(LocaleUtils.formatDateTime(new Date(networkConnectionModule.blockchainNetworkConnection.lastCheckedAt*1000))) } } return "" } function getMarketNetworkDownText() { if(networkConnectionStore.notOnlineWithNoCache) return networkConnectionStore.notOnlineWithNoCacheText else if(noBlockchainAndMarketConnectionAndNoCache) return noBlockchainAndMarketConnectionAndNoCacheText else if(noMarketConnectionAndNoCache) return noMarketConnectionAndNoCacheText else return "" } function getChainIdsJointString(chainIdsDown) { let jointChainIdString = "" for (const chain of chainIdsDown) { jointChainIdString = (!!jointChainIdString) ? jointChainIdString + " & " : jointChainIdString jointChainIdString += networksModule.all.getNetworkFullName(parseInt(chain)) } return jointChainIdString } function retryConnection(websiteDown) { switch(websiteDown) { case Constants.walletConnections.blockchains: networkConnectionModule.refreshBlockchainValues() break case Constants.walletConnections.market: networkConnectionModule.refreshMarketValues() break case Constants.walletConnections.collectibles: networkConnectionModule.refreshCollectiblesValues() break } } }