2021-10-01 15:58:36 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
|
2021-12-30 12:39:47 +00:00
|
|
|
import "../Profile/stores"
|
2021-10-15 08:00:45 +00:00
|
|
|
|
2021-10-01 15:58:36 +00:00
|
|
|
QtObject {
|
|
|
|
id: root
|
2021-11-22 11:08:09 +00:00
|
|
|
property var mainModuleInst: mainModule
|
2021-12-20 18:21:21 +00:00
|
|
|
property var aboutModuleInst: aboutModule
|
2022-01-05 15:11:26 +00:00
|
|
|
property var communitiesModuleInst: communitiesModule
|
2022-01-10 16:44:54 +00:00
|
|
|
property var observedCommunity: communitiesModuleInst.observedCommunity
|
2021-11-22 11:08:09 +00:00
|
|
|
|
2022-01-27 11:28:27 +00:00
|
|
|
property AppSearchStore appSearchStore: AppSearchStore {
|
|
|
|
appSearchModule: root.mainModuleInst.appSearchModule
|
|
|
|
}
|
|
|
|
|
2021-12-30 12:39:47 +00:00
|
|
|
property ProfileSectionStore profileSectionStore: ProfileSectionStore {
|
|
|
|
}
|
|
|
|
|
2022-01-05 15:50:03 +00:00
|
|
|
property EmojiReactions emojiReactionsModel: EmojiReactions {
|
|
|
|
}
|
|
|
|
|
2022-02-04 13:07:48 +00:00
|
|
|
property var chatSearchModel: mainModuleInst.chatSearchModel
|
|
|
|
|
|
|
|
function rebuildChatSearchModel() {
|
|
|
|
mainModuleInst.rebuildChatSearchModel()
|
|
|
|
}
|
|
|
|
|
|
|
|
function setActiveSectionChat(sectionId, chatId) {
|
|
|
|
mainModuleInst.switchTo(sectionId, chatId)
|
|
|
|
}
|
|
|
|
|
2021-12-13 14:24:21 +00:00
|
|
|
// Not Refactored Yet
|
|
|
|
// property var chatsModelInst: chatsModel
|
|
|
|
// Not Refactored Yet
|
|
|
|
// property var walletModelInst: walletModel
|
2021-11-22 11:08:09 +00:00
|
|
|
property var userProfileInst: userProfile
|
2021-11-04 18:55:21 +00:00
|
|
|
|
|
|
|
property var accounts: walletSectionAccounts.model
|
|
|
|
property var currentAccount: walletSectionCurrent
|
2021-12-13 14:24:21 +00:00
|
|
|
// Not Refactored Yet
|
|
|
|
// property var profileModelInst: profileModel
|
2021-11-22 11:08:09 +00:00
|
|
|
|
2022-01-10 16:44:54 +00:00
|
|
|
property var contactStore: profileSectionStore.contactsStore
|
2022-02-10 20:02:02 +00:00
|
|
|
property var privacyStore: profileSectionStore.privacyStore
|
2022-03-07 20:34:59 +00:00
|
|
|
property var messagingStore: profileSectionStore.messagingStore
|
2022-01-10 16:44:54 +00:00
|
|
|
property bool hasAddedContacts: contactStore.myContactsModel.count > 0
|
|
|
|
|
2021-12-09 12:53:40 +00:00
|
|
|
// property MessageStore messageStore: MessageStore { }
|
2021-11-02 14:11:35 +00:00
|
|
|
|
2022-02-09 17:35:59 +00:00
|
|
|
property real volume: !!localAccountSensitiveSettings ? localAccountSensitiveSettings.volume * 0.1 : 0.2
|
2021-12-08 21:20:43 +00:00
|
|
|
property bool notificationSoundsEnabled: !!localAccountSensitiveSettings ? localAccountSensitiveSettings.notificationSoundsEnabled : false
|
2021-11-15 15:15:21 +00:00
|
|
|
|
2022-02-09 00:04:49 +00:00
|
|
|
property var walletSectionTransactionsInst: walletSectionTransactions
|
|
|
|
|
2022-03-18 14:47:51 +00:00
|
|
|
property bool isMultiNetworkEnabled: localAccountSensitiveSettings.isMultiNetworkEnabled
|
|
|
|
|
|
|
|
property var savedAddressesModel: walletSectionSavedAddresses.model
|
|
|
|
|
|
|
|
function getEtherscanLink() {
|
|
|
|
return profileSectionModule.ensUsernamesModule.getEtherscanLink()
|
|
|
|
}
|
|
|
|
|
2022-05-06 15:52:08 +00:00
|
|
|
function createCommunity(communityName, communityDescription, checkedMembership, communityColor, communityImage, imageCropperModalaX, imageCropperModalaY, imageCropperModalbX, imageCropperModalbY) {
|
|
|
|
communitiesModuleInst.createCommunity(communityName, communityDescription, checkedMembership, communityColor, communityImage, imageCropperModalaX, imageCropperModalaY, imageCropperModalbX, imageCropperModalbY);
|
2021-11-02 14:11:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function copyToClipboard(text) {
|
2022-01-10 16:44:54 +00:00
|
|
|
globalUtils.copyToClipboard(text)
|
2021-11-02 14:11:35 +00:00
|
|
|
}
|
2022-01-18 20:54:14 +00:00
|
|
|
|
|
|
|
function generateAlias(pk) {
|
|
|
|
return globalUtils.generateAlias(pk);
|
|
|
|
}
|
|
|
|
|
2022-02-01 15:31:57 +00:00
|
|
|
property string currentCurrency: walletSection.currentCurrency
|
2022-01-31 16:03:45 +00:00
|
|
|
property string signingPhrase: walletSection.signingPhrase
|
2022-02-01 15:31:57 +00:00
|
|
|
function estimateGas(from_addr, to, assetAddress, value, data) {
|
|
|
|
return walletSectionTransactions.estimateGas(from_addr, to, assetAddress, value, data)
|
|
|
|
}
|
|
|
|
// TODO change this to use a better store once it is moved out of the ENS module
|
|
|
|
property string gasPrice: profileSectionStore.ensUsernamesStore.gasPrice
|
|
|
|
function getFiatValue(balance, cryptoSymbo, fiatSymbol) {
|
|
|
|
return profileSectionStore.ensUsernamesStore.getFiatValue(balance, cryptoSymbo, fiatSymbol)
|
|
|
|
}
|
|
|
|
function getGasEthValue(gweiValue, gasLimit) {
|
|
|
|
return profileSectionStore.ensUsernamesStore.getGasEthValue(gweiValue, gasLimit)
|
|
|
|
}
|
2022-02-01 21:03:47 +00:00
|
|
|
|
|
|
|
function transferEth(from, to, amount, gasLimit, gasPrice, tipLimit, overallLimit, password, uuid) {
|
|
|
|
return walletSectionTransactions.transferEth(from, to, amount, gasLimit, gasPrice, tipLimit,
|
|
|
|
overallLimit, password, uuid);
|
|
|
|
}
|
2022-02-02 16:25:06 +00:00
|
|
|
|
|
|
|
function transferTokens(from, to, address, amount, gasLimit, gasPrice, tipLimit, overallLimit, password, uuid) {
|
|
|
|
return walletSectionTransactions.transferTokens(from, to, address, amount, gasLimit,
|
|
|
|
gasPrice, tipLimit, overallLimit, password, uuid);
|
|
|
|
}
|
2022-02-28 12:30:36 +00:00
|
|
|
|
|
|
|
function isEIP1559Enabled() {
|
|
|
|
return walletSection.isEIP1559Enabled()
|
|
|
|
}
|
|
|
|
|
|
|
|
function suggestedFees() {
|
|
|
|
return JSON.parse(walletSectionTransactions.suggestedFees())
|
|
|
|
}
|
2022-03-18 14:47:51 +00:00
|
|
|
|
|
|
|
function hex2Eth(value) {
|
|
|
|
return globalUtils.hex2Eth(value)
|
|
|
|
}
|
2021-10-01 15:58:36 +00:00
|
|
|
}
|