34 lines
892 B
Swift
34 lines
892 B
Swift
//
|
|
// Copyright 2021-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/// RoomNotificationSettingsViewController view state
|
|
struct RoomNotificationSettingsViewState: RoomNotificationSettingsViewStateType {
|
|
let roomEncrypted: Bool
|
|
var saving: Bool
|
|
var notificationState: RoomNotificationState
|
|
var avatarData: AvatarProtocol?
|
|
var displayName: String?
|
|
}
|
|
|
|
extension RoomNotificationSettingsViewState {
|
|
var notificationOptions: [RoomNotificationState] {
|
|
if roomEncrypted {
|
|
return [.all, .mute]
|
|
} else {
|
|
return RoomNotificationState.allCases
|
|
}
|
|
}
|
|
}
|
|
|
|
extension RoomNotificationSettingsViewState {
|
|
var roomEncryptedString: String {
|
|
roomEncrypted ? VectorL10n.roomNotifsSettingsEncryptedRoomNotice : ""
|
|
}
|
|
}
|