This helps give more space to the room header. Specially in the scenario when threads is enabled.
99 lines
4.2 KiB
Swift
99 lines
4.2 KiB
Swift
//
|
|
// Copyright 2026 Element Creations 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 RoomCallControlsToolbar: ToolbarContent {
|
|
let viewState: RoomScreenViewState
|
|
let onCallTap: (_ isVoiceCall: Bool) -> Void
|
|
|
|
var body: some ToolbarContent {
|
|
if viewState.hasOngoingCall {
|
|
ToolbarItem(placement: .primaryAction) {
|
|
JoinCallButton(isVoiceCall: viewState.activeRoomCallIntent == .audio) {
|
|
onCallTap(viewState.activeRoomCallIntent == .audio)
|
|
}
|
|
.accessibilityIdentifier(A11yIdentifiers.roomScreen.joinCall)
|
|
.disabled(!viewState.canJoinCall)
|
|
}
|
|
} else {
|
|
if viewState.isDirectOneToOneRoom {
|
|
ToolbarItem(placement: .primaryAction) {
|
|
Menu {
|
|
Button(action: { onCallTap(true) }) {
|
|
Label("Audio call", systemImage: "phone.fill")
|
|
}
|
|
.accessibilityIdentifier(A11yIdentifiers.roomScreen.startVoiceCall)
|
|
.disabled(!viewState.canJoinCall)
|
|
|
|
Button(action: { onCallTap(false) }) {
|
|
Label("Video call", systemImage: "video.fill")
|
|
}
|
|
.accessibilityIdentifier(A11yIdentifiers.roomScreen.startVideoCall)
|
|
.disabled(!viewState.canJoinCall)
|
|
} label: {
|
|
CompoundIcon(\.voiceCallSolid)
|
|
.frame(width: 28, height: 28)
|
|
.contentShape(Rectangle())
|
|
}
|
|
.menuIndicator(.hidden)
|
|
.buttonStyle(.plain)
|
|
.accessibilityLabel(L10n.a11yStartVoiceCall)
|
|
.accessibilityIdentifier(A11yIdentifiers.roomScreen.startVoiceCall)
|
|
.disabled(!viewState.canJoinCall)
|
|
}
|
|
} else {
|
|
ToolbarItem(placement: .primaryAction) {
|
|
Button { onCallTap(false) } label: {
|
|
CompoundIcon(\.videoCallSolid)
|
|
}
|
|
.accessibilityLabel(L10n.a11yStartVideoCall)
|
|
.accessibilityIdentifier(A11yIdentifiers.roomScreen.startVideoCall)
|
|
.disabled(!viewState.canJoinCall)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: - Previews
|
|
|
|
struct RoomCallControlsToolbar_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
VStack(spacing: 0) {
|
|
ElementNavigationStack {
|
|
Color.clear.toolbar { RoomCallControlsToolbar(viewState: .mock(hasOngoingCall: true)) { _ in } }
|
|
}
|
|
ElementNavigationStack {
|
|
Color.clear.toolbar { RoomCallControlsToolbar(viewState: .mock(hasOngoingCall: false, isDirectOneToOneRoom: true)) { _ in } }
|
|
}
|
|
ElementNavigationStack {
|
|
Color.clear.toolbar { RoomCallControlsToolbar(viewState: .mock(hasOngoingCall: false)) { _ in } }
|
|
}
|
|
ElementNavigationStack {
|
|
Color.clear.toolbar { RoomCallControlsToolbar(viewState: .mock(hasOngoingCall: false, canJoinCall: false)) { _ in } }
|
|
}
|
|
ElementNavigationStack {
|
|
Color.clear.toolbar { RoomCallControlsToolbar(viewState: .mock(hasOngoingCall: true, activeRoomCallIntent: .audio)) { _ in } }
|
|
}
|
|
}
|
|
.previewDisplayName("All states")
|
|
}
|
|
}
|
|
|
|
private extension RoomScreenViewState {
|
|
static func mock(hasOngoingCall: Bool, isDirectOneToOneRoom: Bool = false, canJoinCall: Bool = true, activeRoomCallIntent: CallIntent? = nil) -> RoomScreenViewState {
|
|
RoomScreenViewState(roomAvatar: .room(id: "mock", name: "Mock Room", avatarURL: nil),
|
|
canJoinCall: canJoinCall,
|
|
hasOngoingCall: hasOngoingCall,
|
|
activeRoomCallIntent: activeRoomCallIntent,
|
|
isDirectOneToOneRoom: isDirectOneToOneRoom,
|
|
hasSuccessor: false)
|
|
}
|
|
}
|