119 lines
4.3 KiB
Swift
119 lines
4.3 KiB
Swift
//
|
|
// Copyright 2022-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import Compound
|
|
import SwiftUI
|
|
|
|
struct UserProfileScreen: View {
|
|
@ObservedObject var context: UserProfileScreenViewModel.Context
|
|
|
|
var body: some View {
|
|
Form {
|
|
headerSection
|
|
}
|
|
.compoundList()
|
|
.navigationTitle(L10n.screenRoomMemberDetailsTitle)
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
.toolbar { toolbar }
|
|
.alert(item: $context.alertInfo)
|
|
.track(screen: .User)
|
|
.interactiveQuickLook(item: $context.mediaPreviewItem, allowEditing: false)
|
|
}
|
|
|
|
// MARK: - Private
|
|
|
|
@ViewBuilder
|
|
private var otherUserFooter: some View {
|
|
HStack(spacing: 8) {
|
|
if context.viewState.userProfile != nil, !context.viewState.isOwnUser {
|
|
Button {
|
|
context.send(viewAction: .openDirectChat)
|
|
} label: {
|
|
CompoundIcon(\.chat)
|
|
}
|
|
.buttonStyle(FormActionButtonStyle(title: L10n.commonMessage))
|
|
.accessibilityIdentifier(A11yIdentifiers.roomMemberDetailsScreen.directChat)
|
|
}
|
|
|
|
if let roomID = context.viewState.dmRoomID {
|
|
Button {
|
|
context.send(viewAction: .startCall(roomID: roomID))
|
|
} label: {
|
|
CompoundIcon(\.videoCall)
|
|
}
|
|
.buttonStyle(FormActionButtonStyle(title: L10n.actionCall))
|
|
}
|
|
|
|
if let permalink = context.viewState.permalink {
|
|
ShareLink(item: permalink) {
|
|
CompoundIcon(\.shareIos)
|
|
}
|
|
.buttonStyle(FormActionButtonStyle(title: L10n.actionShare))
|
|
}
|
|
}
|
|
.padding(.top, 32)
|
|
}
|
|
|
|
@ViewBuilder
|
|
private var headerSection: some View {
|
|
if let userProfile = context.viewState.userProfile {
|
|
AvatarHeaderView(user: userProfile,
|
|
avatarSize: .user(on: .memberDetails),
|
|
mediaProvider: context.mediaProvider) {
|
|
context.send(viewAction: .displayAvatar)
|
|
} footer: {
|
|
otherUserFooter
|
|
}
|
|
} else {
|
|
AvatarHeaderView(user: UserProfileProxy(userID: context.viewState.userID),
|
|
avatarSize: .user(on: .memberDetails),
|
|
mediaProvider: context.mediaProvider,
|
|
footer: { })
|
|
}
|
|
}
|
|
|
|
@ToolbarContentBuilder
|
|
private var toolbar: some ToolbarContent {
|
|
if context.viewState.isPresentedModally {
|
|
ToolbarItem(placement: .confirmationAction) {
|
|
Button(L10n.actionDone) {
|
|
context.send(viewAction: .dismiss)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: - Previews
|
|
|
|
struct UserProfileScreen_Previews: PreviewProvider, TestablePreview {
|
|
static let otherUserViewModel = makeViewModel(userID: RoomMemberProxyMock.mockDan.userID)
|
|
static let accountOwnerViewModel = makeViewModel(userID: RoomMemberProxyMock.mockMe.userID)
|
|
|
|
static var previews: some View {
|
|
UserProfileScreen(context: otherUserViewModel.context)
|
|
.previewDisplayName("Other User")
|
|
.snapshotPreferences(delay: 0.25)
|
|
UserProfileScreen(context: accountOwnerViewModel.context)
|
|
.previewDisplayName("Account Owner")
|
|
.snapshotPreferences(delay: 0.25)
|
|
}
|
|
|
|
static func makeViewModel(userID: String) -> UserProfileScreenViewModel {
|
|
let clientProxyMock = ClientProxyMock(.init())
|
|
if userID != RoomMemberProxyMock.mockMe.userID {
|
|
clientProxyMock.directRoomForUserIDReturnValue = .success("roomID")
|
|
}
|
|
return UserProfileScreenViewModel(userID: userID,
|
|
isPresentedModally: false,
|
|
clientProxy: clientProxyMock,
|
|
mediaProvider: MockMediaProvider(),
|
|
userIndicatorController: ServiceLocator.shared.userIndicatorController,
|
|
analytics: ServiceLocator.shared.analytics)
|
|
}
|
|
}
|