mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00

* 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>
65 lines
2.2 KiB
Swift
65 lines
2.2 KiB
Swift
//
|
|
// Copyright 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 Combine
|
|
import Foundation
|
|
import MatrixRustSDK
|
|
|
|
@MainActor
|
|
struct KnockedRoomProxyMockConfiguration {
|
|
var id = UUID().uuidString
|
|
var name: String?
|
|
var avatarURL: URL?
|
|
var members: [RoomMemberProxyMock] = .allMembers
|
|
}
|
|
|
|
extension KnockedRoomProxyMock {
|
|
@MainActor
|
|
convenience init(_ configuration: KnockedRoomProxyMockConfiguration) {
|
|
self.init()
|
|
id = configuration.id
|
|
info = RoomInfoProxy(roomInfo: .init(configuration))
|
|
}
|
|
}
|
|
|
|
extension RoomInfo {
|
|
@MainActor init(_ configuration: KnockedRoomProxyMockConfiguration) {
|
|
self.init(id: configuration.id,
|
|
creator: nil,
|
|
displayName: configuration.name,
|
|
rawName: nil,
|
|
topic: nil,
|
|
avatarUrl: configuration.avatarURL?.absoluteString,
|
|
isDirect: false,
|
|
isPublic: false,
|
|
isSpace: false,
|
|
isTombstoned: false,
|
|
isFavourite: false,
|
|
canonicalAlias: nil,
|
|
alternativeAliases: [],
|
|
membership: .knocked,
|
|
inviter: nil,
|
|
heroes: [],
|
|
activeMembersCount: UInt64(configuration.members.filter { $0.membership == .join || $0.membership == .invite }.count),
|
|
invitedMembersCount: UInt64(configuration.members.filter { $0.membership == .invite }.count),
|
|
joinedMembersCount: UInt64(configuration.members.filter { $0.membership == .join }.count),
|
|
userPowerLevels: [:],
|
|
highlightCount: 0,
|
|
notificationCount: 0,
|
|
cachedUserDefinedNotificationMode: nil,
|
|
hasRoomCall: false,
|
|
activeRoomCallParticipants: [],
|
|
isMarkedUnread: false,
|
|
numUnreadMessages: 0,
|
|
numUnreadNotifications: 0,
|
|
numUnreadMentions: 0,
|
|
pinnedEventIds: [],
|
|
joinRule: .knock,
|
|
historyVisibility: .shared)
|
|
}
|
|
}
|