|
|
|
@ -315,13 +315,30 @@ final class CallVC: UIViewController, VideoPreviewDelegate {
|
|
|
|
|
result.font = .boldSystemFont(ofSize: Values.veryLargeFontSize)
|
|
|
|
|
result.themeTextColor = .textPrimary
|
|
|
|
|
result.textAlignment = .center
|
|
|
|
|
result.isHidden = call.hasConnected
|
|
|
|
|
|
|
|
|
|
if call.hasStartedConnecting { result.text = "callsConnecting".localized() }
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
private lazy var callDetailedInfoLabel: UILabel = {
|
|
|
|
|
let result: UILabel = UILabel()
|
|
|
|
|
result.font = .boldSystemFont(ofSize: Values.smallFontSize)
|
|
|
|
|
result.themeTextColor = .textPrimary
|
|
|
|
|
result.textAlignment = .center
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
private lazy var callInfoLabelStackView: UIStackView = {
|
|
|
|
|
let result: UIStackView = UIStackView(arrangedSubviews: [callInfoLabel, callDetailedInfoLabel])
|
|
|
|
|
result.axis = .vertical
|
|
|
|
|
result.spacing = Values.mediumSpacing
|
|
|
|
|
result.isHidden = call.hasConnected
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
private lazy var callDurationLabel: UILabel = {
|
|
|
|
|
let result = UILabel()
|
|
|
|
|
result.font = .boldSystemFont(ofSize: Values.veryLargeFontSize)
|
|
|
|
@ -350,11 +367,11 @@ final class CallVC: UIViewController, VideoPreviewDelegate {
|
|
|
|
|
remoteVideoView.alpha = isEnabled ? 1 : 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if self.callInfoLabel.alpha < 0.5 {
|
|
|
|
|
if self.callInfoLabelStackView.alpha < 0.5 {
|
|
|
|
|
UIView.animate(withDuration: 0.25) {
|
|
|
|
|
self.operationPanel.alpha = 1
|
|
|
|
|
self.responsePanel.alpha = 1
|
|
|
|
|
self.callInfoLabel.alpha = 1
|
|
|
|
|
self.callInfoLabelStackView.alpha = 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -387,7 +404,7 @@ final class CallVC: UIViewController, VideoPreviewDelegate {
|
|
|
|
|
self?.durationTimer = Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { _ in
|
|
|
|
|
self?.updateDuration()
|
|
|
|
|
}
|
|
|
|
|
self?.callInfoLabel.isHidden = true
|
|
|
|
|
self?.callInfoLabelStackView.isHidden = true
|
|
|
|
|
self?.callDurationLabel.isHidden = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -402,7 +419,7 @@ final class CallVC: UIViewController, VideoPreviewDelegate {
|
|
|
|
|
|
|
|
|
|
self.call.hasStartedReconnecting = { [weak self] in
|
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
|
self?.callInfoLabel.isHidden = false
|
|
|
|
|
self?.callInfoLabelStackView.isHidden = false
|
|
|
|
|
self?.callDurationLabel.isHidden = true
|
|
|
|
|
self?.callInfoLabel.text = "callsReconnecting".localized()
|
|
|
|
|
}
|
|
|
|
@ -410,10 +427,16 @@ final class CallVC: UIViewController, VideoPreviewDelegate {
|
|
|
|
|
|
|
|
|
|
self.call.hasReconnected = { [weak self] in
|
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
|
self?.callInfoLabel.isHidden = true
|
|
|
|
|
self?.callInfoLabelStackView.isHidden = true
|
|
|
|
|
self?.callDurationLabel.isHidden = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
self.call.updateCallDetailedStatus = { [weak self] status in
|
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
|
self?.callDetailedInfoLabel.text = status
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
required init(coder: NSCoder) { preconditionFailure("Use init(for:) instead.") }
|
|
|
|
@ -510,10 +533,10 @@ final class CallVC: UIViewController, VideoPreviewDelegate {
|
|
|
|
|
callInfoLabelContainer.pin(.top, to: .bottom, of: profilePictureView)
|
|
|
|
|
callInfoLabelContainer.pin(.bottom, to: .bottom, of: profilePictureContainer)
|
|
|
|
|
callInfoLabelContainer.pin([ UIView.HorizontalEdge.left, UIView.HorizontalEdge.right ], to: view)
|
|
|
|
|
callInfoLabelContainer.addSubview(callInfoLabel)
|
|
|
|
|
callInfoLabelContainer.addSubview(callInfoLabelStackView)
|
|
|
|
|
callInfoLabelContainer.addSubview(callDurationLabel)
|
|
|
|
|
callInfoLabel.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
|
callInfoLabel.center(in: callInfoLabelContainer)
|
|
|
|
|
callInfoLabelStackView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
|
callInfoLabelStackView.center(in: callInfoLabelContainer)
|
|
|
|
|
callDurationLabel.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
|
callDurationLabel.center(in: callInfoLabelContainer)
|
|
|
|
|
}
|
|
|
|
@ -587,7 +610,7 @@ final class CallVC: UIViewController, VideoPreviewDelegate {
|
|
|
|
|
|
|
|
|
|
func handleEndCallMessage() {
|
|
|
|
|
SNLog("[Calls] Ending call.")
|
|
|
|
|
self.callInfoLabel.isHidden = false
|
|
|
|
|
self.callInfoLabelStackView.isHidden = false
|
|
|
|
|
self.callDurationLabel.isHidden = true
|
|
|
|
|
self.callInfoLabel.text = "callsEnded".localized()
|
|
|
|
|
|
|
|
|
@ -596,7 +619,7 @@ final class CallVC: UIViewController, VideoPreviewDelegate {
|
|
|
|
|
remoteVideoView.alpha = 0
|
|
|
|
|
self.operationPanel.alpha = 1
|
|
|
|
|
self.responsePanel.alpha = 1
|
|
|
|
|
self.callInfoLabel.alpha = 1
|
|
|
|
|
self.callInfoLabelStackView.alpha = 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Timer.scheduledTimer(withTimeInterval: 2, repeats: false) { [weak self] _ in
|
|
|
|
|