mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
3.1 KiB
Swift
69 lines
3.1 KiB
Swift
import SignalUtilitiesKit
|
|
|
|
final class ShareLogsModal : Modal {
|
|
|
|
// MARK: Lifecycle
|
|
init() {
|
|
super.init(nibName: nil, bundle: nil)
|
|
}
|
|
|
|
override init(nibName: String?, bundle: Bundle?) {
|
|
preconditionFailure("Use init(url:) instead.")
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
preconditionFailure("Use init(url:) instead.")
|
|
}
|
|
|
|
override func populateContentView() {
|
|
// Title
|
|
let titleLabel = UILabel()
|
|
titleLabel.textColor = Colors.text
|
|
titleLabel.font = .boldSystemFont(ofSize: Values.largeFontSize)
|
|
titleLabel.text = NSLocalizedString("modal_share_logs_title", comment: "")
|
|
titleLabel.textAlignment = .center
|
|
// Message
|
|
let messageLabel = UILabel()
|
|
messageLabel.textColor = Colors.text.withAlphaComponent(Values.mediumOpacity)
|
|
messageLabel.font = .systemFont(ofSize: Values.smallFontSize)
|
|
messageLabel.text = NSLocalizedString("modal_share_logs_explanation", comment: "")
|
|
messageLabel.numberOfLines = 0
|
|
messageLabel.lineBreakMode = .byWordWrapping
|
|
messageLabel.textAlignment = .center
|
|
// Open button
|
|
let shareButton = UIButton()
|
|
shareButton.set(.height, to: Values.mediumButtonHeight)
|
|
shareButton.layer.cornerRadius = Modal.buttonCornerRadius
|
|
shareButton.backgroundColor = Colors.buttonBackground
|
|
shareButton.titleLabel!.font = .systemFont(ofSize: Values.smallFontSize)
|
|
shareButton.setTitleColor(Colors.text, for: UIControl.State.normal)
|
|
shareButton.setTitle(NSLocalizedString("share", comment: ""), for: UIControl.State.normal)
|
|
shareButton.addTarget(self, action: #selector(shareLogs), for: UIControl.Event.touchUpInside)
|
|
// Button stack view
|
|
let buttonStackView = UIStackView(arrangedSubviews: [ cancelButton, shareButton ])
|
|
buttonStackView.axis = .horizontal
|
|
buttonStackView.spacing = Values.mediumSpacing
|
|
buttonStackView.distribution = .fillEqually
|
|
// Main stack view
|
|
let mainStackView = UIStackView(arrangedSubviews: [ titleLabel, messageLabel, buttonStackView ])
|
|
mainStackView.axis = .vertical
|
|
mainStackView.spacing = Values.largeSpacing
|
|
contentView.addSubview(mainStackView)
|
|
mainStackView.pin(.leading, to: .leading, of: contentView, withInset: Values.largeSpacing)
|
|
mainStackView.pin(.top, to: .top, of: contentView, withInset: Values.largeSpacing)
|
|
contentView.pin(.trailing, to: .trailing, of: mainStackView, withInset: Values.largeSpacing)
|
|
contentView.pin(.bottom, to: .bottom, of: mainStackView, withInset: Values.largeSpacing)
|
|
}
|
|
|
|
// MARK: Interaction
|
|
@objc private func shareLogs() {
|
|
let logFilePaths = AppEnvironment.shared.fileLogger.logFileManager.sortedLogFilePaths
|
|
if let latestLogFilePath = logFilePaths.last {
|
|
let latestLogFileURL = URL(fileURLWithPath: latestLogFilePath)
|
|
self.dismiss(animated: true, completion: {
|
|
AttachmentSharing.showShareUI(for: latestLogFileURL)
|
|
})
|
|
}
|
|
}
|
|
}
|