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

* Hide the unread dot when previewing an invite. * Remove an invited room ID when accepting/rejecting. * Remove the unread badge from knocked room cells. * Update snapshots. * Address PR comments. Refactor KnockRequestType to JoinRequestType.
84 lines
3.1 KiB
Swift
84 lines
3.1 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 InvitedRoomProxyMockConfiguration {
|
|
var id = UUID().uuidString
|
|
var name: String?
|
|
var avatarURL: URL?
|
|
var members: [RoomMemberProxyMock] = .allMembers
|
|
var inviter: RoomMemberProxyMock = .mockAlice
|
|
}
|
|
|
|
extension InvitedRoomProxyMock {
|
|
@MainActor
|
|
convenience init(_ configuration: InvitedRoomProxyMockConfiguration) {
|
|
self.init()
|
|
id = configuration.id
|
|
inviter = configuration.inviter
|
|
info = RoomInfoProxy(roomInfo: .init(configuration))
|
|
|
|
rejectInvitationReturnValue = .success(())
|
|
}
|
|
}
|
|
|
|
extension RoomInfo {
|
|
@MainActor init(_ configuration: InvitedRoomProxyMockConfiguration) {
|
|
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: .init(configuration.inviter),
|
|
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: .invite,
|
|
historyVisibility: .shared)
|
|
}
|
|
}
|
|
|
|
private extension RoomMember {
|
|
init(_ proxy: RoomMemberProxyProtocol) {
|
|
self.init(userId: proxy.userID,
|
|
displayName: proxy.displayName,
|
|
avatarUrl: proxy.avatarURL?.absoluteString,
|
|
membership: proxy.membership,
|
|
isNameAmbiguous: proxy.disambiguatedDisplayName != proxy.displayName,
|
|
powerLevel: Int64(proxy.powerLevel),
|
|
normalizedPowerLevel: Int64(proxy.powerLevel),
|
|
isIgnored: proxy.isIgnored,
|
|
suggestedRoleForPowerLevel: proxy.role,
|
|
membershipChangeReason: proxy.membershipChangeReason)
|
|
}
|
|
}
|