Aligns the iOS app with the Clawnet refactor by implementing proper role separation for gateway connections. Uses separate operator and node sessions to match the gateway's authorization requirements. Changes: - New GatewayOperatorSession: Wraps GatewayChannelActor for operator-role RPC requests (chat.*, health, sessions.list) without invoke handling - Dual-connection architecture: Operator session for requests, node session for node.event calls (e.g., chat.subscribe) - Separate websocket sessions: Each connection gets its own URLSession to prevent response cross-talk - Updated chat transport: IOSGatewayChatTransport uses operator session for requests, node session for subscriptions ClawdbotKit (shared): - Deadlock fix in GatewayChannel.swift: Moved connection finalization (listen(), connected=true, isConnecting=false, waiter resumption) to occur before calling pushHandler. This fixes a latent bug where requests made from onConnected callbacks would deadlock. Does not affect macOS (its callback doesn't make requests). - Package.swift: Fixed argument order for Swift 6.2 compatibility iOS chat is now working. This is the base PR to unlock further work on the iOS app.
45 lines
1.3 KiB
Swift
45 lines
1.3 KiB
Swift
import MoltbotChatUI
|
|
import MoltbotKit
|
|
import SwiftUI
|
|
|
|
struct ChatSheet: View {
|
|
@Environment(\.dismiss) private var dismiss
|
|
@State private var viewModel: MoltbotChatViewModel
|
|
private let userAccent: Color?
|
|
|
|
init(
|
|
gateway: GatewayOperatorSession,
|
|
nodeSession: GatewayNodeSession,
|
|
sessionKey: String,
|
|
userAccent: Color? = nil
|
|
) {
|
|
let transport = IOSGatewayChatTransport(gateway: gateway, nodeSession: nodeSession)
|
|
self._viewModel = State(
|
|
initialValue: MoltbotChatViewModel(
|
|
sessionKey: sessionKey,
|
|
transport: transport))
|
|
self.userAccent = userAccent
|
|
}
|
|
|
|
var body: some View {
|
|
NavigationStack {
|
|
MoltbotChatView(
|
|
viewModel: self.viewModel,
|
|
showsSessionSwitcher: true,
|
|
userAccent: self.userAccent)
|
|
.navigationTitle("Chat")
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
.toolbar {
|
|
ToolbarItem(placement: .topBarTrailing) {
|
|
Button {
|
|
self.dismiss()
|
|
} label: {
|
|
Image(systemName: "xmark")
|
|
}
|
|
.accessibilityLabel("Close")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|