@@ -30,6 +30,7 @@ class ConnectionViewViewModel: ObservableObject {
30
30
@Published private( set) var tunnelStatus : TunnelStatus
31
31
@Published var outgoingConnectionInfo : OutgoingConnectionInfo ?
32
32
@Published var showsActivityIndicator = false
33
+ @Published var showsConnectionDetails = false
33
34
34
35
@Published var relayConstraints : RelayConstraints
35
36
let destinationDescriber : DestinationDescribing
@@ -72,24 +73,25 @@ class ConnectionViewViewModel: ObservableObject {
72
73
73
74
func update( tunnelStatus: TunnelStatus ) {
74
75
self . tunnelStatus = tunnelStatus
76
+ self . showsConnectionDetails = shouldShowConnectionDetails ( tunnelStatus)
75
77
76
78
if !tunnelIsConnected {
77
79
outgoingConnectionInfo = nil
78
80
}
79
81
}
80
- }
81
82
82
- extension ConnectionViewViewModel {
83
- var showConnectionDetails : Bool {
83
+ private func shouldShowConnectionDetails( _ tunnelStatus: TunnelStatus ) -> Bool {
84
84
switch tunnelStatus. state {
85
- case . connecting, . reconnecting, . waitingForConnectivity ( . noConnection ) , . negotiatingEphemeralPeer,
85
+ case . connecting, . reconnecting, . negotiatingEphemeralPeer,
86
86
. connected, . pendingReconnect:
87
87
true
88
- case . disconnecting, . disconnected, . waitingForConnectivity( . noNetwork ) , . error:
88
+ case . disconnecting, . disconnected, . waitingForConnectivity, . error:
89
89
false
90
90
}
91
91
}
92
+ }
92
93
94
+ extension ConnectionViewViewModel {
93
95
var textColorForSecureLabel : UIColor {
94
96
switch tunnelStatus. state {
95
97
case . connecting, . reconnecting, . waitingForConnectivity( . noConnection) , . negotiatingEphemeralPeer,
0 commit comments