* feat: Start voice call from DM * rename voiceCall:bool to isVoiceCall * review: Fix a typo * review: use one displayCall(bool) instead of 2 actions * review: Add a new specific preview for DM calls * combine startCall and startVoiceCall in single enum with isVoiceCall * review: add isVoiceCall to presentCallScreen action * review: Use proper a11y for voice vs video * add voice/video options to UserProfile Screen * fixup: move config params to the roomInfo object * review: Revert changes on preview as the toolbar cannot be snapshot'd * review: Extract call controls in specific file * oups: Add voice call option in room details screen * Update room details screenshots * Update user profile screenshots * Update room member details screenshots * fixup: remove dead code
68 lines
2.3 KiB
Swift
68 lines
2.3 KiB
Swift
//
|
|
// Copyright 2025 Element Creations Ltd.
|
|
// Copyright 2022-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 Combine
|
|
import SwiftUI
|
|
|
|
struct UserProfileScreenCoordinatorParameters {
|
|
let userID: String
|
|
let isPresentedModally: Bool
|
|
let userSession: UserSessionProtocol
|
|
let userIndicatorController: UserIndicatorControllerProtocol
|
|
let analytics: AnalyticsService
|
|
}
|
|
|
|
enum UserProfileScreenCoordinatorAction {
|
|
case openDirectChat(roomID: String)
|
|
case startCall(roomProxy: JoinedRoomProxyProtocol, isVoiceCall: Bool)
|
|
case dismiss
|
|
}
|
|
|
|
final class UserProfileScreenCoordinator: CoordinatorProtocol {
|
|
private var viewModel: UserProfileScreenViewModelProtocol
|
|
|
|
private var cancellables = Set<AnyCancellable>()
|
|
|
|
private let actionsSubject: PassthroughSubject<UserProfileScreenCoordinatorAction, Never> = .init()
|
|
var actionsPublisher: AnyPublisher<UserProfileScreenCoordinatorAction, Never> {
|
|
actionsSubject.eraseToAnyPublisher()
|
|
}
|
|
|
|
init(parameters: UserProfileScreenCoordinatorParameters) {
|
|
viewModel = UserProfileScreenViewModel(userID: parameters.userID,
|
|
isPresentedModally: parameters.isPresentedModally,
|
|
userSession: parameters.userSession,
|
|
userIndicatorController: parameters.userIndicatorController,
|
|
analytics: parameters.analytics)
|
|
}
|
|
|
|
func start() {
|
|
viewModel.actionsPublisher.sink { [weak self] action in
|
|
guard let self else { return }
|
|
|
|
switch action {
|
|
case .openDirectChat(let roomID):
|
|
actionsSubject.send(.openDirectChat(roomID: roomID))
|
|
case .startCall(let roomProxy, let isVoiceCall):
|
|
actionsSubject.send(.startCall(roomProxy: roomProxy, isVoiceCall: isVoiceCall))
|
|
case .dismiss:
|
|
actionsSubject.send(.dismiss)
|
|
}
|
|
}
|
|
.store(in: &cancellables)
|
|
}
|
|
|
|
func stop() {
|
|
viewModel.stop()
|
|
}
|
|
|
|
func toPresentable() -> AnyView {
|
|
AnyView(UserProfileScreen(context: viewModel.context))
|
|
}
|
|
}
|