261 lines
9.7 KiB
QML
261 lines
9.7 KiB
QML
import QtQuick 2.13
|
|
import utils 1.0
|
|
|
|
import AppLayouts.Chat.stores 1.0
|
|
import AppLayouts.Communities.stores 1.0
|
|
import AppLayouts.Profile.helpers 1.0
|
|
|
|
import StatusQ.Core.Utils 0.1
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
property string backButtonName
|
|
|
|
property var aboutModuleInst: aboutModule
|
|
property var mainModuleInst: mainModule
|
|
property var profileSectionModuleInst: profileSectionModule
|
|
|
|
property var sendModalPopup
|
|
|
|
readonly property bool fetchingUpdate: aboutModuleInst.fetching
|
|
|
|
property ContactsStore contactsStore: ContactsStore {
|
|
contactsModule: profileSectionModuleInst.contactsModule
|
|
}
|
|
|
|
property AdvancedStore advancedStore: AdvancedStore {
|
|
walletModule: profileSectionModuleInst.walletModule
|
|
advancedModule: profileSectionModuleInst.advancedModule
|
|
}
|
|
|
|
property MessagingStore messagingStore: MessagingStore {
|
|
privacyModule: profileSectionModuleInst.privacyModule
|
|
syncModule: profileSectionModuleInst.syncModule
|
|
wakuModule: profileSectionModuleInst.wakuModule
|
|
}
|
|
|
|
property DevicesStore devicesStore: DevicesStore {
|
|
devicesModule: profileSectionModuleInst.devicesModule
|
|
}
|
|
|
|
property NotificationsStore notificationsStore: NotificationsStore {
|
|
notificationsModule: profileSectionModuleInst.notificationsModule
|
|
}
|
|
|
|
property LanguageStore languageStore: LanguageStore {
|
|
languageModule: profileSectionModuleInst.languageModule
|
|
}
|
|
|
|
property AppearanceStore appearanceStore: AppearanceStore {
|
|
}
|
|
|
|
property ProfileStore profileStore: ProfileStore {
|
|
profileModule: profileSectionModuleInst.profileModule
|
|
}
|
|
|
|
property PrivacyStore privacyStore: PrivacyStore {
|
|
privacyModule: profileSectionModuleInst.privacyModule
|
|
}
|
|
|
|
property EnsUsernamesStore ensUsernamesStore: EnsUsernamesStore {
|
|
ensUsernamesModule: profileSectionModuleInst.ensUsernamesModule
|
|
}
|
|
|
|
property WalletStore walletStore: WalletStore {
|
|
walletModule: profileSectionModuleInst.walletModule
|
|
}
|
|
|
|
property KeycardStore keycardStore: KeycardStore {
|
|
keycardModule: profileSectionModuleInst.keycardModule
|
|
}
|
|
|
|
property var stickersModuleInst: stickersModule
|
|
property var stickersStore: StickersStore {
|
|
stickersModule: stickersModuleInst
|
|
}
|
|
|
|
property bool browserMenuItemEnabled: Global.appIsReady? localAccountSensitiveSettings.isBrowserEnabled : false
|
|
property bool walletMenuItemEnabled: profileStore.isWalletEnabled
|
|
|
|
property var communitiesModuleInst: Global.appIsReady? communitiesModule : null
|
|
|
|
property var communitiesList: SortFilterProxyModel {
|
|
sourceModel: root.mainModuleInst.sectionsModel
|
|
filters: ValueFilter {
|
|
roleName: "sectionType"
|
|
value: Constants.appSection.community
|
|
}
|
|
}
|
|
property var communitiesProfileModule: profileSectionModuleInst.communitiesModule
|
|
|
|
property ListModel mainMenuItems: ListModel {
|
|
Component.onCompleted: {
|
|
append({subsection: Constants.settingsSubsection.backUpSeed,
|
|
text: qsTr("Back up seed phrase"),
|
|
icon: "seed-phrase"})
|
|
append({subsection: Constants.settingsSubsection.profile,
|
|
text: qsTr("Profile"),
|
|
icon: "profile"})
|
|
append({subsection: Constants.settingsSubsection.password,
|
|
text: qsTr("Password"),
|
|
icon: "password"})
|
|
append({subsection: Constants.settingsSubsection.keycard,
|
|
text: qsTr("Keycard"),
|
|
icon: "keycard"})
|
|
append({subsection: Constants.settingsSubsection.ensUsernames,
|
|
text: qsTr("ENS usernames"),
|
|
icon: "username"})
|
|
append({subsection: Constants.settingsSubsection.syncingSettings,
|
|
text: qsTr("Syncing"),
|
|
icon: "rotate"})
|
|
}
|
|
}
|
|
|
|
property ListModel appsMenuItems: ListModel {
|
|
Component.onCompleted: {
|
|
append({subsection: Constants.settingsSubsection.messaging,
|
|
text: qsTr("Messaging"),
|
|
icon: "chat"})
|
|
append({subsection: Constants.settingsSubsection.wallet,
|
|
text: qsTr("Wallet"),
|
|
icon: "wallet"})
|
|
append({subsection: Constants.settingsSubsection.browserSettings,
|
|
text: qsTr("Browser"),
|
|
icon: "browser"})
|
|
append({subsection: Constants.settingsSubsection.communitiesSettings,
|
|
text: qsTr("Communities"),
|
|
icon: "communities"})
|
|
}
|
|
}
|
|
|
|
property ListModel settingsMenuItems: ListModel {
|
|
Component.onCompleted: {
|
|
append({subsection: Constants.settingsSubsection.appearance,
|
|
text: qsTr("Appearance"),
|
|
icon: "appearance"})
|
|
append({subsection: Constants.settingsSubsection.notifications,
|
|
text: qsTr("Notifications & Sounds"),
|
|
icon: "notification"})
|
|
append({subsection: Constants.settingsSubsection.language,
|
|
text: qsTr("Language & Currency"),
|
|
icon: "language"})
|
|
append({subsection: Constants.settingsSubsection.advanced,
|
|
text: qsTr("Advanced"),
|
|
icon: "settings"})
|
|
}
|
|
}
|
|
|
|
property ListModel extraMenuItems: ListModel {
|
|
Component.onCompleted: {
|
|
append({subsection: Constants.settingsSubsection.about,
|
|
text: qsTr("About"),
|
|
icon: "info"})
|
|
append({subsection: Constants.settingsSubsection.signout,
|
|
text: qsTr("Sign out & Quit"),
|
|
icon: "logout"})
|
|
}
|
|
}
|
|
|
|
readonly property alias ownShowcaseCommunitiesModel: ownShowcaseModels.adaptedCommunitiesSourceModel
|
|
readonly property alias ownShowcaseAccountsModel: ownShowcaseModels.adaptedAccountsSourceModel
|
|
readonly property alias ownShowcaseCollectiblesModel: ownShowcaseModels.adaptedCollectiblesSourceModel
|
|
readonly property alias ownShowcaseSocialLinksModel: ownShowcaseModels.adaptedSocialLinksSourceModel
|
|
|
|
readonly property alias contactShowcaseCommunitiesModel: contactShowcaseModels.adaptedCommunitiesSourceModel
|
|
readonly property alias contactShowcaseAccountsModel: contactShowcaseModels.adaptedAccountsSourceModel
|
|
readonly property alias contactShowcaseCollectiblesModel: contactShowcaseModels.adaptedCollectiblesSourceModel
|
|
readonly property alias contactShowcaseSocialLinksModel: contactShowcaseModels.adaptedSocialLinksSourceModel
|
|
|
|
function requestContactShowcase(address) {
|
|
root.contactsStore.requestProfileShowcase(address)
|
|
}
|
|
|
|
function requestOwnShowcase() {
|
|
root.profileStore.requestProfileShowcasePreferences()
|
|
}
|
|
|
|
readonly property QObject d: QObject {
|
|
ProfileShowcaseSettingsModelAdapter {
|
|
id: ownShowcaseModels
|
|
communitiesSourceModel: root.communitiesList
|
|
communitiesShowcaseModel: root.profileStore.showcasePreferencesCommunitiesModel
|
|
accountsSourceModel: root.walletStore.ownAccounts
|
|
accountsShowcaseModel: root.profileStore.showcasePreferencesAccountsModel
|
|
collectiblesSourceModel: root.walletStore.collectibles
|
|
collectiblesShowcaseModel: root.profileStore.showcasePreferencesCollectiblesModel
|
|
socialLinksSourceModel: root.profileStore.showcasePreferencesSocialLinksModel
|
|
}
|
|
|
|
ProfileShowcaseModelAdapter {
|
|
id: contactShowcaseModels
|
|
communitiesSourceModel: root.communitiesModuleInst.model
|
|
communitiesShowcaseModel: root.contactsStore.showcaseContactCommunitiesModel
|
|
accountsSourceModel: root.contactsStore.showcaseContactAccountsModel
|
|
collectiblesSourceModel: root.contactsStore.showcaseCollectiblesModel
|
|
collectiblesShowcaseModel: root.contactsStore.showcaseContactCollectiblesModel
|
|
socialLinksSourceModel: root.contactsStore.showcaseContactSocialLinksModel
|
|
|
|
isAddressSaved: (address) => {
|
|
return false
|
|
}
|
|
isShowcaseLoading: root.contactsStore.isShowcaseForAContactLoading
|
|
}
|
|
}
|
|
|
|
function importCommunity(communityKey) {
|
|
root.communitiesModuleInst.importCommunity(communityKey);
|
|
}
|
|
|
|
function getCurrentVersion() {
|
|
return aboutModuleInst.getCurrentVersion()
|
|
}
|
|
|
|
function getStatusGoVersion() {
|
|
return aboutModuleInst.getStatusGoVersion()
|
|
}
|
|
|
|
function nodeVersion() {
|
|
return aboutModuleInst.nodeVersion()
|
|
}
|
|
|
|
function checkForUpdates() {
|
|
aboutModuleInst.checkForUpdates()
|
|
}
|
|
|
|
function getNameForSubsection(subsection) {
|
|
let i = 0;
|
|
for (; i < mainMenuItems.count; i++) {
|
|
let elem = mainMenuItems.get(i)
|
|
if(elem.subsection === subsection)
|
|
return elem.text
|
|
}
|
|
|
|
for (i=0; i < appsMenuItems.count; i++) {
|
|
let elem = appsMenuItems.get(i)
|
|
if(elem.subsection === subsection)
|
|
return elem.text
|
|
}
|
|
|
|
for (i=0; i < settingsMenuItems.count; i++) {
|
|
let elem = settingsMenuItems.get(i)
|
|
if(elem.subsection === subsection)
|
|
return elem.text
|
|
}
|
|
|
|
for (i=0; i < extraMenuItems.count; i++) {
|
|
let elem = extraMenuItems.get(i)
|
|
if(elem.subsection === subsection)
|
|
return elem.text
|
|
}
|
|
|
|
return ""
|
|
}
|
|
|
|
function addressWasShown(address) {
|
|
return root.mainModuleInst.addressWasShown(address)
|
|
}
|
|
}
|