move call connection strings out of Constants file

pull/1061/head
Ryan ZHAO 4 days ago
parent 31b8852c0c
commit 2fb2a42e45

@ -529,7 +529,26 @@ public final class SessionCall: CurrentCallProtocol, WebRTCSessionDelegate {
// MARK: - Connection Steps
// TODO: Remove these when calls are out of beta
extension SessionCall {
// stringlint:ignore_contents
public static let call_connection_steps_sender: [String] = [
"Creating Call 1/6",
"Sending Call Offer 2/6",
"Sending Connection Candidates 3/6",
"Awaiting Recipient Answer... 4/6",
"Handling Connection Candidates 5/6",
"Call Connected 6/6",
]
// stringlint:ignore_contents
public static let call_connection_steps_receiver: [String] = [
"Received Call Offer 1/5",
"Answering Call 2/5",
"Sending Connection Candidates 3/5",
"Handling Connection Candidates 4/5",
"Call Connected 5/5",
]
public protocol ConnectionStep {
var index: Int { get }
var nextStep: ConnectionStep? { get }
@ -601,8 +620,8 @@ extension SessionCall {
DispatchQueue.main.async {
self.updateCallDetailedStatus?(
self.mode == .offer ?
Constants.call_connection_steps_sender[self.currentConnectionStep.index] :
Constants.call_connection_steps_receiver[self.currentConnectionStep.index]
SessionCall.call_connection_steps_sender[self.currentConnectionStep.index] :
SessionCall.call_connection_steps_receiver[self.currentConnectionStep.index]
)
}

@ -8,22 +8,5 @@ public enum Constants {
public static let session_download_url: String = "https://getsession.org/download"
public static let gif: String = "GIF"
public static let oxen_foundation: String = "Oxen Foundation"
// TODO: Remove these when calls are out of beta
public static let call_connection_steps_sender: [String] = [
"Creating Call 1/6",
"Sending Call Offer 2/6",
"Sending Connection Candidates 3/6",
"Awaiting Recipient Answer... 4/6",
"Handling Connection Candidates 5/6",
"Call Connected 6/6",
]
public static let call_connection_steps_receiver: [String] = [
"Received Call Offer 1/5",
"Answering Call 2/5",
"Sending Connection Candidates 3/5",
"Handling Connection Candidates 4/5",
"Call Connected 5/5",
]
}

Loading…
Cancel
Save