status-desktop/ui/app/AppLayouts/Profile/stores/RootStore.qml

424 lines
12 KiB
QML
Raw Normal View History

import QtQuick 2.13
import utils 1.0
QtObject {
id: root
// Not Refactored Yet
// property var profileModelInst: profileModel
property var profileModuleInst: profileSectionModule
property var profile: profileModule.model
property var contactsModuleInst: contactsModule
property var aboutModuleInst: aboutModule
2021-10-21 18:37:21 +00:00
property var languageModuleInst: languageModule
2021-10-21 22:31:41 +00:00
property var mnemonicModuleInst: mnemonicModule
// Not Refactored Yet
// property var chatsModelInst: chatsModel
// Not Refactored Yet
// property var utilsModelInst: utilsModel
// Not Refactored Yet
// property var walletModelInst: walletModel
// Not Refactored Yet
// property var nodeModelInst: nodeModel
// Not Refactored Yet
// property var ens: profileModelInst.ens
2021-10-22 19:21:04 +00:00
property var dappList: dappPermissionsModule.dapps
property var permissionList: dappPermissionsModule.permissions
// Not Refactored Yet
// property var mailservers: profileModelInst.mailservers
// property var mailserversList: profileModelInst.mailservers.list
property var contacts: contactsModuleInst.model.list
property var blockedContacts: contactsModuleInst.model.blockedContacts
property var addedContacts: contactsModuleInst.model.addedContacts
// Not Refactored Yet
// property var mutedChatsContacts: profileModelInst.mutedChats.contacts
// property var mutedChats: profileModelInst.mutedChats.chats
// property var devicesList: profileModelInst.devices.list
// Not Refactored Yet
property string ensRegisterAddress: "" //utilsModelInst.ensRegisterAddress
// Not Refactored Yet
property string etherscanLink: "" //walletModelInst.utilsView.etherscanLink
property string pubKey: profile.pubKey
// Not Refactored Yet
// property string fleet: profileModelInst.fleets.fleet
// Not Refactored Yet
// property string bloomLevel: nodeModelInst.bloomLevel
// Not Refactored Yet
// property string currentNetwork: profileModelInst.network.current
// property string preferredUsername: profileModelInst.ens.preferredUsername
// property string firstEnsUsername: profileModelInst.ens.firstEnsUsername
property string username: profile.username
property string identicon: profile.identicon
property string profileLargeImage: profile.largeImage
property string profileThumbnailImage: profile.thumbnailImage
property bool profileHasIdentityImage: profile.hasIdentityImage
// Not Refactored Yet
// property bool automaticMailserverSelection: profileModelInst.mailservers.automaticSelection
// Not Refactored Yet
// property bool isWakuV2LightClient: nodeModelInst.WakuV2LightClient
// Not Refactored Yet
// property bool devicesSetup: profileModelInst.devices.isSetup
2021-10-21 22:31:41 +00:00
property bool mnemonicBackedUp: mnemonicModuleInst.isBackedUp
property bool messagesFromContactsOnly: profile.messagesFromContactsOnly
property int profile_id: 0
property int contacts_id: 1
property int ens_id: 2
property int privacy_and_security_id: 3
property int appearance_id: 4
property int sound_id: 5
property int language_id: 6
property int notifications_id: 7
property int sync_settings_id: 8
property int devices_settings_id: 9
property int browser_settings_id: 10
property int advanced_id: 11
property int need_help_id: 12
property int about_id: 13
property int signout_id: 14
property bool browserMenuItemEnabled: localAccountSensitiveSettings.isBrowserEnabled
property ListModel mainMenuItems: ListModel {
ListElement {
menu_id: 0
text: qsTr("My Profile")
icon: "profile"
}
ListElement {
menu_id: 1
text: qsTr("Contacts")
icon: "contact"
}
ListElement {
menu_id: 2
text: qsTr("ENS usernames")
icon: "username"
}
}
property ListModel settingsMenuItems: ListModel {
ListElement {
menu_id: 3
text: qsTr("Privacy and security")
icon: "security"
}
ListElement {
menu_id: 4
text: qsTr("Appearance")
icon: "appearance"
}
ListElement {
menu_id: 5
text: qsTr("Sound")
icon: "sound"
}
ListElement {
menu_id: 6
text: qsTr("Language")
icon: "language"
}
ListElement {
menu_id: 7
text: qsTr("Notifications")
icon: "notification"
}
ListElement {
menu_id: 8
text: qsTr("Sync settings")
icon: "mobile"
}
ListElement {
menu_id: 9
text: qsTr("Devices settings")
icon: "mobile"
}
ListElement {
menu_id: 10
text: qsTr("Browser settings")
icon: "browser"
ifEnabled: "browser"
}
ListElement {
menu_id: 11
text: qsTr("Advanced")
icon: "settings"
}
}
property ListModel extraMenuItems: ListModel {
ListElement {
menu_id: 12
text: qsTr("Need help?")
icon: "help"
}
ListElement {
menu_id: 13
text: qsTr("About")
icon: "info"
}
ListElement {
menu_id: 14
function_name: "exit"
text: qsTr("Sign out & Quit")
icon: "logout"
}
}
function initPermissionList(name) {
2021-10-22 19:21:04 +00:00
dappPermissionsModule.fetchPermissions(name)
}
2021-10-22 19:21:04 +00:00
function revokePermission(dapp, name) {
dappPermissionsModule.revokePermission(dapp, name)
}
2021-10-22 19:21:04 +00:00
function clearPermissions(dapp) {
dappPermissionsModule.clearPermissions(dapp)
}
function initDappList() {
2021-10-22 19:21:04 +00:00
dappPermissionsModule.fetchDapps()
}
function getQrCodeSource(publicKey) {
// Not Refactored Yet
// return profileModelInst.qrCode(publicKey)
}
function copyToClipboard(value) {
// Not Refactored Yet
// chatsModelInst.copyToClipboard(value)
}
function uploadImage(source, aX, aY, bX, bY) {
return profileModule.upload(source, aX, aY, bX, bY)
}
function removeImage() {
return profileModule.remove()
}
function lookupContact(value) {
contactsModuleInst.lookupContact(value)
}
function addContact(pubKey) {
contactsModuleInst.addContact(pubKey)
}
function generateAlias(pubKey) {
// Not Refactored Yet
// return utilsModelInst.generateAlias(pubKey)
}
function joinPrivateChat(address) {
let chatCommunitySectionModule = mainModule.getChatSectionModule()
chatCommunitySectionModule.createOneToOneChat(address, "")
}
function unblockContact(address) {
contactsModuleInst.unblockContact(address)
}
function blockContact(address) {
contactsModuleInst.blockContact(address)
}
function isContactAdded(address) {
return contactsModuleInst.model.isAdded(address)
}
function removeContact(address) {
contactsModuleInst.removeContact(address)
}
function ensDetails(username) {
// Not Refactored Yet
// profileModelInst.ens.details(username)
}
function ensPendingLen() {
// Not Refactored Yet
// return profileModelInst.ens.pendingLen()
}
function validateEns(ensName, isStatus) {
// Not Refactored Yet
// profileModelInst.ens.validate(ensName, isStatus)
}
function registerEnsGasEstimate(username, address) {
// Not Refactored Yet
// return profileModelInst.ens.registerENSGasEstimate(username, address)
}
function registerEns(username, address, gasLimit, tipLimit, overallLimit, gasPrice, password) {
// Not Refactored Yet
// return profileModelInst.ens.registerENS(username,
// address, gasLimit, tipLimit, overallLimit, gasPrice, password)
}
function getEnsUsernameRegistrar() {
// Not Refactored Yet
// return profileModelInst.ens.getUsernameRegistrar()
}
function getEnsRegistry() {
// Not Refactored Yet
// return profileModelInst.ens.getENSRegistry()
}
function releaseEnsEstimate(username, address) {
// Not Refactored Yet
// return profileModelInst.ens.releaseEstimate(username, address)
}
function releaseEns(username, address, gasLimit, gasPrice, password) {
// Not Refactored Yet
// return profileModelInst.ens.release(username, address, gasLimit, gasPrice, password)
}
function getGasPrice() {
// Not Refactored Yet
// walletModelInst.gasView.getGasPrice()
}
function getGasPricePredictions() {
// Not Refactored Yet
// walletModelInst.gasView.getGasPricePredictions()
}
function ensConnectOwnedUsername(name, isStatus) {
// Not Refactored Yet
// profileModelInst.ens.connectOwnedUsername(name, isStatus)
}
function getWalletDefaultAddress() {
// Not Refactored Yet
// return walletModelInst.getDefaultAddress()
}
function getSntBalance() {
// Not Refactored Yet
// return utilsModelInst.getSNTBalance()
}
function changeLocale(l) {
localAppSettings.locale = l
2021-10-21 18:37:21 +00:00
languageModuleInst.changeLocale(l)
}
function getMailserverName(mailserver) {
// Not Refactored Yet
// return profileModelInst.mailservers.list.getMailserverName(mailserver)
}
function setMailserver(mailserver) {
// Not Refactored Yet
// profileModelInst.mailservers.setMailserver(mailserver);
}
function saveMailserver(name, enode) {
// Not Refactored Yet
// profileModelInst.mailservers.save(name, enode)
}
function enableAutomaticMailserverSelection(checked) {
// Not Refactored Yet
// profileModelInst.mailservers.enableAutomaticSelection(checked)
}
function getNetworkName() {
// Not Refactored Yet
// return utilsModelInst.getNetworkName()
}
function logDir() {
// Not Refactored Yet
// return profileModelInst.logDir()
}
function setBloomLevel(mode) {
// Not Refactored Yet
// nodeModelInst.setBloomLevel(mode)
}
function setWakuV2LightClient(mode) {
// Not Refactored Yet
// nodeModelInst.setWakuV2LightClient(mode)
}
function getCurrentVersion() {
return aboutModuleInst.getCurrentVersion()
}
function nodeVersion() {
return aboutModuleInst.nodeVersion()
}
function checkForUpdates() {
// Not Refactored Yet
// utilsModelInst.checkForUpdates()
}
function setPubKeyGasEstimate(username, address) {
// Not Refactored Yet
// return profileModelInst.ens.setPubKeyGasEstimate(username, address)
}
function setPubKey(username, address, gasLimit, gasPrice, password) {
// Not Refactored Yet
// return profileModelInst.ens.setPubKey(username, address, gasLimit, gasPrice, password)
}
function setDeviceName(name) {
// Not Refactored Yet
// profileModelInst.devices.setName(name)
}
function advertiseDevice() {
// Not Refactored Yet
// profileModelInst.devices.advertise()
}
function enableDeviceInstallation(id, pairedSwitch) {
// Not Refactored Yet
// profileModelInst.devices.enableInstallation(id, pairedSwitch)
}
function syncAllDevices() {
// Not Refactored Yet
// profileModelInst.devices.syncAll()
}
function readTextFile(path) {
// Not Refactored Yet
// return utilsModelInst.readTextFile(path)
}
function writeTextFile(path, value) {
// Not Refactored Yet
// utilsModelInst.writeTextFile(path, value)
}
function setMessagesFromContactsOnly(checked) {
// Not Refactored Yet
// profileModelInst.setMessagesFromContactsOnly(checked)
}
function userNameOrAlias(pk) {
// Not Refactored Yet
// return chatsModelInst.userNameOrAlias(pk);
}
function generateIdenticon(pk) {
// Not Refactored Yet
// return utilsModelInst.generateIdenticon(pk);
}
}