2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared 1.0
|
2022-06-03 10:48:03 +00:00
|
|
|
import shared.panels 1.0
|
2021-10-06 09:16:39 +00:00
|
|
|
|
|
|
|
import "stores"
|
|
|
|
import "popups"
|
|
|
|
import "views"
|
2020-05-19 19:44:45 +00:00
|
|
|
|
2021-06-16 11:15:28 +00:00
|
|
|
import StatusQ.Layout 0.1
|
2022-05-07 11:45:15 +00:00
|
|
|
import StatusQ.Controls 0.1
|
2021-06-16 11:15:28 +00:00
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
StatusSectionLayout {
|
|
|
|
id: root
|
2021-06-16 11:15:28 +00:00
|
|
|
|
2021-12-30 12:39:47 +00:00
|
|
|
property ProfileSectionStore store
|
2021-12-09 13:28:02 +00:00
|
|
|
property var globalStore
|
|
|
|
property var systemPalette
|
2022-03-10 17:01:17 +00:00
|
|
|
property var emojiPopup
|
2021-12-09 13:28:02 +00:00
|
|
|
|
2022-09-13 16:17:54 +00:00
|
|
|
backButtonName: root.store.backButtonName
|
2022-10-26 16:00:20 +00:00
|
|
|
notificationCount: activityCenterStore.unreadNotificationsCount
|
2022-10-18 09:06:18 +00:00
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
onNotificationButtonClicked: Global.openActivityCenterPopup()
|
2022-09-13 16:17:54 +00:00
|
|
|
onBackButtonClicked: {
|
|
|
|
switch (profileContainer.currentIndex) {
|
2022-10-18 09:06:18 +00:00
|
|
|
case Constants.settingsSubsection.contacts:
|
2022-09-13 16:17:54 +00:00
|
|
|
Global.changeAppSectionBySectionType(Constants.appSection.profile, Constants.settingsSubsection.messaging)
|
|
|
|
break;
|
2022-10-18 09:06:18 +00:00
|
|
|
case Constants.settingsSubsection.wallet:
|
2022-09-13 16:17:54 +00:00
|
|
|
walletView.resetStack();
|
|
|
|
break;
|
2022-10-11 12:15:33 +00:00
|
|
|
case Constants.settingsSubsection.keycard:
|
|
|
|
keycardView.handleBackAction();
|
|
|
|
break;
|
2022-09-13 16:17:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-09 13:28:02 +00:00
|
|
|
QtObject {
|
2022-05-07 11:45:15 +00:00
|
|
|
id: d
|
|
|
|
|
2022-09-02 14:56:14 +00:00
|
|
|
readonly property int topMargin: 0
|
2022-05-07 11:45:15 +00:00
|
|
|
readonly property int bottomMargin: 56
|
2022-09-13 16:17:54 +00:00
|
|
|
readonly property int leftMargin: 64
|
|
|
|
readonly property int rightMargin: 64
|
2022-05-07 11:45:15 +00:00
|
|
|
|
|
|
|
readonly property int contentWidth: 560
|
2021-12-09 13:28:02 +00:00
|
|
|
}
|
|
|
|
|
2021-10-06 09:16:39 +00:00
|
|
|
leftPanel: LeftTabView {
|
2020-05-19 19:44:45 +00:00
|
|
|
id: leftTab
|
2022-08-09 15:08:39 +00:00
|
|
|
store: root.store
|
2021-10-06 09:16:39 +00:00
|
|
|
anchors.fill: parent
|
2022-06-03 10:48:03 +00:00
|
|
|
anchors.topMargin: d.topMargin
|
2022-06-22 12:16:21 +00:00
|
|
|
onMenuItemClicked: {
|
|
|
|
if (profileContainer.currentItem.dirty) {
|
|
|
|
event.accepted = true;
|
|
|
|
profileContainer.currentItem.notifyDirty();
|
|
|
|
}
|
|
|
|
}
|
2020-05-19 19:44:45 +00:00
|
|
|
}
|
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
centerPanel: Item {
|
2021-06-16 11:15:28 +00:00
|
|
|
anchors.fill: parent
|
2020-08-04 22:22:51 +00:00
|
|
|
|
2022-05-07 11:45:15 +00:00
|
|
|
StackLayout {
|
|
|
|
id: profileContainer
|
2022-03-16 21:20:03 +00:00
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
readonly property var currentItem: (currentIndex >= 0 && currentIndex < children.length) ? children[currentIndex] : null
|
|
|
|
|
2022-09-02 14:56:14 +00:00
|
|
|
anchors.top: parent.top
|
2022-05-07 11:45:15 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: d.bottomMargin
|
|
|
|
anchors.leftMargin: d.leftMargin
|
|
|
|
anchors.rightMargin: d.rightMargin
|
2021-06-16 11:15:28 +00:00
|
|
|
|
2022-05-07 11:45:15 +00:00
|
|
|
currentIndex: Global.settingsSubsection
|
2020-05-19 19:44:45 +00:00
|
|
|
|
2022-05-07 11:45:15 +00:00
|
|
|
onCurrentIndexChanged: {
|
|
|
|
if(visibleChildren[0] === ensContainer){
|
|
|
|
ensContainer.goToStart();
|
|
|
|
}
|
2022-09-13 16:17:54 +00:00
|
|
|
if (currentIndex === 1) {
|
|
|
|
root.store.backButtonName = root.store.getNameForSubsection(Constants.settingsSubsection.messaging);
|
2022-10-11 12:15:33 +00:00
|
|
|
}
|
|
|
|
else if (currentIndex === Constants.settingsSubsection.keycard) {
|
|
|
|
keycardView.handleBackAction();
|
|
|
|
}
|
|
|
|
else {
|
2022-09-13 16:17:54 +00:00
|
|
|
root.store.backButtonName = "";
|
|
|
|
}
|
2022-05-07 11:45:15 +00:00
|
|
|
}
|
2020-07-21 21:03:22 +00:00
|
|
|
|
2022-05-07 11:45:15 +00:00
|
|
|
MyProfileView {
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2022-03-07 20:34:59 +00:00
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
walletStore: root.store.walletStore
|
|
|
|
profileStore: root.store.profileStore
|
|
|
|
privacyStore: root.store.privacyStore
|
2022-09-27 21:26:26 +00:00
|
|
|
contactsStore: root.store.contactsStore
|
2022-08-09 15:08:39 +00:00
|
|
|
sectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.profile)
|
2022-05-07 11:45:15 +00:00
|
|
|
contentWidth: d.contentWidth
|
|
|
|
}
|
2022-02-11 09:44:49 +00:00
|
|
|
|
2022-05-07 11:45:15 +00:00
|
|
|
ContactsView {
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2022-08-09 15:08:39 +00:00
|
|
|
contactsStore: root.store.contactsStore
|
2022-05-07 11:45:15 +00:00
|
|
|
sectionTitle: qsTr("Contacts")
|
|
|
|
contentWidth: d.contentWidth
|
|
|
|
}
|
2020-05-24 22:23:00 +00:00
|
|
|
|
2022-05-07 11:45:15 +00:00
|
|
|
EnsView {
|
|
|
|
// TODO: we need to align structure for the entire this part using `SettingsContentBase` as root component
|
|
|
|
// TODO: handle structure for this subsection to match style used in onther sections
|
|
|
|
// using `SettingsContentBase` component as base.
|
|
|
|
id: ensContainer
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2020-07-21 21:03:22 +00:00
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
ensUsernamesStore: root.store.ensUsernamesStore
|
|
|
|
contactsStore: root.store.contactsStore
|
|
|
|
stickersStore: root.store.stickersStore
|
2020-10-21 14:45:28 +00:00
|
|
|
|
2022-05-07 11:45:15 +00:00
|
|
|
profileContentWidth: d.contentWidth
|
|
|
|
}
|
2020-05-24 22:23:00 +00:00
|
|
|
|
2022-05-07 11:45:15 +00:00
|
|
|
MessagingView {
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2022-08-09 15:08:39 +00:00
|
|
|
advancedStore: root.store.advancedStore
|
|
|
|
messagingStore: root.store.messagingStore
|
|
|
|
sectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.messaging)
|
|
|
|
contactsStore: root.store.contactsStore
|
2022-05-07 11:45:15 +00:00
|
|
|
contentWidth: d.contentWidth
|
|
|
|
}
|
|
|
|
|
|
|
|
WalletView {
|
2022-09-13 16:17:54 +00:00
|
|
|
id: walletView
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2022-09-13 16:17:54 +00:00
|
|
|
rootStore: root.store
|
2022-08-09 15:08:39 +00:00
|
|
|
walletStore: root.store.walletStore
|
|
|
|
emojiPopup: root.emojiPopup
|
|
|
|
sectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.wallet)
|
2022-05-07 11:45:15 +00:00
|
|
|
contentWidth: d.contentWidth
|
|
|
|
}
|
|
|
|
|
|
|
|
AppearanceView {
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2022-05-07 11:45:15 +00:00
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
appearanceStore: root.store.appearanceStore
|
|
|
|
sectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.appearance)
|
2022-05-07 11:45:15 +00:00
|
|
|
contentWidth: d.contentWidth
|
2022-08-09 15:08:39 +00:00
|
|
|
systemPalette: root.systemPalette
|
2022-05-07 11:45:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LanguageView {
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2022-05-07 11:45:15 +00:00
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
languageStore: root.store.languageStore
|
|
|
|
currencyStore: root.store.walletStore.currencyStore
|
|
|
|
sectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.language)
|
2022-05-07 11:45:15 +00:00
|
|
|
contentWidth: d.contentWidth
|
|
|
|
}
|
|
|
|
|
|
|
|
NotificationsView {
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2022-05-07 11:45:15 +00:00
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
notificationsStore: root.store.notificationsStore
|
|
|
|
devicesStore: root.store.devicesStore
|
|
|
|
sectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.notifications)
|
2022-05-07 11:45:15 +00:00
|
|
|
contentWidth: d.contentWidth
|
|
|
|
}
|
|
|
|
|
|
|
|
DevicesView {
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2022-05-07 11:45:15 +00:00
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
devicesStore: root.store.devicesStore
|
|
|
|
sectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.devicesSettings)
|
2022-05-07 11:45:15 +00:00
|
|
|
contentWidth: d.contentWidth
|
|
|
|
}
|
|
|
|
|
|
|
|
BrowserView {
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2022-05-07 11:45:15 +00:00
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
store: root.store
|
2022-10-25 13:57:04 +00:00
|
|
|
accountSettings: localAccountSensitiveSettings
|
2022-08-09 15:08:39 +00:00
|
|
|
sectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.browserSettings)
|
2022-05-07 11:45:15 +00:00
|
|
|
contentWidth: d.contentWidth
|
|
|
|
}
|
|
|
|
|
|
|
|
AdvancedView {
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2022-05-07 11:45:15 +00:00
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
advancedStore: root.store.advancedStore
|
|
|
|
sectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.advanced)
|
2022-05-07 11:45:15 +00:00
|
|
|
contentWidth: d.contentWidth
|
|
|
|
}
|
|
|
|
|
|
|
|
AboutView {
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2022-08-09 15:08:39 +00:00
|
|
|
sectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.about)
|
2022-05-07 11:45:15 +00:00
|
|
|
contentWidth: d.contentWidth
|
2022-10-13 19:02:40 +00:00
|
|
|
|
|
|
|
store: QtObject {
|
|
|
|
function checkForUpdates() {
|
|
|
|
return root.store.checkForUpdates()
|
|
|
|
}
|
|
|
|
|
|
|
|
function getCurrentVersion() {
|
|
|
|
return root.store.getCurrentVersion()
|
|
|
|
}
|
|
|
|
|
|
|
|
function getReleaseNotes() {
|
2022-10-24 15:43:43 +00:00
|
|
|
openLink("https://github.com/status-im/status-desktop/releases/%1".arg(getCurrentVersion()))
|
2022-10-13 19:02:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function openLink(url) {
|
|
|
|
Global.openLink(url)
|
|
|
|
}
|
|
|
|
}
|
2022-05-07 11:45:15 +00:00
|
|
|
}
|
2022-03-23 10:56:25 +00:00
|
|
|
|
|
|
|
CommunitiesView {
|
2022-06-03 15:32:03 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
2022-03-23 10:56:25 +00:00
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
profileSectionStore: root.store
|
|
|
|
rootStore: root.globalStore
|
|
|
|
contactStore: root.store.contactsStore
|
|
|
|
sectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.communitiesSettings)
|
2022-03-23 10:56:25 +00:00
|
|
|
contentWidth: d.contentWidth
|
|
|
|
}
|
2022-08-16 09:19:15 +00:00
|
|
|
|
|
|
|
KeycardView {
|
2022-10-11 12:15:33 +00:00
|
|
|
id: keycardView
|
2022-08-16 09:19:15 +00:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: parent.height
|
|
|
|
|
2022-10-11 12:15:33 +00:00
|
|
|
profileSectionStore: root.store
|
2022-08-31 17:09:07 +00:00
|
|
|
keycardStore: root.store.keycardStore
|
|
|
|
sectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.keycard)
|
2022-10-11 12:15:33 +00:00
|
|
|
mainSectionTitle: root.store.getNameForSubsection(Constants.settingsSubsection.keycard)
|
2022-08-16 09:19:15 +00:00
|
|
|
contentWidth: d.contentWidth
|
|
|
|
}
|
2021-10-06 09:16:39 +00:00
|
|
|
}
|
2022-06-03 10:48:03 +00:00
|
|
|
} // Item
|
|
|
|
|
|
|
|
} // StatusAppTwoPanelLayout
|