mirror of https://github.com/oxen-io/session-ios
Split new conversation screen into tabs
parent
8429b9d680
commit
dbd71ab9a2
@ -1,172 +0,0 @@
|
|||||||
|
|
||||||
@objc(LKNewConversationVC)
|
|
||||||
final class NewConversationVC : OWSViewController, OWSQRScannerDelegate {
|
|
||||||
|
|
||||||
private lazy var userHexEncodedPublicKey: String = {
|
|
||||||
let userDefaults = UserDefaults.standard
|
|
||||||
if let masterHexEncodedPublicKey = userDefaults.string(forKey: "masterDeviceHexEncodedPublicKey") {
|
|
||||||
return masterHexEncodedPublicKey
|
|
||||||
} else {
|
|
||||||
return OWSIdentityManager.shared().identityKeyPair()!.hexEncodedPublicKey
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
// MARK: Components
|
|
||||||
private lazy var publicKeyTextField = TextField(placeholder: NSLocalizedString("Enter public key of recipient", comment: ""))
|
|
||||||
|
|
||||||
private lazy var userPublicKeyLabel: UILabel = {
|
|
||||||
let result = UILabel()
|
|
||||||
result.textColor = Colors.text
|
|
||||||
result.font = Fonts.spaceMono(ofSize: Values.mediumFontSize)
|
|
||||||
result.numberOfLines = 0
|
|
||||||
result.textAlignment = .center
|
|
||||||
result.lineBreakMode = .byCharWrapping
|
|
||||||
return result
|
|
||||||
}()
|
|
||||||
|
|
||||||
private lazy var copyButton: Button = {
|
|
||||||
let result = Button(style: .unimportant)
|
|
||||||
result.setTitle(NSLocalizedString("Copy", comment: ""), for: UIControl.State.normal)
|
|
||||||
result.addTarget(self, action: #selector(copyPublicKey), for: UIControl.Event.touchUpInside)
|
|
||||||
return result
|
|
||||||
}()
|
|
||||||
|
|
||||||
// MARK: Lifecycle
|
|
||||||
override func viewDidLoad() {
|
|
||||||
// Set gradient background
|
|
||||||
view.backgroundColor = .clear
|
|
||||||
let gradient = Gradients.defaultLokiBackground
|
|
||||||
view.setGradient(gradient)
|
|
||||||
// Set navigation bar background color
|
|
||||||
if let navigationBar = navigationController?.navigationBar {
|
|
||||||
navigationBar.setBackgroundImage(UIImage(), for: UIBarMetrics.default)
|
|
||||||
navigationBar.shadowImage = UIImage()
|
|
||||||
navigationBar.isTranslucent = false
|
|
||||||
navigationBar.barTintColor = Colors.navigationBarBackground
|
|
||||||
}
|
|
||||||
// Set up navigation bar buttons
|
|
||||||
let closeButton = UIBarButtonItem(image: #imageLiteral(resourceName: "X"), style: .plain, target: self, action: #selector(close))
|
|
||||||
closeButton.tintColor = Colors.text
|
|
||||||
navigationItem.leftBarButtonItem = closeButton
|
|
||||||
// Customize title
|
|
||||||
let titleLabel = UILabel()
|
|
||||||
titleLabel.text = NSLocalizedString("New Conversation", comment: "")
|
|
||||||
titleLabel.textColor = Colors.text
|
|
||||||
titleLabel.font = UIFont.boldSystemFont(ofSize: Values.veryLargeFontSize)
|
|
||||||
navigationItem.titleView = titleLabel
|
|
||||||
// Set up explanation label
|
|
||||||
let explanationLabel = UILabel()
|
|
||||||
explanationLabel.textColor = Colors.text.withAlphaComponent(Values.unimportantElementOpacity)
|
|
||||||
explanationLabel.font = .systemFont(ofSize: Values.smallFontSize)
|
|
||||||
explanationLabel.text = NSLocalizedString("Users can share their public key by going into their account settings and tapping \"Share Public Key\", or by sharing their QR code.", comment: "")
|
|
||||||
explanationLabel.numberOfLines = 0
|
|
||||||
explanationLabel.textAlignment = .center
|
|
||||||
explanationLabel.lineBreakMode = .byWordWrapping
|
|
||||||
// Set up separator
|
|
||||||
let separator = Separator(title: NSLocalizedString("Your Public Key", comment: ""))
|
|
||||||
// Set up user public key label
|
|
||||||
userPublicKeyLabel.text = userHexEncodedPublicKey
|
|
||||||
// Set up share button
|
|
||||||
let shareButton = Button(style: .unimportant)
|
|
||||||
shareButton.setTitle(NSLocalizedString("Share", comment: ""), for: UIControl.State.normal)
|
|
||||||
shareButton.addTarget(self, action: #selector(sharePublicKey), for: UIControl.Event.touchUpInside)
|
|
||||||
// Set up button container
|
|
||||||
let buttonContainer = UIStackView(arrangedSubviews: [ copyButton, shareButton ])
|
|
||||||
buttonContainer.axis = .horizontal
|
|
||||||
buttonContainer.spacing = Values.mediumSpacing
|
|
||||||
buttonContainer.distribution = .fillEqually
|
|
||||||
// Next button
|
|
||||||
let nextButton = Button(style: .prominent)
|
|
||||||
nextButton.setTitle(NSLocalizedString("Next", comment: ""), for: UIControl.State.normal)
|
|
||||||
nextButton.addTarget(self, action: #selector(handleNextButtonTapped), for: UIControl.Event.touchUpInside)
|
|
||||||
let nextButtonContainer = UIView()
|
|
||||||
nextButtonContainer.addSubview(nextButton)
|
|
||||||
nextButton.pin(.leading, to: .leading, of: nextButtonContainer, withInset: 80)
|
|
||||||
nextButton.pin(.top, to: .top, of: nextButtonContainer)
|
|
||||||
nextButtonContainer.pin(.trailing, to: .trailing, of: nextButton, withInset: 80)
|
|
||||||
nextButtonContainer.pin(.bottom, to: .bottom, of: nextButton)
|
|
||||||
// Stack view
|
|
||||||
let stackView = UIStackView(arrangedSubviews: [ publicKeyTextField, UIView.spacer(withHeight: Values.smallSpacing), explanationLabel, UIView.spacer(withHeight: Values.veryLargeSpacing), separator, UIView.spacer(withHeight: Values.veryLargeSpacing), userPublicKeyLabel, UIView.spacer(withHeight: Values.veryLargeSpacing), buttonContainer, UIView.spacer(withHeight: Values.veryLargeSpacing), nextButtonContainer, UIView.vStretchingSpacer() ])
|
|
||||||
stackView.axis = .vertical
|
|
||||||
stackView.alignment = .fill
|
|
||||||
stackView.layoutMargins = UIEdgeInsets(top: Values.mediumSpacing, left: Values.largeSpacing, bottom: Values.mediumSpacing, right: Values.largeSpacing)
|
|
||||||
stackView.isLayoutMarginsRelativeArrangement = true
|
|
||||||
view.addSubview(stackView)
|
|
||||||
stackView.pin(to: view)
|
|
||||||
// Dismiss keyboard on tap
|
|
||||||
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(dismissKeyboard))
|
|
||||||
view.addGestureRecognizer(tapGestureRecognizer)
|
|
||||||
}
|
|
||||||
|
|
||||||
override func viewDidAppear(_ animated: Bool) {
|
|
||||||
super.viewDidAppear(animated)
|
|
||||||
publicKeyTextField.becomeFirstResponder()
|
|
||||||
}
|
|
||||||
|
|
||||||
// MARK: General
|
|
||||||
@objc private func dismissKeyboard() {
|
|
||||||
publicKeyTextField.resignFirstResponder()
|
|
||||||
}
|
|
||||||
|
|
||||||
@objc private func enableCopyButton() {
|
|
||||||
copyButton.isUserInteractionEnabled = true
|
|
||||||
UIView.transition(with: copyButton, duration: 0.25, options: .transitionCrossDissolve, animations: {
|
|
||||||
self.copyButton.setTitle(NSLocalizedString("Copy", comment: ""), for: UIControl.State.normal)
|
|
||||||
}, completion: nil)
|
|
||||||
}
|
|
||||||
|
|
||||||
// MARK: Interaction
|
|
||||||
@objc private func close() {
|
|
||||||
dismiss(animated: true, completion: nil)
|
|
||||||
}
|
|
||||||
|
|
||||||
@objc private func copyPublicKey() {
|
|
||||||
UIPasteboard.general.string = userHexEncodedPublicKey
|
|
||||||
copyButton.isUserInteractionEnabled = false
|
|
||||||
UIView.transition(with: copyButton, duration: 0.25, options: .transitionCrossDissolve, animations: {
|
|
||||||
self.copyButton.setTitle(NSLocalizedString("Copied", comment: ""), for: UIControl.State.normal)
|
|
||||||
}, completion: nil)
|
|
||||||
Timer.scheduledTimer(timeInterval: 4, target: self, selector: #selector(enableCopyButton), userInfo: nil, repeats: false)
|
|
||||||
}
|
|
||||||
|
|
||||||
@objc private func sharePublicKey() {
|
|
||||||
let shareVC = UIActivityViewController(activityItems: [ userHexEncodedPublicKey ], applicationActivities: nil)
|
|
||||||
navigationController?.present(shareVC, animated: true, completion: nil)
|
|
||||||
}
|
|
||||||
|
|
||||||
// @objc private func scanQRCode() {
|
|
||||||
// ows_ask(forCameraPermissions: { [weak self] hasCameraAccess in
|
|
||||||
// if hasCameraAccess {
|
|
||||||
// let message = NSLocalizedString("Scan the QR code of the person you'd like to securely message. They can find their QR code by going into Loki Messenger's in-app settings and clicking \"Show QR Code\".", comment: "")
|
|
||||||
// let scanQRCodeWrapperVC = ScanQRCodeWrapperVC(message: message)
|
|
||||||
// scanQRCodeWrapperVC.delegate = self
|
|
||||||
// self?.navigationController!.pushViewController(scanQRCodeWrapperVC, animated: true)
|
|
||||||
// } else {
|
|
||||||
// // Do nothing
|
|
||||||
// }
|
|
||||||
// })
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// func controller(_ controller: OWSQRCodeScanningViewController, didDetectQRCodeWith string: String) {
|
|
||||||
// Analytics.shared.track("QR Code Scanned")
|
|
||||||
// let hexEncodedPublicKey = string
|
|
||||||
// startNewConversationIfPossible(with: hexEncodedPublicKey)
|
|
||||||
// }
|
|
||||||
|
|
||||||
@objc private func handleNextButtonTapped() {
|
|
||||||
let hexEncodedPublicKey = publicKeyTextField.text?.trimmingCharacters(in: .whitespaces) ?? ""
|
|
||||||
startNewConversationIfPossible(with: hexEncodedPublicKey)
|
|
||||||
}
|
|
||||||
|
|
||||||
private func startNewConversationIfPossible(with hexEncodedPublicKey: String) {
|
|
||||||
if !ECKeyPair.isValidHexEncodedPublicKey(candidate: hexEncodedPublicKey) {
|
|
||||||
let alert = UIAlertController(title: NSLocalizedString("Invalid Public Key", comment: ""), message: NSLocalizedString("Please check the public key you entered and try again.", comment: ""), preferredStyle: .alert)
|
|
||||||
alert.addAction(UIAlertAction(title: NSLocalizedString("OK", comment: ""), style: .default, handler: nil))
|
|
||||||
presentAlert(alert)
|
|
||||||
} else {
|
|
||||||
let thread = TSContactThread.getOrCreateThread(contactId: hexEncodedPublicKey)
|
|
||||||
presentingViewController!.dismiss(animated: true, completion: nil)
|
|
||||||
SignalApp.shared().presentConversation(for: thread, action: .compose, animated: false)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,306 @@
|
|||||||
|
|
||||||
|
final class NewPrivateChatVC : UIViewController, UIPageViewControllerDataSource, UIPageViewControllerDelegate, OWSQRScannerDelegate {
|
||||||
|
private let pageVC = UIPageViewController(transitionStyle: .scroll, navigationOrientation: .horizontal, options: nil)
|
||||||
|
private var pages: [UIViewController] = []
|
||||||
|
private var targetVCIndex: Int?
|
||||||
|
|
||||||
|
// MARK: Components
|
||||||
|
private lazy var tabBar: TabBar = {
|
||||||
|
let tabs = [
|
||||||
|
TabBar.Tab(title: "Enter Public Key") { [weak self] in
|
||||||
|
guard let self = self else { return }
|
||||||
|
self.pageVC.setViewControllers([ self.pages[0] ], direction: .forward, animated: false, completion: nil)
|
||||||
|
},
|
||||||
|
TabBar.Tab(title: "Scan QR Code") { [weak self] in
|
||||||
|
guard let self = self else { return }
|
||||||
|
self.pageVC.setViewControllers([ self.pages[1] ], direction: .forward, animated: false, completion: nil)
|
||||||
|
}
|
||||||
|
]
|
||||||
|
return TabBar(tabs: tabs)
|
||||||
|
}()
|
||||||
|
|
||||||
|
private lazy var enterPublicKeyVC: EnterPublicKeyVC = {
|
||||||
|
let result = EnterPublicKeyVC()
|
||||||
|
result.newPrivateChatVC = self
|
||||||
|
return result
|
||||||
|
}()
|
||||||
|
|
||||||
|
private lazy var scanQRCodePlaceholderVC: ScanQRCodePlaceholderVC = {
|
||||||
|
let result = ScanQRCodePlaceholderVC()
|
||||||
|
result.newPrivateChatVC = self
|
||||||
|
return result
|
||||||
|
}()
|
||||||
|
|
||||||
|
private lazy var scanQRCodeWrapperVC: ScanQRCodeWrapperVC = {
|
||||||
|
let message = NSLocalizedString("Scan the QR code of the person you'd like to securely message. They can find their QR code by going into Loki Messenger's in-app settings and tapping \"Show QR Code\".", comment: "")
|
||||||
|
let result = ScanQRCodeWrapperVC(message: message)
|
||||||
|
result.delegate = self
|
||||||
|
return result
|
||||||
|
}()
|
||||||
|
|
||||||
|
// MARK: Lifecycle
|
||||||
|
override func viewDidLoad() {
|
||||||
|
// Set gradient background
|
||||||
|
view.backgroundColor = .clear
|
||||||
|
let gradient = Gradients.defaultLokiBackground
|
||||||
|
view.setGradient(gradient)
|
||||||
|
// Set navigation bar background color
|
||||||
|
let navigationBar = navigationController!.navigationBar
|
||||||
|
navigationBar.setBackgroundImage(UIImage(), for: UIBarMetrics.default)
|
||||||
|
navigationBar.shadowImage = UIImage()
|
||||||
|
navigationBar.isTranslucent = false
|
||||||
|
navigationBar.barTintColor = Colors.navigationBarBackground
|
||||||
|
// Set up navigation bar buttons
|
||||||
|
let closeButton = UIBarButtonItem(image: #imageLiteral(resourceName: "X"), style: .plain, target: self, action: #selector(close))
|
||||||
|
closeButton.tintColor = Colors.text
|
||||||
|
navigationItem.leftBarButtonItem = closeButton
|
||||||
|
// Customize title
|
||||||
|
let titleLabel = UILabel()
|
||||||
|
titleLabel.text = NSLocalizedString("New Conversation", comment: "")
|
||||||
|
titleLabel.textColor = Colors.text
|
||||||
|
titleLabel.font = UIFont.boldSystemFont(ofSize: Values.veryLargeFontSize)
|
||||||
|
navigationItem.titleView = titleLabel
|
||||||
|
// Set up page VC
|
||||||
|
let hasCameraAccess = (AVCaptureDevice.authorizationStatus(for: .video) == .authorized)
|
||||||
|
pages = [ enterPublicKeyVC, (hasCameraAccess ? scanQRCodeWrapperVC : scanQRCodePlaceholderVC) ]
|
||||||
|
pageVC.dataSource = self
|
||||||
|
pageVC.delegate = self
|
||||||
|
pageVC.setViewControllers([ enterPublicKeyVC ], direction: .forward, animated: false, completion: nil)
|
||||||
|
// Set up tab bar
|
||||||
|
view.addSubview(tabBar)
|
||||||
|
tabBar.pin(.leading, to: .leading, of: view)
|
||||||
|
tabBar.pin(.top, to: .top, of: view, withInset: navigationBar.height())
|
||||||
|
view.pin(.trailing, to: .trailing, of: tabBar)
|
||||||
|
// Set up page VC constraints
|
||||||
|
let pageVCView = pageVC.view!
|
||||||
|
view.addSubview(pageVCView)
|
||||||
|
pageVCView.pin(.leading, to: .leading, of: view)
|
||||||
|
pageVCView.pin(.top, to: .bottom, of: tabBar)
|
||||||
|
view.pin(.trailing, to: .trailing, of: pageVCView)
|
||||||
|
view.pin(.bottom, to: .bottom, of: pageVCView)
|
||||||
|
let screen = UIScreen.main.bounds
|
||||||
|
pageVCView.set(.width, to: screen.width)
|
||||||
|
let height = navigationController!.view.bounds.height - navigationBar.height() - Values.tabBarHeight
|
||||||
|
pageVCView.set(.height, to: height)
|
||||||
|
enterPublicKeyVC.constrainHeight(to: height)
|
||||||
|
scanQRCodePlaceholderVC.constrainHeight(to: height)
|
||||||
|
}
|
||||||
|
|
||||||
|
// MARK: General
|
||||||
|
func pageViewController(_ pageViewController: UIPageViewController, viewControllerBefore viewController: UIViewController) -> UIViewController? {
|
||||||
|
guard let index = pages.firstIndex(of: viewController), index != 0 else { return nil }
|
||||||
|
return pages[index - 1]
|
||||||
|
}
|
||||||
|
|
||||||
|
func pageViewController(_ pageViewController: UIPageViewController, viewControllerAfter viewController: UIViewController) -> UIViewController? {
|
||||||
|
guard let index = pages.firstIndex(of: viewController), index != (pages.count - 1) else { return nil }
|
||||||
|
return pages[index + 1]
|
||||||
|
}
|
||||||
|
|
||||||
|
fileprivate func handleCameraAccessGranted() {
|
||||||
|
pages[1] = scanQRCodeWrapperVC
|
||||||
|
pageVC.setViewControllers([ scanQRCodeWrapperVC ], direction: .forward, animated: false, completion: nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
// MARK: Updating
|
||||||
|
func pageViewController(_ pageViewController: UIPageViewController, willTransitionTo pendingViewControllers: [UIViewController]) {
|
||||||
|
guard let targetVC = pendingViewControllers.first, let index = pages.firstIndex(of: targetVC) else { return }
|
||||||
|
targetVCIndex = index
|
||||||
|
}
|
||||||
|
|
||||||
|
func pageViewController(_ pageViewController: UIPageViewController, didFinishAnimating isFinished: Bool, previousViewControllers: [UIViewController], transitionCompleted isCompleted: Bool) {
|
||||||
|
guard isCompleted, let index = targetVCIndex else { return }
|
||||||
|
tabBar.selectTab(at: index)
|
||||||
|
}
|
||||||
|
|
||||||
|
// MARK: Interaction
|
||||||
|
@objc private func close() {
|
||||||
|
dismiss(animated: true, completion: nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func controller(_ controller: OWSQRCodeScanningViewController, didDetectQRCodeWith string: String) {
|
||||||
|
let hexEncodedPublicKey = string
|
||||||
|
startNewPrivateChatIfPossible(with: hexEncodedPublicKey)
|
||||||
|
}
|
||||||
|
|
||||||
|
fileprivate func startNewPrivateChatIfPossible(with hexEncodedPublicKey: String) {
|
||||||
|
if !ECKeyPair.isValidHexEncodedPublicKey(candidate: hexEncodedPublicKey) {
|
||||||
|
let alert = UIAlertController(title: NSLocalizedString("Invalid Public Key", comment: ""), message: NSLocalizedString("Please check the public key you entered and try again.", comment: ""), preferredStyle: .alert)
|
||||||
|
alert.addAction(UIAlertAction(title: NSLocalizedString("OK", comment: ""), style: .default, handler: nil))
|
||||||
|
presentAlert(alert)
|
||||||
|
} else {
|
||||||
|
let thread = TSContactThread.getOrCreateThread(contactId: hexEncodedPublicKey)
|
||||||
|
presentingViewController?.dismiss(animated: true, completion: nil)
|
||||||
|
SignalApp.shared().presentConversation(for: thread, action: .compose, animated: false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private final class EnterPublicKeyVC : UIViewController {
|
||||||
|
var newPrivateChatVC: NewPrivateChatVC?
|
||||||
|
|
||||||
|
private lazy var userHexEncodedPublicKey: String = {
|
||||||
|
let userDefaults = UserDefaults.standard
|
||||||
|
if let masterHexEncodedPublicKey = userDefaults.string(forKey: "masterDeviceHexEncodedPublicKey") {
|
||||||
|
return masterHexEncodedPublicKey
|
||||||
|
} else {
|
||||||
|
return OWSIdentityManager.shared().identityKeyPair()!.hexEncodedPublicKey
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
// MARK: Components
|
||||||
|
private lazy var publicKeyTextField = TextField(placeholder: NSLocalizedString("Enter public key of recipient", comment: ""))
|
||||||
|
|
||||||
|
private lazy var copyButton: Button = {
|
||||||
|
let result = Button(style: .unimportant)
|
||||||
|
result.setTitle(NSLocalizedString("Copy", comment: ""), for: UIControl.State.normal)
|
||||||
|
result.addTarget(self, action: #selector(copyPublicKey), for: UIControl.Event.touchUpInside)
|
||||||
|
return result
|
||||||
|
}()
|
||||||
|
|
||||||
|
// MARK: Lifecycle
|
||||||
|
override func viewDidLoad() {
|
||||||
|
// Remove background color
|
||||||
|
view.backgroundColor = .clear
|
||||||
|
// Set up explanation label
|
||||||
|
let explanationLabel = UILabel()
|
||||||
|
explanationLabel.textColor = Colors.text.withAlphaComponent(Values.unimportantElementOpacity)
|
||||||
|
explanationLabel.font = .systemFont(ofSize: Values.smallFontSize)
|
||||||
|
explanationLabel.text = NSLocalizedString("Users can share their public key by going into their account settings and tapping \"Share Public Key\", or by sharing their QR code.", comment: "")
|
||||||
|
explanationLabel.numberOfLines = 0
|
||||||
|
explanationLabel.textAlignment = .center
|
||||||
|
explanationLabel.lineBreakMode = .byWordWrapping
|
||||||
|
// Set up separator
|
||||||
|
let separator = Separator(title: NSLocalizedString("Your Public Key", comment: ""))
|
||||||
|
// Set up user public key label
|
||||||
|
let userPublicKeyLabel = UILabel()
|
||||||
|
userPublicKeyLabel.textColor = Colors.text
|
||||||
|
userPublicKeyLabel.font = Fonts.spaceMono(ofSize: Values.mediumFontSize)
|
||||||
|
userPublicKeyLabel.numberOfLines = 0
|
||||||
|
userPublicKeyLabel.textAlignment = .center
|
||||||
|
userPublicKeyLabel.lineBreakMode = .byCharWrapping
|
||||||
|
userPublicKeyLabel.text = userHexEncodedPublicKey
|
||||||
|
// Set up share button
|
||||||
|
let shareButton = Button(style: .unimportant)
|
||||||
|
shareButton.setTitle(NSLocalizedString("Share", comment: ""), for: UIControl.State.normal)
|
||||||
|
shareButton.addTarget(self, action: #selector(sharePublicKey), for: UIControl.Event.touchUpInside)
|
||||||
|
// Set up button container
|
||||||
|
let buttonContainer = UIStackView(arrangedSubviews: [ copyButton, shareButton ])
|
||||||
|
buttonContainer.axis = .horizontal
|
||||||
|
buttonContainer.spacing = Values.mediumSpacing
|
||||||
|
buttonContainer.distribution = .fillEqually
|
||||||
|
// Next button
|
||||||
|
let nextButton = Button(style: .prominent)
|
||||||
|
nextButton.setTitle(NSLocalizedString("Next", comment: ""), for: UIControl.State.normal)
|
||||||
|
nextButton.addTarget(self, action: #selector(startNewPrivateChatIfPossible), for: UIControl.Event.touchUpInside)
|
||||||
|
let nextButtonContainer = UIView()
|
||||||
|
nextButtonContainer.addSubview(nextButton)
|
||||||
|
nextButton.pin(.leading, to: .leading, of: nextButtonContainer, withInset: 80)
|
||||||
|
nextButton.pin(.top, to: .top, of: nextButtonContainer)
|
||||||
|
nextButtonContainer.pin(.trailing, to: .trailing, of: nextButton, withInset: 80)
|
||||||
|
nextButtonContainer.pin(.bottom, to: .bottom, of: nextButton)
|
||||||
|
// Stack view
|
||||||
|
let stackView = UIStackView(arrangedSubviews: [ publicKeyTextField, UIView.spacer(withHeight: Values.smallSpacing), explanationLabel, UIView.spacer(withHeight: Values.veryLargeSpacing), separator, UIView.spacer(withHeight: Values.veryLargeSpacing), userPublicKeyLabel, UIView.spacer(withHeight: Values.veryLargeSpacing), buttonContainer, UIView.spacer(withHeight: Values.veryLargeSpacing), nextButtonContainer, UIView.vStretchingSpacer() ])
|
||||||
|
stackView.axis = .vertical
|
||||||
|
stackView.alignment = .fill
|
||||||
|
stackView.layoutMargins = UIEdgeInsets(top: Values.mediumSpacing, left: Values.largeSpacing, bottom: Values.mediumSpacing, right: Values.largeSpacing)
|
||||||
|
stackView.isLayoutMarginsRelativeArrangement = true
|
||||||
|
view.addSubview(stackView)
|
||||||
|
stackView.pin(to: view)
|
||||||
|
// Set up width constraint
|
||||||
|
view.set(.width, to: UIScreen.main.bounds.width)
|
||||||
|
// Dismiss keyboard on tap
|
||||||
|
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(dismissKeyboard))
|
||||||
|
view.addGestureRecognizer(tapGestureRecognizer)
|
||||||
|
}
|
||||||
|
|
||||||
|
override func viewDidAppear(_ animated: Bool) {
|
||||||
|
super.viewDidAppear(animated)
|
||||||
|
publicKeyTextField.becomeFirstResponder()
|
||||||
|
}
|
||||||
|
|
||||||
|
// MARK: General
|
||||||
|
func constrainHeight(to height: CGFloat) {
|
||||||
|
view.set(.height, to: height)
|
||||||
|
}
|
||||||
|
|
||||||
|
@objc private func dismissKeyboard() {
|
||||||
|
publicKeyTextField.resignFirstResponder()
|
||||||
|
}
|
||||||
|
|
||||||
|
@objc private func enableCopyButton() {
|
||||||
|
copyButton.isUserInteractionEnabled = true
|
||||||
|
UIView.transition(with: copyButton, duration: 0.25, options: .transitionCrossDissolve, animations: {
|
||||||
|
self.copyButton.setTitle(NSLocalizedString("Copy", comment: ""), for: UIControl.State.normal)
|
||||||
|
}, completion: nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
// MARK: Interaction
|
||||||
|
@objc private func copyPublicKey() {
|
||||||
|
UIPasteboard.general.string = userHexEncodedPublicKey
|
||||||
|
copyButton.isUserInteractionEnabled = false
|
||||||
|
UIView.transition(with: copyButton, duration: 0.25, options: .transitionCrossDissolve, animations: {
|
||||||
|
self.copyButton.setTitle(NSLocalizedString("Copied", comment: ""), for: UIControl.State.normal)
|
||||||
|
}, completion: nil)
|
||||||
|
Timer.scheduledTimer(timeInterval: 4, target: self, selector: #selector(enableCopyButton), userInfo: nil, repeats: false)
|
||||||
|
}
|
||||||
|
|
||||||
|
@objc private func sharePublicKey() {
|
||||||
|
let shareVC = UIActivityViewController(activityItems: [ userHexEncodedPublicKey ], applicationActivities: nil)
|
||||||
|
newPrivateChatVC!.navigationController!.present(shareVC, animated: true, completion: nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
@objc private func startNewPrivateChatIfPossible() {
|
||||||
|
let hexEncodedPublicKey = publicKeyTextField.text?.trimmingCharacters(in: .whitespaces) ?? ""
|
||||||
|
newPrivateChatVC!.startNewPrivateChatIfPossible(with: hexEncodedPublicKey)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private final class ScanQRCodePlaceholderVC : UIViewController {
|
||||||
|
var newPrivateChatVC: NewPrivateChatVC?
|
||||||
|
|
||||||
|
override func viewDidLoad() {
|
||||||
|
// Remove background color
|
||||||
|
view.backgroundColor = .clear
|
||||||
|
// Set up explanation label
|
||||||
|
let explanationLabel = UILabel()
|
||||||
|
explanationLabel.textColor = Colors.text
|
||||||
|
explanationLabel.font = .systemFont(ofSize: Values.smallFontSize)
|
||||||
|
explanationLabel.text = NSLocalizedString("Loki Messenger needs camera access to scan QR codes", comment: "")
|
||||||
|
explanationLabel.numberOfLines = 0
|
||||||
|
explanationLabel.textAlignment = .center
|
||||||
|
explanationLabel.lineBreakMode = .byWordWrapping
|
||||||
|
// Set up call to action button
|
||||||
|
let callToActionButton = UIButton()
|
||||||
|
callToActionButton.titleLabel!.font = .boldSystemFont(ofSize: Values.mediumFontSize)
|
||||||
|
callToActionButton.setTitleColor(Colors.accent, for: UIControl.State.normal)
|
||||||
|
callToActionButton.setTitle(NSLocalizedString("Enable Camera Access", comment: ""), for: UIControl.State.normal)
|
||||||
|
callToActionButton.addTarget(self, action: #selector(requestCameraAccess), for: UIControl.Event.touchUpInside)
|
||||||
|
// Set up stack view
|
||||||
|
let stackView = UIStackView(arrangedSubviews: [ explanationLabel, callToActionButton ])
|
||||||
|
stackView.axis = .vertical
|
||||||
|
stackView.spacing = Values.mediumSpacing
|
||||||
|
stackView.alignment = .center
|
||||||
|
// Set up constraints
|
||||||
|
view.set(.width, to: UIScreen.main.bounds.width)
|
||||||
|
view.addSubview(stackView)
|
||||||
|
stackView.pin(.leading, to: .leading, of: view, withInset: Values.massiveSpacing)
|
||||||
|
view.pin(.trailing, to: .trailing, of: stackView, withInset: Values.massiveSpacing)
|
||||||
|
let verticalCenteringConstraint = stackView.center(.vertical, in: view)
|
||||||
|
verticalCenteringConstraint.constant = -16 // Makes things appear centered visually
|
||||||
|
}
|
||||||
|
|
||||||
|
func constrainHeight(to height: CGFloat) {
|
||||||
|
view.set(.height, to: height)
|
||||||
|
}
|
||||||
|
|
||||||
|
@objc private func requestCameraAccess() {
|
||||||
|
ows_ask(forCameraPermissions: { [weak self] hasCameraAccess in
|
||||||
|
if hasCameraAccess {
|
||||||
|
self?.newPrivateChatVC!.handleCameraAccessGranted()
|
||||||
|
} else {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,102 @@
|
|||||||
|
|
||||||
|
final class TabBar : UIView {
|
||||||
|
private let tabs: [Tab]
|
||||||
|
private var accentLineViewHorizontalCenteringConstraint: NSLayoutConstraint!
|
||||||
|
private var accentLineViewWidthConstraint: NSLayoutConstraint!
|
||||||
|
|
||||||
|
// MARK: Components
|
||||||
|
private lazy var tabLabels: [UILabel] = tabs.map { tab in
|
||||||
|
let result = UILabel()
|
||||||
|
result.font = .boldSystemFont(ofSize: Values.mediumFontSize)
|
||||||
|
result.textColor = Colors.text.withAlphaComponent(Values.unimportantElementOpacity)
|
||||||
|
result.textAlignment = .center
|
||||||
|
result.text = tab.title
|
||||||
|
result.set(.height, to: Values.tabBarHeight - Values.separatorThickness - Values.accentLineThickness)
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
|
||||||
|
private lazy var accentLineView: UIView = {
|
||||||
|
let result = UIView()
|
||||||
|
result.backgroundColor = Colors.accent
|
||||||
|
return result
|
||||||
|
}()
|
||||||
|
|
||||||
|
// MARK: Types
|
||||||
|
struct Tab {
|
||||||
|
let title: String
|
||||||
|
let onTap: () -> Void
|
||||||
|
}
|
||||||
|
|
||||||
|
// MARK: Lifecycle
|
||||||
|
init(tabs: [Tab]) {
|
||||||
|
self.tabs = tabs
|
||||||
|
super.init(frame: CGRect.zero)
|
||||||
|
setUpViewHierarchy()
|
||||||
|
}
|
||||||
|
|
||||||
|
override init(frame: CGRect) {
|
||||||
|
preconditionFailure("Use init(tabs:) instead.")
|
||||||
|
}
|
||||||
|
|
||||||
|
required init?(coder: NSCoder) {
|
||||||
|
preconditionFailure("Use init(tabs:) instead.")
|
||||||
|
}
|
||||||
|
|
||||||
|
private func setUpViewHierarchy() {
|
||||||
|
set(.height, to: Values.tabBarHeight)
|
||||||
|
tabLabels.forEach { tabLabel in
|
||||||
|
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(handleTabLabelTapped(_:)))
|
||||||
|
tabLabel.addGestureRecognizer(tapGestureRecognizer)
|
||||||
|
}
|
||||||
|
let tabLabelStackView = UIStackView(arrangedSubviews: tabLabels)
|
||||||
|
tabLabelStackView.axis = .horizontal
|
||||||
|
tabLabelStackView.distribution = .fillEqually
|
||||||
|
tabLabelStackView.spacing = Values.mediumSpacing
|
||||||
|
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(handleTabLabelTapped(_:)))
|
||||||
|
tabLabelStackView.addGestureRecognizer(tapGestureRecognizer)
|
||||||
|
tabLabelStackView.set(.height, to: Values.tabBarHeight - Values.separatorThickness - Values.accentLineThickness)
|
||||||
|
addSubview(tabLabelStackView)
|
||||||
|
let separator = UIView()
|
||||||
|
separator.backgroundColor = Colors.separator
|
||||||
|
separator.set(.height, to: Values.separatorThickness)
|
||||||
|
addSubview(separator)
|
||||||
|
accentLineView.set(.height, to: Values.accentLineThickness)
|
||||||
|
addSubview(accentLineView)
|
||||||
|
tabLabelStackView.pin(.leading, to: .leading, of: self)
|
||||||
|
tabLabelStackView.pin(.top, to: .top, of: self)
|
||||||
|
pin(.trailing, to: .trailing, of: tabLabelStackView)
|
||||||
|
separator.pin(.leading, to: .leading, of: self)
|
||||||
|
separator.pin(.top, to: .bottom, of: tabLabelStackView)
|
||||||
|
pin(.trailing, to: .trailing, of: separator)
|
||||||
|
accentLineView.translatesAutoresizingMaskIntoConstraints = false
|
||||||
|
selectTab(at: 0, withAnimatedTransition: false)
|
||||||
|
accentLineView.pin(.top, to: .bottom, of: separator)
|
||||||
|
pin(.bottom, to: .bottom, of: accentLineView)
|
||||||
|
}
|
||||||
|
|
||||||
|
// MARK: Updating
|
||||||
|
func selectTab(at index: Int, withAnimatedTransition isAnimated: Bool = true) {
|
||||||
|
let tabLabel = tabLabels[index]
|
||||||
|
accentLineViewHorizontalCenteringConstraint?.isActive = false
|
||||||
|
accentLineViewHorizontalCenteringConstraint = accentLineView.centerXAnchor.constraint(equalTo: tabLabel.centerXAnchor)
|
||||||
|
accentLineViewHorizontalCenteringConstraint.isActive = true
|
||||||
|
accentLineViewWidthConstraint?.isActive = false
|
||||||
|
accentLineViewWidthConstraint = accentLineView.widthAnchor.constraint(equalTo: tabLabel.widthAnchor)
|
||||||
|
accentLineViewWidthConstraint.isActive = true
|
||||||
|
var tabLabelsCopy = tabLabels
|
||||||
|
tabLabelsCopy.remove(at: index)
|
||||||
|
UIView.animate(withDuration: isAnimated ? 0.25 : 0) {
|
||||||
|
tabLabel.textColor = Colors.text
|
||||||
|
tabLabelsCopy.forEach { $0.textColor = Colors.text.withAlphaComponent(Values.unimportantElementOpacity) }
|
||||||
|
self.layoutIfNeeded()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// MARK: Interaction
|
||||||
|
@objc private func handleTabLabelTapped(_ sender: UITapGestureRecognizer) {
|
||||||
|
guard let tabLabel = tabLabels.first(where: { $0.bounds.contains(sender.location(in: $0)) }), let index = tabLabels.firstIndex(of: tabLabel) else { return }
|
||||||
|
selectTab(at: index)
|
||||||
|
let tab = tabs[index]
|
||||||
|
tab.onTap()
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue