@ -2,47 +2,70 @@
final class KeyPairMigrationSheet : Sheet {
final class KeyPairMigrationSheet : Sheet {
override func populateContentView ( ) {
override func populateContentView ( ) {
// Se t u p i m a g e v i e w
// I m a g e v i e w
let imageView = UIImageView ( image : # imageLiteral ( resourceName : " Sun " ) )
let imageView = UIImageView ( image : # imageLiteral ( resourceName : " Sun " ) )
// Se t u p t i t l e l a b e l
// T i t l e l a b e l
let titleLabel = UILabel ( )
let titleLabel = UILabel ( )
titleLabel . textColor = Colors . text
titleLabel . textColor = Colors . text
titleLabel . font = . boldSystemFont ( ofSize : isIPhone5OrSmaller ? Values . largeFontSize : Values . veryLargeFontSize )
titleLabel . font = . boldSystemFont ( ofSize : isIPhone5OrSmaller ? Values . largeFontSize : Values . veryLargeFontSize )
titleLabel . text = " Session IDs Just Got Better "
titleLabel . text = " Session IDs Just Got Better "
titleLabel . numberOfLines = 0
titleLabel . numberOfLines = 0
titleLabel . lineBreakMode = . byWordWrapping
titleLabel . lineBreakMode = . byWordWrapping
// Se t u p t o p s t a c k v i e w
// T o p s t a c k v i e w
let topStackView = UIStackView ( arrangedSubviews : [ imageView , titleLabel ] )
let topStackView = UIStackView ( arrangedSubviews : [ imageView , titleLabel ] )
topStackView . axis = . vertical
topStackView . axis = . vertical
topStackView . spacing = Values . largeSpacing
topStackView . spacing = Values . largeSpacing
topStackView . alignment = . center
topStackView . alignment = . center
// Se 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
explanationLabel . textColor = Colors . text
explanationLabel . font = . systemFont ( ofSize : Values . smallFontSize )
explanationLabel . font = . systemFont ( ofSize : Values . smallFontSize )
explanationLabel . textAlignment = . center
explanationLabel . textAlignment = . center
explanationLabel . text = " " "
explanationLabel . text = " " "
We upgraded the way Session IDs work . They ' re now even more secure bla bla bla .
We ’ ve upgraded Session IDs to make them even more private and secure . We recommend upgrading to a new Session ID now .
Migrate now to ensure your account is as secure as possible .
You will lose existing contacts and conversations , but you ’ ll gain even more privacy and security . You will need to upgrade your Session ID eventually , but you can choose to delay the upgrade if you need to save contacts or conversations .
" " "
" " "
explanationLabel . numberOfLines = 0
explanationLabel . numberOfLines = 0
explanationLabel . lineBreakMode = . byWordWrapping
explanationLabel . lineBreakMode = . byWordWrapping
// S e t u p O K b u t t o n
// U p g r a d e n o w b u t t o n
let okButton = Button ( style : . prominentOutline , size : . large )
let upgradeNowButton = Button ( style : . prominentOutline , size : . large )
okButton . set ( . width , to : 240 )
upgradeNowButton . set ( . width , to : 240 )
okButton . setTitle ( NSLocalizedString ( " OK " , comment : " " ) , for : UIControl . State . normal )
upgradeNowButton . setTitle ( NSLocalizedString ( " Upgrade Now " , comment : " " ) , for : UIControl . State . normal )
okButton . addTarget ( self , action : #selector ( close ) , for : UIControl . Event . touchUpInside )
upgradeNowButton . addTarget ( self , action : #selector ( upgradeNow ) , for : UIControl . Event . touchUpInside )
// S e t u p m a i n s t a c k v i e w
// U p g r a d e l a t e r b u t t o n
let stackView = UIStackView ( arrangedSubviews : [ topStackView , explanationLabel , okButton ] )
let upgradeLaterButton = Button ( style : . prominentOutline , size : . large )
upgradeLaterButton . set ( . width , to : 240 )
upgradeLaterButton . setTitle ( NSLocalizedString ( " Upgrade Later " , comment : " " ) , for : UIControl . State . normal )
upgradeLaterButton . addTarget ( self , action : #selector ( close ) , for : UIControl . Event . touchUpInside )
// B u t t o n s t a c k v i e w
let buttonStackView = UIStackView ( arrangedSubviews : [ upgradeNowButton , upgradeLaterButton ] )
buttonStackView . axis = . vertical
buttonStackView . spacing = Values . mediumSpacing
buttonStackView . alignment = . center
// M a i n s t a c k v i e w
let stackView = UIStackView ( arrangedSubviews : [ topStackView , explanationLabel , buttonStackView ] )
stackView . axis = . vertical
stackView . axis = . vertical
stackView . spacing = Values . veryLargeSpacing
stackView . spacing = Values . veryLargeSpacing
stackView . alignment = . center
stackView . alignment = . center
// S e t u p c o n s t r a i n t s
// C o n s t r a i n t s
contentView . addSubview ( stackView )
contentView . addSubview ( stackView )
stackView . pin ( . leading , to : . leading , of : contentView , withInset : Values . veryLargeSpacing )
stackView . pin ( . leading , to : . leading , of : contentView , withInset : Values . veryLargeSpacing )
stackView . pin ( . top , to : . top , of : contentView , withInset : Values . largeSpacing )
stackView . pin ( . top , to : . top , of : contentView , withInset : Values . largeSpacing )
contentView . pin ( . trailing , to : . trailing , of : stackView , withInset : Values . veryLargeSpacing )
contentView . pin ( . trailing , to : . trailing , of : stackView , withInset : Values . veryLargeSpacing )
contentView . pin ( . bottom , to : . bottom , of : stackView , withInset : Values . veryLargeSpacing + overshoot )
contentView . pin ( . bottom , to : . bottom , of : stackView , withInset : Values . veryLargeSpacing + overshoot )
}
}
@objc private func upgradeNow ( ) {
guard let presentingVC = presentingViewController else { return }
let message = " You’ re upgrading to a new Session ID. This will give you improved privacy and security, but it will clear ALL app data. Contacts and conversations will be lost. Proceed? "
let alert = UIAlertController ( title : " Upgrade Session ID? " , message : message , preferredStyle : . alert )
alert . addAction ( UIAlertAction ( title : " Yes " , style : . destructive ) { _ in
NotificationCenter . default . post ( name : . dataNukeRequested , object : nil )
} )
alert . addAction ( UIAlertAction ( title : " Cancel " , style : . default , handler : nil ) )
presentingVC . dismiss ( animated : true ) { // D i s m i s s s e l f f i r s t
presentingVC . present ( alert , animated : true , completion : nil )
}
}
}
}