@ -49,9 +49,6 @@ final class NewPrivateChatVC : BaseVC, UIPageViewControllerDataSource, UIPageVie
let closeButton = UIBarButtonItem ( image : # imageLiteral ( resourceName : " X " ) , style : . plain , target : self , action : #selector ( close ) )
let closeButton = UIBarButtonItem ( image : # imageLiteral ( resourceName : " X " ) , style : . plain , target : self , action : #selector ( close ) )
closeButton . tintColor = Colors . text
closeButton . tintColor = Colors . text
navigationItem . leftBarButtonItem = closeButton
navigationItem . leftBarButtonItem = closeButton
let doneButton = UIBarButtonItem ( barButtonSystemItem : . done , target : self , action : #selector ( handleDoneButtonTapped ) )
doneButton . tintColor = Colors . text
navigationItem . rightBarButtonItem = doneButton
// S e t u p p a g e V C
// S e t u p p a g e V C
let hasCameraAccess = ( AVCaptureDevice . authorizationStatus ( for : . video ) = = . authorized )
let hasCameraAccess = ( AVCaptureDevice . authorizationStatus ( for : . video ) = = . authorized )
pages = [ enterPublicKeyVC , ( hasCameraAccess ? scanQRCodeWrapperVC : scanQRCodePlaceholderVC ) ]
pages = [ enterPublicKeyVC , ( hasCameraAccess ? scanQRCodeWrapperVC : scanQRCodePlaceholderVC ) ]
@ -122,10 +119,6 @@ final class NewPrivateChatVC : BaseVC, UIPageViewControllerDataSource, UIPageVie
dismiss ( animated : true , completion : nil )
dismiss ( animated : true , completion : nil )
}
}
@objc private func handleDoneButtonTapped ( ) {
enterPublicKeyVC . startNewPrivateChatIfPossible ( )
}
func controller ( _ controller : OWSQRCodeScanningViewController , didDetectQRCodeWith string : String ) {
func controller ( _ controller : OWSQRCodeScanningViewController , didDetectQRCodeWith string : String ) {
let hexEncodedPublicKey = string
let hexEncodedPublicKey = string
startNewPrivateChatIfPossible ( with : hexEncodedPublicKey )
startNewPrivateChatIfPossible ( with : hexEncodedPublicKey )
@ -146,6 +139,8 @@ final class NewPrivateChatVC : BaseVC, UIPageViewControllerDataSource, UIPageVie
private final class EnterPublicKeyVC : UIViewController {
private final class EnterPublicKeyVC : UIViewController {
weak var newPrivateChatVC : NewPrivateChatVC !
weak var newPrivateChatVC : NewPrivateChatVC !
private var isKeyboardShowing = false
private var bottomConstraint : NSLayoutConstraint !
// MARK: C o m p o n e n t s
// MARK: C o m p o n e n t s
private let publicKeyTextView = TextView ( placeholder : NSLocalizedString ( " vc_enter_public_key_text_field_hint " , comment : " " ) )
private let publicKeyTextView = TextView ( placeholder : NSLocalizedString ( " vc_enter_public_key_text_field_hint " , comment : " " ) )
@ -157,11 +152,36 @@ private final class EnterPublicKeyVC : UIViewController {
return result
return result
} ( )
} ( )
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
result . text = getUserHexEncodedPublicKey ( )
return result
} ( )
private lazy var spacer1 = UIView . spacer ( withHeight : Values . largeSpacing )
private lazy var spacer2 = UIView . spacer ( withHeight : Values . largeSpacing )
private lazy var spacer3 = UIView . spacer ( withHeight : Values . largeSpacing )
private lazy var separator = Separator ( title : NSLocalizedString ( " your_session_id " , comment : " " ) )
private lazy var buttonContainer : UIStackView = {
let result = UIStackView ( )
result . axis = . horizontal
result . spacing = Values . mediumSpacing
result . distribution = . fillEqually
return result
} ( )
// MARK: L i f e c y c l e
// MARK: L i f e c y c l e
override func viewDidLoad ( ) {
override func viewDidLoad ( ) {
// R e m o v e b a c k g r o u n d c o l o r
// R e m o v e b a c k g r o u n d c o l o r
view . backgroundColor = . clear
view . backgroundColor = . clear
// S e t u p e x p l a n a t i o n l a b e l
// E x p l a n a t i o n l a b e l
let explanationLabel = UILabel ( )
let explanationLabel = UILabel ( )
explanationLabel . textColor = Colors . text . withAlphaComponent ( Values . unimportantElementOpacity )
explanationLabel . textColor = Colors . text . withAlphaComponent ( Values . unimportantElementOpacity )
explanationLabel . font = . systemFont ( ofSize : Values . verySmallFontSize )
explanationLabel . font = . systemFont ( ofSize : Values . verySmallFontSize )
@ -169,25 +189,13 @@ private final class EnterPublicKeyVC : UIViewController {
explanationLabel . numberOfLines = 0
explanationLabel . numberOfLines = 0
explanationLabel . textAlignment = . center
explanationLabel . textAlignment = . center
explanationLabel . lineBreakMode = . byWordWrapping
explanationLabel . lineBreakMode = . byWordWrapping
// S e t u p s e p a r a t o r
// S h a r e b u t t o n
let separator = Separator ( title : NSLocalizedString ( " your_session_id " , comment : " " ) )
// S e t u p u s e r p u b l i c k e y l a b e l
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 = getUserHexEncodedPublicKey ( )
// S e t u p s h a r e b u t t o n
let shareButton = Button ( style : . unimportant , size : . medium )
let shareButton = Button ( style : . unimportant , size : . medium )
shareButton . setTitle ( NSLocalizedString ( " share " , comment : " " ) , for : UIControl . State . normal )
shareButton . setTitle ( NSLocalizedString ( " share " , comment : " " ) , for : UIControl . State . normal )
shareButton . addTarget ( self , action : #selector ( sharePublicKey ) , for : UIControl . Event . touchUpInside )
shareButton . addTarget ( self , action : #selector ( sharePublicKey ) , for : UIControl . Event . touchUpInside )
// S e t u p b u t t o n c o n t a i n e r
// B u t t o n c o n t a i n e r
let buttonContainer = UIStackView ( arrangedSubviews : [ copyButton , shareButton ] )
buttonContainer . addArrangedSubview ( copyButton )
buttonContainer . axis = . horizontal
buttonContainer . addArrangedSubview ( shareButton )
buttonContainer . spacing = Values . mediumSpacing
buttonContainer . distribution = . fillEqually
// N e x t b u t t o n
// N e x t b u t t o n
let nextButton = Button ( style : . prominentOutline , size : . large )
let nextButton = Button ( style : . prominentOutline , size : . large )
nextButton . setTitle ( NSLocalizedString ( " next " , comment : " " ) , for : UIControl . State . normal )
nextButton . setTitle ( NSLocalizedString ( " next " , comment : " " ) , for : UIControl . State . normal )
@ -198,19 +206,30 @@ private final class EnterPublicKeyVC : UIViewController {
nextButton . pin ( . top , to : . top , of : nextButtonContainer )
nextButton . pin ( . top , to : . top , of : nextButtonContainer )
nextButtonContainer . pin ( . trailing , to : . trailing , of : nextButton , withInset : 80 )
nextButtonContainer . pin ( . trailing , to : . trailing , of : nextButton , withInset : 80 )
nextButtonContainer . pin ( . bottom , to : . bottom , of : nextButton )
nextButtonContainer . pin ( . bottom , to : . bottom , of : nextButton )
// S e t u p s t a c k v i e w
// M a i n s t a c k v i e w
let stackView = UIStackView ( arrangedSubviews : [ publicKeyTextView , UIView . spacer ( withHeight : Values . smallSpacing ) , explanationLabel , UIView . spacer ( withHeight : Values . largeSpacing ) , separator , UIView . spacer ( withHeight : Values . largeSpacing ) , userPublicKeyLabel , UIView . spacer ( withHeight : Values . largeSpacing ) , buttonContainer , UIView . vStretchingSpacer ( ) , nextButtonContainer ] )
let mainStackView = UIStackView ( arrangedSubviews : [ publicKeyTextView , UIView . spacer ( withHeight : Values . smallSpacing ) , explanationLabel , spacer1 , separator , spacer2 , userPublicKeyLabel , spacer3 , buttonContainer , UIView . vStretchingSpacer ( ) , nextButtonContainer ] )
stackView . axis = . vertical
mainStackView . axis = . vertical
stackView . alignment = . fill
mainStackView . alignment = . fill
stackView . layoutMargins = UIEdgeInsets ( top : Values . largeSpacing , left : Values . largeSpacing , bottom : Values . largeSpacing , right : Values . largeSpacing )
mainStackView . layoutMargins = UIEdgeInsets ( top : Values . largeSpacing , left : Values . largeSpacing , bottom : Values . largeSpacing , right : Values . largeSpacing )
stackView . isLayoutMarginsRelativeArrangement = true
mainStackView . isLayoutMarginsRelativeArrangement = true
view . addSubview ( stackView )
view . addSubview ( mainStackView )
stackView . pin ( to : view )
mainStackView . pin ( . leading , to : . leading , of : view )
// S e t u p w i d t h c o n s t r a i n t
mainStackView . pin ( . top , to : . top , of : view )
view . pin ( . trailing , to : . trailing , of : mainStackView )
bottomConstraint = view . pin ( . bottom , to : . bottom , of : mainStackView )
// W i d t h c o n s t r a i n t
view . set ( . width , to : UIScreen . main . bounds . width )
view . set ( . width , to : UIScreen . main . bounds . width )
// D i s m i s s k e y b o a r d o n t a p
// D i s m i s s k e y b o a r d o n t a p
let tapGestureRecognizer = UITapGestureRecognizer ( target : self , action : #selector ( dismissKeyboard ) )
let tapGestureRecognizer = UITapGestureRecognizer ( target : self , action : #selector ( dismissKeyboard ) )
view . addGestureRecognizer ( tapGestureRecognizer )
view . addGestureRecognizer ( tapGestureRecognizer )
// L i s t e n t o k e y b o a r d n o t i f i c a t i o n s
let notificationCenter = NotificationCenter . default
notificationCenter . addObserver ( self , selector : #selector ( handleKeyboardWillChangeFrameNotification ( _ : ) ) , name : UIResponder . keyboardWillChangeFrameNotification , object : nil )
notificationCenter . addObserver ( self , selector : #selector ( handleKeyboardWillHideNotification ( _ : ) ) , name : UIResponder . keyboardWillHideNotification , object : nil )
}
deinit {
NotificationCenter . default . removeObserver ( self )
}
}
// MARK: G e n e r a l
// MARK: G e n e r a l
@ -229,6 +248,34 @@ private final class EnterPublicKeyVC : UIViewController {
} , completion : nil )
} , completion : nil )
}
}
// MARK: U p d a t i n g
@objc private func handleKeyboardWillChangeFrameNotification ( _ notification : Notification ) {
guard ! isKeyboardShowing else { return }
isKeyboardShowing = true
guard let newHeight = ( notification . userInfo ? [ UIResponder . keyboardFrameEndUserInfoKey ] as ? NSValue ) ? . cgRectValue . size . height else { return }
bottomConstraint . constant = newHeight
UIView . animate ( withDuration : 0.25 ) {
[ self . spacer1 , self . separator , self . spacer2 , self . userPublicKeyLabel , self . spacer3 , self . buttonContainer ] . forEach {
$0 . alpha = 0
$0 . isHidden = true
}
self . view . layoutIfNeeded ( )
}
}
@objc private func handleKeyboardWillHideNotification ( _ notification : Notification ) {
guard isKeyboardShowing else { return }
isKeyboardShowing = false
bottomConstraint . constant = 0
UIView . animate ( withDuration : 0.25 ) {
[ self . spacer1 , self . separator , self . spacer2 , self . userPublicKeyLabel , self . spacer3 , self . buttonContainer ] . forEach {
$0 . alpha = 1
$0 . isHidden = false
}
self . view . layoutIfNeeded ( )
}
}
// MARK: I n t e r a c t i o n
// MARK: I n t e r a c t i o n
@objc private func copyPublicKey ( ) {
@objc private func copyPublicKey ( ) {
UIPasteboard . general . string = getUserHexEncodedPublicKey ( )
UIPasteboard . general . string = getUserHexEncodedPublicKey ( )