* Correctly handle the re-opening of the main window. Add an additional safe-guard to ensure only one main window exists. Make sure all secondary windows use the correct tint colour. * Fix a bug where the settings screen isn't shown on macOS when the AppLock feature is enabled.
81 lines
1.8 KiB
Swift
81 lines
1.8 KiB
Swift
//
|
|
// Copyright 2025 Element Creations Ltd.
|
|
// Copyright 2022-2025 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
enum SettingsScreenViewModelAction: Equatable {
|
|
case close
|
|
case userDetails
|
|
case linkNewDevice
|
|
case manageAccount(url: URL)
|
|
case analytics
|
|
case appLock
|
|
case reportBug
|
|
case about
|
|
case blockedUsers
|
|
case secureBackup
|
|
case notifications
|
|
case advancedSettings
|
|
case labs
|
|
case developerOptions
|
|
case logout
|
|
case deactivateAccount
|
|
}
|
|
|
|
enum SettingsScreenSecuritySectionMode {
|
|
case none
|
|
case secureBackup
|
|
}
|
|
|
|
struct SettingsScreenViewState: BindableState {
|
|
var deviceID: String?
|
|
var userID: String
|
|
var showLinkNewDeviceButton: Bool
|
|
var accountProfileURL: URL?
|
|
var showAccountDeactivation: Bool
|
|
var userAvatarURL: URL?
|
|
var userDisplayName: String?
|
|
var showDeveloperOptions: Bool
|
|
|
|
var securitySectionMode = SettingsScreenSecuritySectionMode.none
|
|
var showSecuritySectionBadge = false
|
|
|
|
var showBlockedUsers = false
|
|
let showAnalyticsSettings: Bool
|
|
|
|
let isBugReportServiceEnabled: Bool
|
|
|
|
let navigationBarVisibility: Visibility
|
|
|
|
var bindings = SettingsScreenViewStateBindings()
|
|
}
|
|
|
|
struct SettingsScreenViewStateBindings {
|
|
var isPresentingAccountDeactivationConfirmation = false
|
|
}
|
|
|
|
enum SettingsScreenViewAction {
|
|
case close
|
|
case userDetails
|
|
case analytics
|
|
case appLock
|
|
case reportBug
|
|
case about
|
|
case blockedUsers
|
|
case secureBackup
|
|
case linkNewDevice
|
|
case manageAccount(url: URL)
|
|
case notifications
|
|
case enableDeveloperOptions
|
|
case developerOptions
|
|
case advancedSettings
|
|
case labs
|
|
case logout
|
|
case deactivateAccount
|
|
}
|