2023-02-15 08:27:18 +00:00
|
|
|
import QtQuick 2.15
|
2021-12-14 18:47:32 +00:00
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property var advancedModule
|
|
|
|
|
|
|
|
// Advanced Module Properties
|
2022-01-11 23:16:17 +00:00
|
|
|
property string fleet: advancedModule? advancedModule.fleet : ""
|
|
|
|
property string bloomLevel: advancedModule? advancedModule.bloomLevel : ""
|
|
|
|
property bool wakuV2LightClientEnabled: advancedModule? advancedModule.wakuV2LightClientEnabled : false
|
|
|
|
property bool isTelemetryEnabled: advancedModule? advancedModule.isTelemetryEnabled : false
|
|
|
|
property bool isAutoMessageEnabled: advancedModule? advancedModule.isAutoMessageEnabled : false
|
|
|
|
property bool isDebugEnabled: advancedModule? advancedModule.isDebugEnabled : false
|
2022-08-02 18:37:27 +00:00
|
|
|
property bool isWakuV2StoreEnabled: advancedModule ? advancedModule.isWakuV2StoreEnabled : false
|
2023-05-08 20:00:32 +00:00
|
|
|
property int logMaxBackups: advancedModule ? advancedModule.logMaxBackups : 1
|
2021-12-14 18:47:32 +00:00
|
|
|
|
2022-01-11 23:16:17 +00:00
|
|
|
property var customNetworksModel: advancedModule? advancedModule.customNetworksModel : []
|
2021-12-16 10:33:27 +00:00
|
|
|
|
2022-03-10 22:08:33 +00:00
|
|
|
property bool isWakuV2: root.fleet === Constants.waku_prod ||
|
|
|
|
root.fleet === Constants.waku_test ||
|
|
|
|
root.fleet === Constants.status_test ||
|
|
|
|
root.fleet === Constants.status_prod
|
2021-12-14 18:47:32 +00:00
|
|
|
|
2023-02-15 08:27:18 +00:00
|
|
|
readonly property bool isFakeLoadingScreenEnabled: localAppSettings.fakeLoadingScreenEnabled ?? false
|
2021-12-24 08:24:26 +00:00
|
|
|
readonly property QtObject experimentalFeatures: QtObject {
|
|
|
|
readonly property string browser: "browser"
|
|
|
|
readonly property string communities: "communities"
|
|
|
|
readonly property string activityCenter: "activityCenter"
|
|
|
|
readonly property string nodeManagement: "nodeManagement"
|
|
|
|
readonly property string onlineUsers: "onlineUsers"
|
|
|
|
readonly property string gifWidget: "gifWidget"
|
2022-05-23 13:11:30 +00:00
|
|
|
readonly property string communitiesPortal: "communitiesPortal"
|
2022-06-09 15:27:14 +00:00
|
|
|
readonly property string communityPermissions: "communityPermissions"
|
2022-08-18 14:25:06 +00:00
|
|
|
readonly property string discordImportTool: "discordImportTool"
|
2022-08-02 18:37:27 +00:00
|
|
|
readonly property string wakuV2StoreEnabled: "wakuV2StoreEnabled"
|
2023-01-09 12:51:31 +00:00
|
|
|
readonly property string communityTokens: "communityTokens"
|
2021-12-24 08:24:26 +00:00
|
|
|
}
|
|
|
|
|
2021-12-14 18:47:32 +00:00
|
|
|
function logDir() {
|
2022-01-11 23:16:17 +00:00
|
|
|
if(!root.advancedModule)
|
|
|
|
return ""
|
|
|
|
|
2021-12-14 18:47:32 +00:00
|
|
|
return root.advancedModule.logDir()
|
|
|
|
}
|
|
|
|
|
|
|
|
function setNetworkName(networkName) {
|
2022-01-11 23:16:17 +00:00
|
|
|
if(!root.advancedModule)
|
|
|
|
return
|
|
|
|
|
2021-12-14 18:47:32 +00:00
|
|
|
root.advancedModule.setNetworkName(networkName)
|
|
|
|
}
|
|
|
|
|
|
|
|
function setFleet(fleetName) {
|
2022-01-11 23:16:17 +00:00
|
|
|
if(!root.advancedModule)
|
|
|
|
return
|
|
|
|
|
2021-12-14 18:47:32 +00:00
|
|
|
root.advancedModule.setFleet(fleetName)
|
|
|
|
}
|
|
|
|
|
|
|
|
function setBloomLevel(mode) {
|
2022-01-11 23:16:17 +00:00
|
|
|
if(!root.advancedModule)
|
|
|
|
return
|
|
|
|
|
2021-12-14 18:47:32 +00:00
|
|
|
root.advancedModule.setBloomLevel(mode)
|
|
|
|
}
|
|
|
|
|
|
|
|
function setWakuV2LightClientEnabled(mode) {
|
2022-01-11 23:16:17 +00:00
|
|
|
if(!root.advancedModule)
|
|
|
|
return
|
|
|
|
|
2021-12-14 18:47:32 +00:00
|
|
|
root.advancedModule.setWakuV2LightClientEnabled(mode)
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleTelemetry() {
|
2022-01-11 23:16:17 +00:00
|
|
|
if(!root.advancedModule)
|
|
|
|
return
|
|
|
|
|
2021-12-14 18:47:32 +00:00
|
|
|
root.advancedModule.toggleTelemetry()
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleAutoMessage() {
|
2022-01-11 23:16:17 +00:00
|
|
|
if(!root.advancedModule)
|
|
|
|
return
|
|
|
|
|
2021-12-14 18:47:32 +00:00
|
|
|
root.advancedModule.toggleAutoMessage()
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleDebug() {
|
2022-01-11 23:16:17 +00:00
|
|
|
if(!root.advancedModule)
|
|
|
|
return
|
|
|
|
|
2021-12-14 18:47:32 +00:00
|
|
|
root.advancedModule.toggleDebug()
|
|
|
|
}
|
2021-12-16 10:33:27 +00:00
|
|
|
|
2023-05-08 20:00:32 +00:00
|
|
|
function setMaxLogBackups(value) {
|
|
|
|
if(!root.advancedModule)
|
|
|
|
return
|
|
|
|
|
|
|
|
root.advancedModule.setMaxLogBackups(value)
|
|
|
|
}
|
|
|
|
|
2022-02-02 22:06:23 +00:00
|
|
|
function enableDeveloperFeatures() {
|
|
|
|
if(!root.advancedModule)
|
|
|
|
return
|
|
|
|
|
|
|
|
root.advancedModule.enableDeveloperFeatures()
|
|
|
|
}
|
|
|
|
|
2021-12-24 08:24:26 +00:00
|
|
|
function toggleExperimentalFeature(feature) {
|
2022-01-11 23:16:17 +00:00
|
|
|
if(!root.advancedModule)
|
|
|
|
return
|
|
|
|
|
2023-03-14 09:43:51 +00:00
|
|
|
if (feature === experimentalFeatures.browser) {
|
2021-12-24 08:24:26 +00:00
|
|
|
advancedModule.toggleBrowserSection()
|
|
|
|
}
|
|
|
|
else if (feature === experimentalFeatures.communities) {
|
|
|
|
advancedModule.toggleCommunitySection()
|
|
|
|
}
|
2022-05-23 13:11:30 +00:00
|
|
|
else if (feature === experimentalFeatures.communitiesPortal) {
|
|
|
|
advancedModule.toggleCommunitiesPortalSection()
|
|
|
|
}
|
2022-08-02 18:37:27 +00:00
|
|
|
else if (feature === experimentalFeatures.wakuV2StoreEnabled) {
|
|
|
|
// toggle history archive support
|
|
|
|
advancedModule.toggleWakuV2Store()
|
|
|
|
}
|
2021-12-24 08:24:26 +00:00
|
|
|
else if (feature === experimentalFeatures.activityCenter) {
|
|
|
|
localAccountSensitiveSettings.isActivityCenterEnabled = !localAccountSensitiveSettings.isActivityCenterEnabled
|
|
|
|
}
|
|
|
|
else if (feature === experimentalFeatures.nodeManagement) {
|
|
|
|
advancedModule.toggleNodeManagementSection()
|
|
|
|
}
|
|
|
|
else if (feature === experimentalFeatures.onlineUsers) {
|
|
|
|
localAccountSensitiveSettings.showOnlineUsers = !localAccountSensitiveSettings.showOnlineUsers
|
|
|
|
}
|
|
|
|
else if (feature === experimentalFeatures.gifWidget) {
|
|
|
|
localAccountSensitiveSettings.isGifWidgetEnabled = !localAccountSensitiveSettings.isGifWidgetEnabled
|
|
|
|
}
|
|
|
|
}
|
2023-02-15 08:27:18 +00:00
|
|
|
|
|
|
|
function toggleFakeLoadingScreen() {
|
|
|
|
if(!localAppSettings)
|
|
|
|
return
|
|
|
|
|
|
|
|
localAppSettings.fakeLoadingScreenEnabled = !localAppSettings.fakeLoadingScreenEnabled
|
|
|
|
}
|
2021-12-14 18:47:32 +00:00
|
|
|
}
|