* 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
54 lines
1.4 KiB
Swift
54 lines
1.4 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 Foundation
|
|
|
|
enum UserProfileScreenViewModelAction {
|
|
case openDirectChat(roomID: String)
|
|
case startCall(roomProxy: JoinedRoomProxyProtocol, isVoiceCall: Bool)
|
|
case dismiss
|
|
}
|
|
|
|
struct UserProfileScreenViewState: BindableState {
|
|
let userID: String
|
|
let isOwnUser: Bool
|
|
let isPresentedModally: Bool
|
|
|
|
var userProfile: UserProfileProxy?
|
|
var isVerified: Bool?
|
|
var permalink: URL?
|
|
var dmRoomID: String?
|
|
|
|
var bindings: UserProfileScreenViewStateBindings
|
|
|
|
var showVerifiedBadge: Bool {
|
|
isVerified == true // We purposely show the badge on your own account for consistency with Web.
|
|
}
|
|
}
|
|
|
|
struct UserProfileScreenViewStateBindings {
|
|
var alertInfo: AlertInfo<UserProfileScreenAlertType>?
|
|
var inviteConfirmationUser: UserProfileProxy?
|
|
|
|
/// A media item that will be previewed with QuickLook.
|
|
var mediaPreviewItem: MediaPreviewItem?
|
|
}
|
|
|
|
enum UserProfileScreenViewAction {
|
|
case displayAvatar(URL)
|
|
case openDirectChat
|
|
case createDirectChat
|
|
case startCall(roomID: String, isVoiceCall: Bool)
|
|
case dismiss
|
|
}
|
|
|
|
enum UserProfileScreenAlertType: Hashable {
|
|
case failedOpeningDirectChat
|
|
case unknown
|
|
}
|