155 lines
5.6 KiB
QML
155 lines
5.6 KiB
QML
import QtQuick 2.15
|
|
|
|
import StatusQ.Core.Utils 0.1
|
|
|
|
import AppLayouts.Chat.stores 1.0
|
|
import AppLayouts.Communities.stores 1.0
|
|
import AppLayouts.Profile.helpers 1.0
|
|
import utils 1.0
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
property string backButtonName
|
|
|
|
property var aboutModuleInst: aboutModule
|
|
property var mainModuleInst: mainModule
|
|
property var profileSectionModuleInst: profileSectionModule
|
|
|
|
readonly property bool fetchingUpdate: aboutModuleInst.fetching
|
|
|
|
property ContactsStore contactsStore: ContactsStore {}
|
|
|
|
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 StickersStore stickersStore: StickersStore {
|
|
stickersModule: stickersModuleInst
|
|
}
|
|
|
|
property bool walletMenuItemEnabled: profileStore.isWalletEnabled
|
|
|
|
property var communitiesModuleInst: Global.appIsReady? communitiesModule : null
|
|
|
|
readonly property var communitiesList: SortFilterProxyModel {
|
|
sourceModel: root.mainModuleInst.sectionsModel
|
|
filters: ValueFilter {
|
|
roleName: "sectionType"
|
|
value: Constants.appSection.community
|
|
}
|
|
}
|
|
property var communitiesProfileModule: profileSectionModuleInst.communitiesModule
|
|
|
|
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 getCurrentVersion() {
|
|
return aboutModuleInst.getCurrentVersion()
|
|
}
|
|
|
|
function getStatusGoVersion() {
|
|
return aboutModuleInst.getStatusGoVersion()
|
|
}
|
|
|
|
function nodeVersion() {
|
|
return aboutModuleInst.nodeVersion()
|
|
}
|
|
|
|
function checkForUpdates() {
|
|
aboutModuleInst.checkForUpdates()
|
|
}
|
|
|
|
function addressWasShown(address) {
|
|
return root.mainModuleInst.addressWasShown(address)
|
|
}
|
|
}
|