253 lines
10 KiB
QML
253 lines
10 KiB
QML
pragma Singleton
|
|
|
|
import QtQuick 2.12
|
|
import utils 1.0
|
|
|
|
QtObject {
|
|
id: root
|
|
// property var utilsModelInst: !!utilsModel ? utilsModel : null
|
|
// property var chatsModelInst: !!chatsModel ?chatsModel : null
|
|
// property var walletModelInst: !!walletModel ? walletModel : null
|
|
// property var profileModelInst: !!profileModel ? profileModel : null
|
|
|
|
property var profileSectionModuleInst: profileSectionModule
|
|
property var privacyModule: profileSectionModuleInst.privacyModule
|
|
property var userProfileInst: !!Global.userProfile? Global.userProfile : null
|
|
property var walletSectionInst: Global.appIsReady && !!walletSection? walletSection : null
|
|
property var appSettingsInst: Global.appIsReady && !!appSettings? appSettings : null
|
|
property var accountSensitiveSettings: Global.appIsReady && !!localAccountSensitiveSettings? localAccountSensitiveSettings : null
|
|
property real volume: !!appSettingsInst ? appSettingsInst.volume * 0.01 : 0.5
|
|
property bool isWalletEnabled: Global.appIsReady? mainModule.sectionsModel.getItemEnabledBySectionType(Constants.appSection.wallet) : true
|
|
|
|
property bool notificationSoundsEnabled: !!appSettingsInst ? appSettingsInst.notificationSoundsEnabled : true
|
|
property bool neverAskAboutUnfurlingAgain: !!accountSensitiveSettings ? accountSensitiveSettings.neverAskAboutUnfurlingAgain : false
|
|
property bool isGifWidgetEnabled: !!accountSensitiveSettings ? accountSensitiveSettings.isGifWidgetEnabled : false
|
|
property bool isTenorWarningAccepted: !!accountSensitiveSettings ? accountSensitiveSettings.isTenorWarningAccepted : false
|
|
property bool displayChatImages: !!accountSensitiveSettings ? accountSensitiveSettings.displayChatImages : false
|
|
|
|
// property string signingPhrase: !!walletModelInst ? walletModelInst.utilsView.signingPhrase : ""
|
|
// property string gasPrice: !!walletModelInst ? walletModelInst.gasView.gasPrice : "0"
|
|
// property string gasEthValue: !!walletModelInst ? walletModelInst.gasView.getGasEthValue : "0"
|
|
|
|
property CurrenciesStore currencyStore: CurrenciesStore {}
|
|
property string currentCurrency: Global.appIsReady? walletSection.currentCurrency : ""
|
|
// property string defaultCurrency: !!walletModelInst ? walletModelInst.balanceView.defaultCurrency : "0"
|
|
// property string fiatValue: !!walletModelInst ? walletModelInst.balanceView.getFiatValue : "0"
|
|
// property string cryptoValue: !!walletModelInst ? walletModelInst.balanceView.getCryptoValue : "0"
|
|
|
|
property var history: typeof walletSectionTransactions !== "undefined" ? walletSectionTransactions
|
|
: null
|
|
property var historyTransactions: Global.appIsReady? walletSectionTransactions.model : null
|
|
property bool isNonArchivalNode: history ? history.isNonArchivalNode
|
|
: false
|
|
property var marketValueStore: TokenMarketValuesStore{}
|
|
|
|
function getNetworkColor(chainId) {
|
|
return networksModule.all.getChainColor(chainId)
|
|
}
|
|
|
|
function getNetworkIcon(chainId) {
|
|
return networksModule.all.getIconUrl(chainId)
|
|
}
|
|
|
|
function getNetworkShortName(chainId) {
|
|
return networksModule.all.getNetworkShortName(chainId)
|
|
}
|
|
|
|
function getNetworkFullName(chainId) {
|
|
return networksModule.all.getNetworkFullName(chainId)
|
|
}
|
|
|
|
function getNetworkIconUrl(symbol) {
|
|
return networksModule.all.getNetworkIconUrl(symbol)
|
|
}
|
|
|
|
function getNetworkName(symbol) {
|
|
return networksModule.all.getNetworkName(symbol)
|
|
}
|
|
|
|
function hex2Dec(value) {
|
|
return globalUtils.hex2Dec(value)
|
|
}
|
|
|
|
readonly property var formationChars: (["*", "`", "~"])
|
|
function getSelectedTextWithFormationChars(messageInputField) {
|
|
let i = 1
|
|
let text = ""
|
|
while (true) {
|
|
if (messageInputField.selectionStart - i < 0 && messageInputField.selectionEnd + i > messageInputField.length) {
|
|
break
|
|
}
|
|
|
|
text = messageInputField.getText(messageInputField.selectionStart - i, messageInputField.selectionEnd + i)
|
|
|
|
if (!formationChars.includes(text.charAt(0)) ||
|
|
!formationChars.includes(text.charAt(text.length - 1))) {
|
|
break
|
|
}
|
|
i++
|
|
}
|
|
return text
|
|
}
|
|
|
|
function setNeverAskAboutUnfurlingAgain(value) {
|
|
localAccountSensitiveSettings.neverAskAboutUnfurlingAgain = value;
|
|
}
|
|
|
|
function setIsTenorWarningAccepted(value) {
|
|
localAccountSensitiveSettings.isTenorWarningAccepted = value;
|
|
}
|
|
|
|
function copyToClipboard(text) {
|
|
globalUtils.copyToClipboard(text)
|
|
}
|
|
|
|
property var chatSectionChatContentInputAreaInst: typeof chatSectionChatContentInputArea !== "undefined" ? chatSectionChatContentInputArea
|
|
: null
|
|
property var gifColumnA: chatSectionChatContentInputAreaInst ? chatSectionChatContentInputArea.gifColumnA
|
|
: null
|
|
property var gifColumnB: chatSectionChatContentInputAreaInst ? chatSectionChatContentInputArea.gifColumnB
|
|
: null
|
|
property var gifColumnC: chatSectionChatContentInputAreaInst ? chatSectionChatContentInputArea.gifColumnC
|
|
: null
|
|
property bool gifLoading: chatSectionChatContentInputAreaInst ? chatSectionChatContentInputArea.gifLoading
|
|
: false
|
|
|
|
function searchGifs(query) {
|
|
if (chatSectionChatContentInputAreaInst)
|
|
chatSectionChatContentInputAreaInst.searchGifs(query)
|
|
}
|
|
|
|
function getTrendingsGifs() {
|
|
if (chatSectionChatContentInputAreaInst)
|
|
chatSectionChatContentInputAreaInst.getTrendingsGifs()
|
|
}
|
|
|
|
function updateWhitelistedUnfurlingSites(hostname, whitelisted) {
|
|
// no way to send update notification for individual array entries
|
|
let settings = localAccountSensitiveSettings.whitelistedUnfurlingSites
|
|
|
|
if (!settings)
|
|
settings = {}
|
|
|
|
if (settings[hostname] === whitelisted)
|
|
return
|
|
|
|
settings[hostname] = whitelisted
|
|
localAccountSensitiveSettings.whitelistedUnfurlingSites = settings
|
|
if(hostname === "media.tenor.com" && whitelisted === false)
|
|
RootStore.setIsTenorWarningAccepted(false)
|
|
}
|
|
|
|
function getRecentsGifs() {
|
|
if (chatSectionChatContentInputAreaInst)
|
|
chatSectionChatContentInputAreaInst.getRecentsGifs()
|
|
}
|
|
|
|
function getFavoritesGifs() {
|
|
return chatSectionChatContentInputAreaInst ? chatSectionChatContentInputAreaInst.getFavoritesGifs()
|
|
: null
|
|
}
|
|
|
|
function isFavorite(id) {
|
|
return chatSectionChatContentInputAreaInst ? chatSectionChatContentInputAreaInst.isFavorite(id)
|
|
: null
|
|
}
|
|
|
|
function toggleFavoriteGif(id, reload) {
|
|
if (chatSectionChatContentInputAreaInst)
|
|
chatSectionChatContentInputAreaInst.toggleFavoriteGif(id, reload)
|
|
}
|
|
|
|
function addToRecentsGif(id) {
|
|
if (chatSectionChatContentInputAreaInst)
|
|
chatSectionChatContentInputAreaInst.addToRecentsGif(id)
|
|
}
|
|
|
|
function getPasswordStrengthScore(password) {
|
|
return root.privacyModule.getPasswordStrengthScore(password);
|
|
}
|
|
|
|
function isFetchingHistory(address) {
|
|
return history.isFetchingHistory(address)
|
|
}
|
|
|
|
function loadTransactionsForAccount(address, pageSize) {
|
|
history.loadTransactionsForAccount(address, historyTransactions.getLastTxBlockNumber(), pageSize, true)
|
|
}
|
|
|
|
function hex2Eth(value) {
|
|
return globalUtils.hex2Eth(value)
|
|
}
|
|
|
|
function hex2Gwei(value) {
|
|
return globalUtils.hex2Gwei(value)
|
|
}
|
|
|
|
function findTokenSymbolByAddress(address) {
|
|
if (Global.appIsReady)
|
|
return walletSectionAllTokens.findTokenSymbolByAddress(address)
|
|
return ""
|
|
}
|
|
|
|
function getNameForSavedWalletAddress(address) {
|
|
return walletSectionSavedAddresses.getNameByAddress(address)
|
|
}
|
|
|
|
function getChainShortNamesForSavedWalletAddress(address) {
|
|
return walletSectionSavedAddresses.getChainShortNamesForAddress(address)
|
|
}
|
|
|
|
function getEnsForSavedWalletAddress(address) {
|
|
return walletSectionSavedAddresses.getEnsForAddress(address)
|
|
}
|
|
|
|
function createOrUpdateSavedAddress(name, address, favourite, chainShortNames, ens) {
|
|
return walletSectionSavedAddresses.createOrUpdateSavedAddress(name, address, favourite, chainShortNames, ens)
|
|
}
|
|
|
|
function deleteSavedAddress(addresse, ens) {
|
|
return walletSectionSavedAddresses.deleteSavedAddress(address, ens)
|
|
}
|
|
|
|
function getLatestBlockNumber() {
|
|
return walletSectionTransactions.getLastTxBlockNumber()
|
|
}
|
|
|
|
function getCurrencyAmount(amount, symbol) {
|
|
return currencyStore.getCurrencyAmount(amount, symbol)
|
|
}
|
|
|
|
function getFiatValue(balance, cryptoSymbol, fiatSymbol) {
|
|
return currencyStore.getFiatValue(balance, cryptoSymbol, fiatSymbol)
|
|
}
|
|
|
|
function getCryptoValue(balance, cryptoSymbol, fiatSymbol) {
|
|
return currencyStore.getCryptoValue(balance, cryptoSymbol, fiatSymbol)
|
|
}
|
|
|
|
function getGasEthValue(gweiValue, gasLimit) {
|
|
return currencyStore.getGasEthValue(gweiValue, gasLimit)
|
|
}
|
|
|
|
function formatCurrencyAmount(amount, symbol, options = null, locale = null) {
|
|
return currencyStore.formatCurrencyAmount(amount, symbol, options, locale)
|
|
}
|
|
|
|
function getHistoricalDataForToken(symbol, currency) {
|
|
if (Global.appIsReady)
|
|
walletSectionAllTokens.getHistoricalDataForToken(symbol,currency)
|
|
}
|
|
|
|
property bool marketHistoryIsLoading: Global.appIsReady? walletSectionAllTokens.marketHistoryIsLoading : false
|
|
|
|
// TODO: range until we optimize to cache the data and abuse the requests
|
|
function fetchHistoricalBalanceForTokenAsJson(address, tokenSymbol, currencySymbol, timeIntervalEnum) {
|
|
if (Global.appIsReady)
|
|
walletSectionAllTokens.fetchHistoricalBalanceForTokenAsJson(address, tokenSymbol, currencySymbol, timeIntervalEnum)
|
|
}
|
|
|
|
property bool balanceHistoryIsLoading: Global.appIsReady? walletSectionAllTokens.balanceHistoryIsLoading : false
|
|
|
|
}
|