mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-13 10:11:20 +00:00
* feat(ios): improve gateway connection error ux * fix(ios): address gateway problem review feedback * feat(ios): improve gateway connection error ux (#62650) (thanks @ngutman)
35 lines
1.1 KiB
Swift
35 lines
1.1 KiB
Swift
import Foundation
|
|
import OpenClawKit
|
|
|
|
enum GatewayStatusBuilder {
|
|
@MainActor
|
|
static func build(appModel: NodeAppModel) -> StatusPill.GatewayState {
|
|
self.build(
|
|
gatewayServerName: appModel.gatewayServerName,
|
|
lastGatewayProblem: appModel.lastGatewayProblem,
|
|
gatewayStatusText: appModel.gatewayStatusText)
|
|
}
|
|
|
|
static func build(
|
|
gatewayServerName: String?,
|
|
lastGatewayProblem: GatewayConnectionProblem?,
|
|
gatewayStatusText: String) -> StatusPill.GatewayState
|
|
{
|
|
if gatewayServerName != nil { return .connected }
|
|
if let lastGatewayProblem, lastGatewayProblem.pauseReconnect { return .error }
|
|
|
|
let text = gatewayStatusText.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
if text.localizedCaseInsensitiveContains("connecting") ||
|
|
text.localizedCaseInsensitiveContains("reconnecting")
|
|
{
|
|
return .connecting
|
|
}
|
|
|
|
if text.localizedCaseInsensitiveContains("error") {
|
|
return .error
|
|
}
|
|
|
|
return .disconnected
|
|
}
|
|
}
|