* Update proxies ready for adding rooms to a space. - ClientProxy.recentlyVisitedRooms to take a filter and to return room proxies. - Expose SpaceServiceProxy.addChildToSpace. * Implement the SpaceAddRoomsScreen. * Fix the designs of the selected carousels. Add more snapshot tests for inviting users. * Fix for screen using wrong avatar size.
64 lines
2.0 KiB
Swift
64 lines
2.0 KiB
Swift
//
|
|
// Copyright 2025 Element Creations Ltd.
|
|
// Copyright 2023-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 Compound
|
|
import SwiftUI
|
|
|
|
struct InviteUsersScreenSelectedItem: View {
|
|
let user: UserProfileProxy
|
|
let mediaProvider: MediaProviderProtocol?
|
|
let dismissAction: () -> Void
|
|
|
|
var body: some View {
|
|
VStack(spacing: 10) {
|
|
avatar
|
|
.accessibilityHidden(true)
|
|
|
|
Text(user.displayName ?? user.userID)
|
|
.font(.compound.bodySM)
|
|
.foregroundColor(.compound.textSecondary)
|
|
.lineLimit(1)
|
|
}
|
|
.accessibilityElement(children: .combine)
|
|
.accessibilityAction(named: L10n.actionRemove, dismissAction)
|
|
}
|
|
|
|
// MARK: - Private
|
|
|
|
var avatar: some View {
|
|
LoadableAvatarImage(url: user.avatarURL,
|
|
name: user.displayName,
|
|
contentID: user.userID,
|
|
avatarSize: .user(on: .inviteUsers),
|
|
mediaProvider: mediaProvider)
|
|
.overlayRemoveItemButton(action: dismissAction)
|
|
}
|
|
|
|
var closeButtonLabel: some View {
|
|
CompoundIcon(\.close, size: .custom(12), relativeTo: .compound.bodySM)
|
|
.foregroundStyle(.compound.iconOnSolidPrimary)
|
|
.padding(2)
|
|
.background(.compound.iconPrimary, in: Circle())
|
|
}
|
|
}
|
|
|
|
struct InviteUsersScreenSelectedItem_Previews: PreviewProvider, TestablePreview {
|
|
static let people: [UserProfileProxy] = [.mockAlice, .mockVerbose]
|
|
|
|
static var previews: some View {
|
|
ScrollView(.horizontal) {
|
|
HStack(spacing: 8) {
|
|
ForEach(people, id: \.userID) { user in
|
|
InviteUsersScreenSelectedItem(user: user, mediaProvider: MediaProviderMock(configuration: .init())) { }
|
|
.frame(width: 80)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|