* handling the history visibility flag * better logic to handle visibility * better handling of the visibility options state * added some copies, and the public room directory visibility state * completed the UI added also the preview tests * improved the handling of the directory visibility * added the space users case and improved handling of the access -> vsibility reaction. Also added a simple error handling for the public directory toggle * added the edit room address view but is missing its full implementation * implement the UI for the edit room address screen * implemented error checking when editing the address * updated preview tests and improved code * typo fix * Fix various issues after rebasing. * Fix build errors and broken snapshot tests * Adopt latest room privacy and canonical alias setting APIs * Add support for creating and editing the room's alias. * Add support for saving room privacy setting changes. * Fix room alias screen snapshot tests following recent changes. --------- Co-authored-by: Stefan Ceriu <stefanc@matrix.org>
97 lines
2.8 KiB
Swift
97 lines
2.8 KiB
Swift
//
|
|
// Copyright 2022-2024 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 Foundation
|
|
|
|
enum SecurityAndPrivacyScreenViewModelAction {
|
|
case displayEditAddressScreen
|
|
}
|
|
|
|
struct SecurityAndPrivacyScreenViewState: BindableState {
|
|
let serverName: String
|
|
var currentSettings: SecurityAndPrivacySettings
|
|
var bindings: SecurityAndPrivacyScreenViewStateBindings
|
|
var canonicalAlias: String?
|
|
|
|
private var hasChanges: Bool {
|
|
currentSettings != bindings.desiredSettings
|
|
}
|
|
|
|
var isSaveDisabled: Bool {
|
|
!hasChanges ||
|
|
(currentSettings.isVisibileInRoomDirectory == nil &&
|
|
bindings.desiredSettings.accessType != .inviteOnly &&
|
|
canonicalAlias != nil)
|
|
}
|
|
|
|
var availableVisibilityOptions: [SecurityAndPrivacyHistoryVisibility] {
|
|
var options = [SecurityAndPrivacyHistoryVisibility.sinceSelection]
|
|
if !bindings.desiredSettings.isEncryptionEnabled, bindings.desiredSettings.accessType == .anyone {
|
|
options.append(.anyone)
|
|
} else {
|
|
options.append(.sinceInvite)
|
|
}
|
|
return options
|
|
}
|
|
|
|
init(serverName: String,
|
|
accessType: SecurityAndPrivacyRoomAccessType,
|
|
isEncryptionEnabled: Bool,
|
|
historyVisibility: SecurityAndPrivacyHistoryVisibility) {
|
|
self.serverName = serverName
|
|
let settings = SecurityAndPrivacySettings(accessType: accessType,
|
|
isEncryptionEnabled: isEncryptionEnabled,
|
|
historyVisibility: historyVisibility)
|
|
currentSettings = settings
|
|
bindings = SecurityAndPrivacyScreenViewStateBindings(desiredSettings: settings)
|
|
}
|
|
}
|
|
|
|
struct SecurityAndPrivacyScreenViewStateBindings {
|
|
var desiredSettings: SecurityAndPrivacySettings
|
|
var alertInfo: AlertInfo<SecurityAndPrivacyAlertType>?
|
|
}
|
|
|
|
struct SecurityAndPrivacySettings: Equatable {
|
|
var accessType: SecurityAndPrivacyRoomAccessType
|
|
var isEncryptionEnabled: Bool
|
|
var historyVisibility: SecurityAndPrivacyHistoryVisibility
|
|
var isVisibileInRoomDirectory: Bool?
|
|
}
|
|
|
|
enum SecurityAndPrivacyRoomAccessType {
|
|
case inviteOnly
|
|
case askToJoin
|
|
case anyone
|
|
case spaceUsers
|
|
}
|
|
|
|
enum SecurityAndPrivacyAlertType {
|
|
case enableEncryption
|
|
}
|
|
|
|
enum SecurityAndPrivacyScreenViewAction {
|
|
case save
|
|
case tryUpdatingEncryption(Bool)
|
|
case editAddress
|
|
}
|
|
|
|
enum SecurityAndPrivacyHistoryVisibility {
|
|
case sinceSelection
|
|
case sinceInvite
|
|
case anyone
|
|
|
|
var fallbackOption: Self {
|
|
switch self {
|
|
case .sinceInvite, .sinceSelection:
|
|
return .sinceSelection
|
|
case .anyone:
|
|
return .sinceInvite
|
|
}
|
|
}
|
|
}
|